Setelah menyimpan nilai lat lat sebagai tipe data GEOGRAFI, bagaimana cara mengambil nilai lat lat individu?
Upaya gagal:
SELECT id, geog, ST_X(geog), ST_Y(geog) FROM locations;
Kesalahan:
No function matches the given name and argument types. You might need to add explicit type casts.
1
Untuk tipe data geografi menggunakan fungsi yang valid, mis. ST_MaxX () dan ST_MaxY () .
—
Peter Krauss