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

数据库系统

开发平台:

Unix_Linux

  1. --
  2. -- Test temp relations and indexes
  3. --
  4. -- test temp table/index masking
  5. CREATE TABLE temptest(col int);
  6. CREATE INDEX i_temptest ON temptest(col);
  7. CREATE TEMP TABLE temptest(col int);
  8. CREATE INDEX i_temptest ON temptest(col);
  9. DROP INDEX i_temptest;
  10. DROP TABLE temptest;
  11. DROP INDEX i_temptest;
  12. DROP TABLE temptest;
  13. -- test temp table selects
  14. CREATE TABLE temptest(col int);
  15. INSERT INTO temptest VALUES (1);
  16. CREATE TEMP TABLE temptest(col int);
  17. INSERT INTO temptest VALUES (2);
  18. SELECT * FROM temptest;
  19. DROP TABLE temptest;
  20. SELECT * FROM temptest;
  21. DROP TABLE temptest;
  22. CREATE TEMP TABLE temptest(col int);
  23. -- test temp table deletion
  24. c regression
  25. SELECT * FROM temptest;