temp.sql
来自「PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统」· SQL 代码 · 共 102 行
SQL
102 行
---- TEMP-- Test temp relations and indexes---- test temp table/index maskingCREATE TABLE temptest(col int);CREATE INDEX i_temptest ON temptest(col);CREATE TEMP TABLE temptest(tcol int);CREATE INDEX i_temptest ON temptest(tcol);SELECT * FROM temptest;DROP INDEX i_temptest;DROP TABLE temptest;SELECT * FROM temptest;DROP INDEX i_temptest;DROP TABLE temptest;-- test temp table selectsCREATE TABLE temptest(col int);INSERT INTO temptest VALUES (1);CREATE TEMP TABLE temptest(tcol float);INSERT INTO temptest VALUES (2.1);SELECT * FROM temptest;DROP TABLE temptest;SELECT * FROM temptest;DROP TABLE temptest;-- test temp table deletionCREATE TEMP TABLE temptest(col int);\c regressionSELECT * FROM temptest;-- Test ON COMMIT DELETE ROWSCREATE TEMP TABLE temptest(col int) ON COMMIT DELETE ROWS;BEGIN;INSERT INTO temptest VALUES (1);INSERT INTO temptest VALUES (2);SELECT * FROM temptest;COMMIT;SELECT * FROM temptest;DROP TABLE temptest;-- Test ON COMMIT DROPBEGIN;CREATE TEMP TABLE temptest(col int) ON COMMIT DROP;INSERT INTO temptest VALUES (1);INSERT INTO temptest VALUES (2);SELECT * FROM temptest;COMMIT;SELECT * FROM temptest;-- ON COMMIT is only allowed for TEMPCREATE TABLE temptest(col int) ON COMMIT DELETE ROWS;-- Test foreign keysBEGIN;CREATE TEMP TABLE temptest1(col int PRIMARY KEY);CREATE TEMP TABLE temptest2(col int REFERENCES temptest1) ON COMMIT DELETE ROWS;INSERT INTO temptest1 VALUES (1);INSERT INTO temptest2 VALUES (1);COMMIT;SELECT * FROM temptest1;SELECT * FROM temptest2;BEGIN;CREATE TEMP TABLE temptest3(col int PRIMARY KEY) ON COMMIT DELETE ROWS;CREATE TEMP TABLE temptest4(col int REFERENCES temptest3);COMMIT;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?