Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ST_Collect(*geom: Geometry)
ST_Collect(geom: ARRAY[Geometry])
SELECT ST_Collect( ST_GeomFromText('POINT(21.427834 52.042576573)'), ST_GeomFromText('POINT(45.342524 56.342354355)') ) AS geom
+---------------------------------------------------------------+ |geom | +---------------------------------------------------------------+ |MULTIPOINT ((21.427834 52.042576573), (45.342524 56.342354355))| +---------------------------------------------------------------+
SELECT ST_Collect( Array( ST_GeomFromText('POINT(21.427834 52.042576573)'), ST_GeomFromText('POINT(45.342524 56.342354355)') ) ) AS geom
Was this page helpful?