postgresql/src/test/regress/sql/select_into.sql
Marc G. Fournier e31cb4be3a More splits and cleanups...
Its starting to actually take shape and look as expected...
1997-04-06 08:29:57 +00:00

15 lines
179 B
SQL

SELECT *
INTO TABLE temp1
FROM temp
WHERE onek.unique1 < 2;
DROP TABLE temp1;
SELECT *
INTO TABLE temp1
FROM temp
WHERE onek2.unique1 < 2;
DROP TABLE temp1;