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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: select 1 as X;
  2. X  
  3. -- 
  4. 1  
  5. QUERY: create table foo (name char16, salary int4);
  6. QUERY: insert into foo values ('mike', 15000);
  7. QUERY: select * from foo where 2 > 1;
  8. name  salary  
  9. ----- ------- 
  10. mike  15000   
  11. QUERY: select * from pg_class where 1=0;
  12. relname  reltype  relowner  relam  relpages  reltuples  relexpires  relpreserved  relhasindex  relisshared  relkind  relarch  relnatts  relsmgr  relkey  relkeyop  relhasrules  relacl  
  13. -------- -------- --------- ------ --------- ---------- ----------- ------------- ------------ ------------ -------- -------- --------- -------- ------- --------- ------------ ------- 
  14. QUERY: create table bar (x int4);
  15. QUERY: insert into bar values (1);
  16. QUERY: insert into bar values (2);
  17. QUERY: insert into bar values (1);
  18. QUERY: select distinct * from bar;
  19. x  
  20. -- 
  21. 1  
  22. 2  
  23. QUERY: select distinct * into table bar2 from bar;
  24. QUERY: select distinct * from bar2;
  25. x  
  26. -- 
  27. 1  
  28. 2  
  29. QUERY: drop table foo;
  30. QUERY: drop table bar;
  31. QUERY: drop table bar2;