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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: create table st1 (x int, y integer, z int4);
  2. QUERY: insert into st1 values (1);
  3. QUERY: insert into st1 values (10);
  4. QUERY: select * from st1;
  5. x   y  z  
  6. --- -- -- 
  7. 1         
  8. 10        
  9. QUERY: create table st2 (x smallint, y int2);
  10. QUERY: insert into st2 values (1);
  11. QUERY: insert into st2 values (10);
  12. QUERY: select * from st2;
  13. x   y  
  14. --- -- 
  15. 1      
  16. 10     
  17. QUERY: create table st3 (x float, y real, z float4);
  18. QUERY: insert into st3 values (1);
  19. QUERY: insert into st3 values (10);
  20. QUERY: select * from st3;
  21. x   y  z  
  22. --- -- -- 
  23. 1         
  24. 10        
  25. QUERY: create table st4 (x float8);
  26. QUERY: insert into st4 values (1);
  27. QUERY: insert into st4 values (10);
  28. QUERY: select * from st4;
  29. x   
  30. --- 
  31. 1   
  32. 10  
  33. QUERY: select max(x) from st1;
  34. max  
  35. ---- 
  36. 10   
  37. QUERY: select min(x) from st1;
  38. min  
  39. ---- 
  40. 1    
  41. QUERY: select sum(x) from st1;
  42. sum  
  43. ---- 
  44. 11   
  45. QUERY: select avg(x) from st1;
  46. avg  
  47. ---- 
  48. 5    
  49. QUERY: select max(x) from st2;
  50. max  
  51. ---- 
  52. 10   
  53. QUERY: select min(x) from st2;
  54. min  
  55. ---- 
  56. 1    
  57. QUERY: select sum(x) from st2;
  58. sum  
  59. ---- 
  60. 11   
  61. QUERY: select avg(x) from st2;
  62. avg  
  63. ---- 
  64. 5    
  65. QUERY: select max(x) from st3;
  66. max  
  67. ---- 
  68. 10   
  69. QUERY: select min(x) from st3;
  70. min  
  71. ---- 
  72. 1    
  73. QUERY: select sum(x) from st3;
  74. sum  
  75. ---- 
  76. 11   
  77. QUERY: select avg(x) from st3;
  78. avg  
  79. ---- 
  80. 5.5  
  81. QUERY: select max(x) from st4;
  82. max  
  83. ---- 
  84. 10   
  85. QUERY: select min(x) from st4;
  86. min  
  87. ---- 
  88. 1    
  89. QUERY: select sum(x) from st4;
  90. sum  
  91. ---- 
  92. 11   
  93. QUERY: select avg(x) from st4;
  94. avg  
  95. ---- 
  96. 5.5  
  97. QUERY: drop table st1;
  98. QUERY: drop table st2;
  99. QUERY: drop table st3;
  100. QUERY: drop table st4;