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

数据库系统

开发平台:

Unix_Linux

  1. ---------------------------------------------------------------------------
  2. --
  3. -- parse.sql-
  4. --    checks the parser
  5. --
  6. --
  7. -- Copyright (c) 1994, Regents of the University of California
  8. --
  9. -- $Id: parse.sql,v 1.1.1.1 1996/07/09 06:22:30 scrappy Exp $
  10. --
  11. ---------------------------------------------------------------------------
  12. create table foo (x int4, y int4, z int4);
  13. create table bar (x int4, y int4, z int4);
  14. create table baz (a int4, b int4);
  15. insert into foo values (1, 2, 3);
  16. insert into foo values (4, 5, 6);
  17. insert into foo values (7, 8, 9);
  18. insert into bar values (11, 12, 13);
  19. insert into bar values (14, 15, 16);
  20. insert into bar values (17, 18, 19);
  21. insert into baz values (99, 88);
  22. insert into baz values (77, 66);
  23. -- once upon a time, this becomes a join of foo and f:
  24. select * from foo f where f.x = 4;
  25. select * from foo f, foo where f.x > foo.x;
  26. select * from foo f, foo where f.x = 1 and foo.z > f.z;
  27. -- not standard SQL, POSTQUEL semantics
  28. -- update foo set x = f.x from foo f where foo.x = 1 and f.x = 7
  29. -- select * from foo
  30. -- fix error message:
  31. --select foo.x from foo,bar,baz where foo.x=bar.x and bar.y=baz.x and baz.x=foo.x
  32. -- see if renaming the column works
  33. select y as a, z as b from foo order by a;
  34. select foo.y as a, foo.z as b from foo order by b;
  35. -- column expansion
  36. select foo.*, bar.z, baz.* from foo, bar, baz;
  37. drop table foo, bar, baz;