temp.out
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. QUERY: CREATE TABLE temptest(col int);
  2. QUERY: CREATE INDEX i_temptest ON temptest(col);
  3. QUERY: CREATE TEMP TABLE temptest(col int);
  4. QUERY: CREATE INDEX i_temptest ON temptest(col);
  5. QUERY: DROP INDEX i_temptest;
  6. QUERY: DROP TABLE temptest;
  7. QUERY: DROP INDEX i_temptest;
  8. QUERY: DROP TABLE temptest;
  9. QUERY: CREATE TABLE temptest(col int);
  10. QUERY: INSERT INTO temptest VALUES (1);
  11. QUERY: CREATE TEMP TABLE temptest(col int);
  12. QUERY: INSERT INTO temptest VALUES (2);
  13. QUERY: SELECT * FROM temptest;
  14. col
  15. ---
  16.   2
  17. (1 row)
  18. QUERY: DROP TABLE temptest;
  19. QUERY: SELECT * FROM temptest;
  20. col
  21. ---
  22.   1
  23. (1 row)
  24. QUERY: DROP TABLE temptest;
  25. QUERY: CREATE TEMP TABLE temptest(col int);
  26. QUERY: SELECT * FROM temptest;
  27. ERROR:  temptest: Table does not exist.