sql >> Database >  >> RDS >> Mysql

MySQL Opgeslagen procedurevariabelen van SELECT-instructies

Een paar dingen gecorrigeerd en een alternatieve selectie toegevoegd - verwijder indien van toepassing.

DELIMITER |

CREATE PROCEDURE getNearestCities
(
IN p_cityID INT -- should this be int unsigned ?
)
BEGIN

DECLARE cityLat FLOAT; -- should these be decimals ?
DECLARE cityLng FLOAT;

    -- method 1
    SELECT lat,lng into cityLat, cityLng FROM cities WHERE cities.cityID = p_cityID;

    SELECT 
     b.*, 
     HAVERSINE(cityLat,cityLng, b.lat, b.lng) AS dist 
    FROM 
     cities b 
    ORDER BY 
     dist 
    LIMIT 10;

    -- method 2
    SELECT   
      b.*, 
      HAVERSINE(a.lat, a.lng, b.lat, b.lng) AS dist
    FROM     
      cities AS a
    JOIN cities AS b on a.cityID = p_cityID
    ORDER BY 
      dist
    LIMIT 10;

END |

delimiter ;


  1. JSON_MERGE_PRESERVE() – Voeg meerdere JSON-documenten samen in MySQL

  2. hoe tekenreeksen samenvoegen?

  3. MySQL ALTER TABLE loopt vast

  4. MariaDB FIELD() vs FIND_IN_SET():wat is het verschil?