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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: create table foo (x int4, y int4, z int4);
  2. QUERY: create table bar (x int4, y int4, z int4);
  3. QUERY: create table baz (a int4, b int4);
  4. QUERY: insert into foo values (1, 2, 3);
  5. QUERY: insert into foo values (4, 5, 6);
  6. QUERY: insert into foo values (7, 8, 9);
  7. QUERY: insert into bar values (11, 12, 13);
  8. QUERY: insert into bar values (14, 15, 16);
  9. QUERY: insert into bar values (17, 18, 19);
  10. QUERY: insert into baz values (99, 88);
  11. QUERY: insert into baz values (77, 66);
  12. QUERY: select * from foo f where f.x = 4;
  13. x  y  z  
  14. -- -- -- 
  15. 4  5  6  
  16. QUERY: select * from foo f, foo where f.x > foo.x;
  17. x  y  z  x  y  z  
  18. -- -- -- -- -- -- 
  19. 4  5  6  1  2  3  
  20. 7  8  9  1  2  3  
  21. 7  8  9  4  5  6  
  22. QUERY: select * from foo f, foo where f.x = 1 and foo.z > f.z;
  23. x  y  z  x  y  z  
  24. -- -- -- -- -- -- 
  25. 1  2  3  4  5  6  
  26. 1  2  3  7  8  9  
  27. QUERY: select y as a, z as b from foo order by a;
  28. a  b  
  29. -- -- 
  30. 2  3  
  31. 5  6  
  32. 8  9  
  33. QUERY: select foo.y as a, foo.z as b from foo order by b;
  34. a  b  
  35. -- -- 
  36. 2  3  
  37. 5  6  
  38. 8  9  
  39. QUERY: select foo.*, bar.z, baz.* from foo, bar, baz;
  40. x  y  z  z   a   b   
  41. -- -- -- --- --- --- 
  42. 1  2  3  13  99  88  
  43. 4  5  6  13  99  88  
  44. 7  8  9  13  99  88  
  45. 1  2  3  16  99  88  
  46. 4  5  6  16  99  88  
  47. 7  8  9  16  99  88  
  48. 1  2  3  19  99  88  
  49. 4  5  6  19  99  88  
  50. 7  8  9  19  99  88  
  51. 1  2  3  13  77  66  
  52. 4  5  6  13  77  66  
  53. 7  8  9  13  77  66  
  54. 1  2  3  16  77  66  
  55. 4  5  6  16  77  66  
  56. 7  8  9  16  77  66  
  57. 1  2  3  19  77  66  
  58. 4  5  6  19  77  66  
  59. 7  8  9  19  77  66  
  60. QUERY: drop table foo, bar, baz;