経度緯度値をGEOGRAPHYデータ型として保存した後、個々の緯度経度値を取得するにはどうすればよいですか?
失敗した試行:
SELECT id, geog, ST_X(geog), ST_Y(geog) FROM locations;
エラー:
No function matches the given name and argument types. You might need to add explicit type casts.
1
以下のための地理データ型の使用に有効な機能、EX。また、ST_MaxX()および ST_MaxY() 。
—
ピータークラウス