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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: create table fl (x float4);
  2. QUERY: insert into fl values ( 3.14 );
  3. QUERY: insert into fl values ( 147.0 );
  4. QUERY: insert into fl values ( 3.14 );
  5. QUERY: insert into fl values ( -3.14 );
  6. QUERY: select * from fl;
  7. x      
  8. ------ 
  9. 3.14   
  10. 147    
  11. 3.14   
  12. -3.14  
  13. QUERY: select * from fl where x = 3.14;
  14. x     
  15. ----- 
  16. 3.14  
  17. 3.14  
  18. QUERY: select * from fl where x <> 3.14;
  19. x      
  20. ------ 
  21. 147    
  22. -3.14  
  23. QUERY: select * from fl where x < 3.14;
  24. x      
  25. ------ 
  26. -3.14  
  27. QUERY: select * from fl where x <= 3.14;
  28. x      
  29. ------ 
  30. 3.14   
  31. 3.14   
  32. -3.14  
  33. QUERY: select * from fl where x > 3.14;
  34. x    
  35. ---- 
  36. 147  
  37. QUERY: select * from fl where x >= 3.14;
  38. x     
  39. ----- 
  40. 3.14  
  41. 147   
  42. 3.14  
  43. QUERY: select * from fl where x = '3.14';
  44. x     
  45. ----- 
  46. 3.14  
  47. 3.14  
  48. QUERY: select * from fl where x <> '3.14';
  49. x      
  50. ------ 
  51. 147    
  52. -3.14  
  53. QUERY: select * from fl where x < '3.14';
  54. x      
  55. ------ 
  56. -3.14  
  57. QUERY: select * from fl where x <= '3.14';
  58. x      
  59. ------ 
  60. 3.14   
  61. 3.14   
  62. -3.14  
  63. QUERY: select * from fl where x > '3.14';
  64. x    
  65. ---- 
  66. 147  
  67. QUERY: select * from fl where x >= '3.14';
  68. x     
  69. ----- 
  70. 3.14  
  71. 147   
  72. 3.14  
  73. QUERY: select * from fl where x = '3.14'::float4;
  74. x     
  75. ----- 
  76. 3.14  
  77. 3.14  
  78. QUERY: select * from fl where x <> '3.14'::float4;
  79. x      
  80. ------ 
  81. 147    
  82. -3.14  
  83. QUERY: select * from fl where x < '3.14'::float4;
  84. x      
  85. ------ 
  86. -3.14  
  87. QUERY: select * from fl where x <= '3.14'::float4;
  88. x      
  89. ------ 
  90. 3.14   
  91. 3.14   
  92. -3.14  
  93. QUERY: select * from fl where x > '3.14'::float4;
  94. x    
  95. ---- 
  96. 147  
  97. QUERY: select * from fl where x >= '3.14'::float4;
  98. x     
  99. ----- 
  100. 3.14  
  101. 147   
  102. 3.14  
  103. QUERY: select * from fl where x = '3.14'::float8;
  104. x     
  105. ----- 
  106. 3.14  
  107. 3.14  
  108. QUERY: select * from fl where x <> '3.14'::float8;
  109. x      
  110. ------ 
  111. 147    
  112. -3.14  
  113. QUERY: select * from fl where x < '3.14'::float8;
  114. x      
  115. ------ 
  116. -3.14  
  117. QUERY: select * from fl where x <= '3.14'::float8;
  118. x      
  119. ------ 
  120. 3.14   
  121. 3.14   
  122. -3.14  
  123. QUERY: select * from fl where x > '3.14'::float8;
  124. x    
  125. ---- 
  126. 147  
  127. QUERY: select * from fl where x >= '3.14'::float8;
  128. x     
  129. ----- 
  130. 3.14  
  131. 147   
  132. 3.14  
  133. QUERY: update fl set x = x + 2.2;
  134. QUERY: select * from fl;
  135. x      
  136. ------ 
  137. 5.34   
  138. 149.2  
  139. 5.34   
  140. -0.94  
  141. QUERY: update fl set x = x - 2.2;
  142. QUERY: select * from fl;
  143. x      
  144. ------ 
  145. 3.14   
  146. 147    
  147. 3.14   
  148. -3.14  
  149. QUERY: update fl set x = x * 2.2;
  150. QUERY: select * from fl;
  151. x       
  152. ------- 
  153. 6.908   
  154. 323.4   
  155. 6.908   
  156. -6.908  
  157. QUERY: update fl set x = x / 2.2;
  158. QUERY: select * from fl;
  159. x      
  160. ------ 
  161. 3.14   
  162. 147    
  163. 3.14   
  164. -3.14  
  165. QUERY: create table fl8 (y float8);
  166. QUERY: insert into fl8 values ( '3.14'::float8 );
  167. QUERY: insert into fl8 values ( '147.0'::float8 );
  168. QUERY: insert into fl8 values ( '3.140000001'::float8 );
  169. QUERY: insert into fl8 values ( '-3.14'::float8);
  170. QUERY: select * from fl8;
  171. y            
  172. ------------ 
  173. 3.14         
  174. 147          
  175. 3.140000001  
  176. -3.14        
  177. QUERY: select * from fl8 where y = 3.14;
  178. y            
  179. ------------ 
  180. 3.14         
  181. 3.140000001  
  182. QUERY: select * from fl8 where y <> 3.14;
  183. y      
  184. ------ 
  185. 147    
  186. -3.14  
  187. QUERY: select * from fl8 where y < 3.14;
  188. y      
  189. ------ 
  190. -3.14  
  191. QUERY: select * from fl8 where y <= 3.14;
  192. y            
  193. ------------ 
  194. 3.14         
  195. 3.140000001  
  196. -3.14        
  197. QUERY: select * from fl8 where y > 3.14;
  198. y    
  199. ---- 
  200. 147  
  201. QUERY: select * from fl8 where y >= 3.14;
  202. y            
  203. ------------ 
  204. 3.14         
  205. 147          
  206. 3.140000001  
  207. QUERY: select * from fl8 where y = '3.14';
  208. y     
  209. ----- 
  210. 3.14  
  211. QUERY: select * from fl8 where y <> '3.14';
  212. y            
  213. ------------ 
  214. 147          
  215. 3.140000001  
  216. -3.14        
  217. QUERY: select * from fl8 where y < '3.14';
  218. y      
  219. ------ 
  220. -3.14  
  221. QUERY: select * from fl8 where y <= '3.14';
  222. y      
  223. ------ 
  224. 3.14   
  225. -3.14  
  226. QUERY: select * from fl8 where y > '3.14';
  227. y            
  228. ------------ 
  229. 147          
  230. 3.140000001  
  231. QUERY: select * from fl8 where y >= '3.14';
  232. y            
  233. ------------ 
  234. 3.14         
  235. 147          
  236. 3.140000001  
  237. QUERY: select * from fl8 where y = '3.14'::float4;
  238. y            
  239. ------------ 
  240. 3.14         
  241. 3.140000001  
  242. QUERY: select * from fl8 where y <> '3.14'::float4;
  243. y      
  244. ------ 
  245. 147    
  246. -3.14  
  247. QUERY: select * from fl8 where y < '3.14'::float4;
  248. y      
  249. ------ 
  250. -3.14  
  251. QUERY: select * from fl8 where y <= '3.14'::float4;
  252. y            
  253. ------------ 
  254. 3.14         
  255. 3.140000001  
  256. -3.14        
  257. QUERY: select * from fl8 where y > '3.14'::float4;
  258. y    
  259. ---- 
  260. 147  
  261. QUERY: select * from fl8 where y >= '3.14'::float4;
  262. y            
  263. ------------ 
  264. 3.14         
  265. 147          
  266. 3.140000001  
  267. QUERY: select * from fl8 where y = '3.14'::float8;
  268. y     
  269. ----- 
  270. 3.14  
  271. QUERY: select * from fl8 where y <> '3.14'::float8;
  272. y            
  273. ------------ 
  274. 147          
  275. 3.140000001  
  276. -3.14        
  277. QUERY: select * from fl8 where y < '3.14'::float8;
  278. y      
  279. ------ 
  280. -3.14  
  281. QUERY: select * from fl8 where y <= '3.14'::float8;
  282. y      
  283. ------ 
  284. 3.14   
  285. -3.14  
  286. QUERY: select * from fl8 where y > '3.14'::float8;
  287. y            
  288. ------------ 
  289. 147          
  290. 3.140000001  
  291. QUERY: select * from fl8 where y >= '3.14'::float8;
  292. y            
  293. ------------ 
  294. 3.14         
  295. 147          
  296. 3.140000001  
  297. QUERY: update fl8 set y = y + '2.2'::float8;
  298. QUERY: select * from fl8;
  299. y            
  300. ------------ 
  301. 5.34         
  302. 149.2        
  303. 5.340000001  
  304. -0.94        
  305. QUERY: update fl8 set y = y - '2.2'::float8;
  306. QUERY: select * from fl8;
  307. y            
  308. ------------ 
  309. 3.14         
  310. 147          
  311. 3.140000001  
  312. -3.14        
  313. QUERY: update fl8 set y = y * '2.2'::float8;
  314. QUERY: select * from fl8;
  315. y             
  316. ------------- 
  317. 6.908         
  318. 323.4         
  319. 6.9080000022  
  320. -6.908        
  321. QUERY: update fl8 set y = y / '2.2'::float8;
  322. QUERY: select * from fl8;
  323. y            
  324. ------------ 
  325. 3.14         
  326. 147          
  327. 3.140000001  
  328. -3.14        
  329. QUERY: drop table fl;
  330. QUERY: drop table fl8;