temp.out

来自「关系型数据库 Postgresql 6.5.2」· OUT 代码 · 共 30 行

OUT
30
字号
QUERY: CREATE TABLE temptest(col int);QUERY: CREATE INDEX i_temptest ON temptest(col);QUERY: CREATE TEMP TABLE temptest(col int);QUERY: CREATE INDEX i_temptest ON temptest(col);QUERY: DROP INDEX i_temptest;QUERY: DROP TABLE temptest;QUERY: DROP INDEX i_temptest;QUERY: DROP TABLE temptest;QUERY: CREATE TABLE temptest(col int);QUERY: INSERT INTO temptest VALUES (1);QUERY: CREATE TEMP TABLE temptest(col int);QUERY: INSERT INTO temptest VALUES (2);QUERY: SELECT * FROM temptest;col---  2(1 row)QUERY: DROP TABLE temptest;QUERY: SELECT * FROM temptest;col---  1(1 row)QUERY: DROP TABLE temptest;QUERY: CREATE TEMP TABLE temptest(col int);QUERY: SELECT * FROM temptest;ERROR:  temptest: Table does not exist.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?