Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Encontre Long/Lat dentro do polígono com MySQL 5.6


Acho que (Longitude, l.Latitude) estão em locais?

Sql DEMO:
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';

SAÍDA