ST_PolyFromText |
|
Release 9.3 |
NOTE: Spatial type for Oracle only
sde.st_polyfromtext (wkt clob, srid integer)
CREATE TABLE polygon_test (pl1 sde.st_geometry);
INSERT INTO polygon_test VALUES (
sde.st_polyfromtext ('polygon ((10.01 20.03, 10.52 40.11, 30.29 41.56,
31.78 10.74, 10.01 20.03))', 0)
);