mirror of
https://github.com/postgres/postgres.git
synced 2026-03-26 20:34:52 -04:00
6 lines
193 B
SQL
6 lines
193 B
SQL
CREATE TABLE test1 (i int4, d float4, p polygon);
|
|
|
|
INSERT INTO test1 values (1, 3.567, '(3.0, 4.0, 1.0, 2.0)'::polygon);
|
|
|
|
INSERT INTO test1 values (2, 89.05, '(4.0, 3.0, 2.0, 1.0)'::polygon);
|
|
|