Mysql
 sql >> Database >  >> RDS >> Mysql

Distanza in metri tra due punti spaziali nella query MySQL

Tieni presente che in MySql l'ordine delle coordinate è:
1. POINT(lng, lat) - nessun SRID
2. ST_GeomFromText('POINT(lat lng)', 4326) - con SRID

select st_distance_sphere(POINT(-73.9949,40.7501), POINT( -73.9961,40.7542)) 

restituirà 466.9696023582369, come previsto, e 466.9696023582369> 300 ovviamente