Mysql
 sql >> Base de données >  >> RDS >> Mysql

Trouver Long/Lat à l'intérieur du polygone avec MySQL 5.6

Je suppose (Longitude, l.Latitude) sont dans des lieux ?

DÉMO Sql :

SELECT l.*,  ST_CONTAINS(p.boundary, POINT(l.Longitude, l.Latitude))
FROM locations l
CROSS JOIN polyThing p;

SELECT l.*
FROM locations l
JOIN polyThing p
  ON ST_CONTAINS(p.boundary, POINT(l.Longitude, l.Latitude))
 AND p.testarea = 'Test Area 1';

SORTIE