I have a table which contains latitude and longitude information in Decimal format. I am successfully getting them as GIS POINT type with the following query but phpMyAdmin's GIS Visualization extension act as if this returns an empty data set.

SELECT name, PointFromText( Concat( 'POINT (', geo_lat, ' ', geo_long, ')' ) ) AS coordinates
FROM `users`
LIMIT 0 , 50

If I do AsText(coordinates) I can see that it is a valid point with correct lat/long values. Should I report this as a bug?

没有正确的解决方案

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top