mirror of
https://github.com/postgres/postgres.git
synced 2025-11-25 12:03:53 +03:00
7 lines
193 B
SQL
7 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);
|
|
|