GEOGRAPHY
GEOGRAPHY data type and usages
Description
Sample Source Patterns
GEOGRAPHY output format
Input Code:
CREATE OR REPLACE TABLE test.geographyType
(
COL1 GEOGRAPHY
);
INSERT INTO test.geographyType VALUES
(ST_GEOGFROMTEXT('POINT(-122.35 37.55)')), (ST_GEOGFROMTEXT('LINESTRING(-124.20 42.00, -120.01 41.99)'));
SELECT COL1 FROM test.geographyType;
SELECT * FROM test.geographyType; Output Code:
Insert GEOGRAPHY data
Observations
Related EWI's
Last updated
