위도 값을 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
대한 지리 데이터 형식을 사용 유효한 기능, 예. ST_MaxX () 및 ST_MaxY () .
—
Peter Krauss