หลังจากจัดเก็บค่า lon lat เป็นชนิดข้อมูล GEOGRAPHY ฉันจะดึงค่า lat lon แต่ละรายการได้อย่างไร
ความพยายามล้มเหลว:
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