postgresql/src/interfaces/libpq++/examples/testlibpq3.sql
1996-07-09 06:22:35 +00:00

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);