Můžete použít POINT()
uložit do sloupce typu GEOMETRY
nebo POINT
:
POINT(43.005895, -71.013202)
Pokud se sloupec Geometrie jmenuje geom
, můžete použít toto:
INSERT INTO table
( ..., geom, ...)
VALUES
( ..., POINT(43.005895, -71.013202), ...)
Pokud chcete zobrazit uložená data, můžete použít X()
a Y()
funkce:
SELECT X(geom) AS x, Y(geom) AS y
FROM table