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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: create table f (x char(5));
  2. QUERY: insert into f values ('zoo');
  3. QUERY: insert into f values ('a');
  4. QUERY: insert into f values ('jet');
  5. QUERY: insert into f values ('abc');
  6. QUERY: insert into f values ('');
  7. QUERY: insert into f values ('a c');
  8. QUERY: insert into f values ('abxyzxyz');
  9. QUERY: select * from f;
  10. x      
  11. ------ 
  12. zoo    
  13. a      
  14. jet    
  15. abc    
  16.        
  17. a c    
  18. abxyz  
  19. QUERY: select * from f where x = 'jet';
  20. x      
  21. ------ 
  22. jet    
  23. QUERY: select * from f where x <> 'jet';
  24. x      
  25. ------ 
  26. zoo    
  27. a      
  28. abc    
  29.        
  30. a c    
  31. abxyz  
  32. QUERY: select * from f where x < 'jet';
  33. x      
  34. ------ 
  35. a      
  36. abc    
  37.        
  38. a c    
  39. abxyz  
  40. QUERY: select * from f where x <= 'jet';
  41. x      
  42. ------ 
  43. a      
  44. jet    
  45. abc    
  46.        
  47. a c    
  48. abxyz  
  49. QUERY: select * from f where x > 'jet';
  50. x      
  51. ------ 
  52. zoo    
  53. QUERY: select * from f where x >= 'jet';
  54. x      
  55. ------ 
  56. zoo    
  57. jet    
  58.        
  59. QUERY: select * from f where x = 'ab';
  60. x  
  61. -- 
  62. QUERY: select * from f where x <> 'ab';
  63. x      
  64. ------ 
  65. zoo    
  66. a      
  67. jet    
  68. abc    
  69.        
  70. a c    
  71. abxyz  
  72. QUERY: select * from f where x < 'ab';
  73. x      
  74. ------ 
  75. a      
  76.        
  77. a c    
  78. QUERY: select * from f where x <= 'ab';
  79. x      
  80. ------ 
  81. a      
  82. abc    
  83.        
  84. a c    
  85. abxyz  
  86. QUERY: select * from f where x > 'ab';
  87. x      
  88. ------ 
  89. zoo    
  90. jet    
  91. abc    
  92. abxyz  
  93. QUERY: select * from f where x >= 'ab';
  94. x      
  95. ------ 
  96. zoo    
  97. a      
  98. jet    
  99. abc    
  100.        
  101. abxyz  
  102. QUERY: select * from f order by x;
  103. x      
  104. ------ 
  105.        
  106. a      
  107. a c    
  108. abc    
  109. abxyz  
  110. jet    
  111. zoo    
  112. QUERY: create table ff (x varchar(5));
  113. QUERY: insert into ff values ('a');
  114. QUERY: insert into ff values ('zoo');
  115. QUERY: insert into ff values ('jet');
  116. QUERY: insert into ff values ('abc');
  117. QUERY: insert into ff values ('');
  118. QUERY: insert into ff values ('a c');
  119. QUERY: insert into ff values ('abxyzxyz');
  120. QUERY: select * from ff;
  121. x      
  122. ------ 
  123. a      
  124. zoo    
  125. jet    
  126. abc    
  127.        
  128. a c    
  129. abxyz  
  130. QUERY: select * from ff where x = 'jet';
  131. x    
  132. ---- 
  133. jet  
  134. QUERY: select * from ff where x <> 'jet';
  135. x      
  136. ------ 
  137. a      
  138. zoo    
  139. abc    
  140.        
  141. a c    
  142. abxyz  
  143. QUERY: select * from ff where x < 'jet';
  144. x      
  145. ------ 
  146. a      
  147. abc    
  148.        
  149. a c    
  150. abxyz  
  151. QUERY: select * from ff where x <= 'jet';
  152. x      
  153. ------ 
  154. a      
  155. jet    
  156. abc    
  157.        
  158. a c    
  159. abxyz  
  160. QUERY: select * from ff where x > 'jet';
  161. x    
  162. ---- 
  163. zoo  
  164. QUERY: select * from ff where x >= 'jet';
  165. x    
  166. ---- 
  167. zoo  
  168. jet  
  169.      
  170. QUERY: select * from ff where x = 'ab';
  171. x  
  172. -- 
  173. QUERY: select * from ff where x <> 'ab';
  174. x      
  175. ------ 
  176. a      
  177. zoo    
  178. jet    
  179. abc    
  180.        
  181. a c    
  182. abxyz  
  183. QUERY: select * from ff where x < 'ab';
  184. x    
  185. ---- 
  186. a    
  187.      
  188. a c  
  189. QUERY: select * from ff where x <= 'ab';
  190. x      
  191. ------ 
  192. a      
  193. abc    
  194.        
  195. a c    
  196. abxyz  
  197. QUERY: select * from ff where x > 'ab';
  198. x      
  199. ------ 
  200. zoo    
  201. jet    
  202. abc    
  203. abxyz  
  204. QUERY: select * from ff where x >= 'ab';
  205. x      
  206. ------ 
  207. a      
  208. zoo    
  209. jet    
  210. abc    
  211.        
  212. abxyz  
  213. QUERY: select * from ff order by x using >;
  214. x      
  215. ------ 
  216. zoo    
  217. jet    
  218. abxyz  
  219. abc    
  220. a c    
  221. a      
  222.        
  223. QUERY: create index f_ind on f using btree (x bpchar_ops);
  224. QUERY: create index ff_ind on ff using btree (x varchar_ops);
  225. QUERY: drop table f;
  226. QUERY: drop table ff;