mirror of
https://github.com/postgres/postgres.git
synced 2026-03-02 21:30:36 -05: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);
|
||
|
|
|