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

数据库系统

开发平台:

Unix_Linux

  1. ---------------------------------------------------------------------------
  2. --
  3. -- select.sql-
  4. --    test select
  5. --
  6. --
  7. -- Copyright (c) 1994-5, Regents of the University of California
  8. --
  9. -- $Id: select.sql,v 1.1.1.1 1996/07/09 06:22:30 scrappy Exp $
  10. --
  11. ---------------------------------------------------------------------------
  12. -- test Result nodes (constant target list/quals)
  13. select 1 as X;
  14. create table foo (name char16, salary int4);
  15. insert into foo values ('mike', 15000);
  16. select * from foo where 2 > 1;
  17. select * from pg_class where 1=0;
  18. -- test select distinct
  19. create table bar (x int4);
  20. insert into bar values (1);
  21. insert into bar values (2);
  22. insert into bar values (1);
  23. select distinct * from bar;
  24. select distinct * into table bar2 from bar;
  25. select distinct * from bar2;
  26. drop table foo;
  27. drop table bar;
  28. drop table bar2;