mirror of
https://github.com/postgres/postgres.git
synced 2026-04-26 00:31:07 -04:00
7 lines
193 B
MySQL
7 lines
193 B
MySQL
|
|
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);
|
||
|
|
|