ST_Polygon
This section contains reference documentation for the ST_Polygon function.
Signature
Usage Examples
select ST_Polygon('POLYGON ((2 2, 2 6, 6 6, 6 2, 2 2))') AS value
from meetupRsvp
LIMIT 1value
select ST_Polygon('POLYGON EMPTY') AS value
from meetupRsvp
LIMIT 1value
select ST_Polygon('LINESTRING (30 10, 10 30, 40 40)') AS value
from meetupRsvp
LIMIT 1Was this helpful?

