postgresql/src/test/regress/sql/select_into.sql

15 lines
179 B
MySQL
Raw Normal View History

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;