PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

PostGIS, è possibile creare un Poligono da alcuni Punti

Puoi raccogliere un array di point , esegui il cast su geometry[] e usa ST_MakeLine .

SELECT ST_MakePolygon(ST_MakeLine( ARRAY[ point(1,2), point(3,4), point(5,6) ]::geometry[] ));