Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个城市地区的 MySQL 数据库。每个区域的属性为:lat、lng、SWLat、SWLng、NELat、NELng。
我在编写查询时需要帮助,告诉我给定位置的区域,包括 Lat & Lng。
在此先感谢,萨尔。
没有足够的信息,但这似乎符合要求:
SELECT * FROM table WHERE myLat >= SWLat AND myLat <= NELat AND myLng >= SWLng AND myLng <= NELng
myLat并且myLng是您尝试查找包含区域的位置的坐标。
myLat
myLng