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

数据库系统

开发平台:

Unix_Linux

  1. QUERY: create table tt (t time);
  2. QUERY: insert into tt values ('6:22:19.95');
  3. QUERY: insert into tt values ('5:31:19.94');
  4. QUERY: insert into tt values ('2:29:1.996');
  5. QUERY: insert into tt values ('23:59:59.93');
  6. QUERY: insert into tt values ('0:0:0.0');
  7. QUERY: insert into tt values ('2:29:1.996');
  8. QUERY: select * from tt;
  9. t                
  10. ---------------- 
  11. 06:22:19.950001  
  12. 05:31:19.940001  
  13. 02:29:01.996000  
  14. 23:59:59.930000  
  15. 00:00:00.000000  
  16. 02:29:01.996000  
  17. QUERY: select * from tt order by t;
  18. t                
  19. ---------------- 
  20. 00:00:00.000000  
  21. 02:29:01.996000  
  22. 02:29:01.996000  
  23. 05:31:19.940001  
  24. 06:22:19.950001  
  25. 23:59:59.930000  
  26. QUERY: select * from tt order by t using >;
  27. t                
  28. ---------------- 
  29. 23:59:59.930000  
  30. 06:22:19.950001  
  31. 05:31:19.940001  
  32. 02:29:01.996000  
  33. 02:29:01.996000  
  34. 00:00:00.000000  
  35. QUERY: select * from tt where t = '2:29:1.996';
  36. t                
  37. ---------------- 
  38. 02:29:01.996000  
  39. 02:29:01.996000  
  40. QUERY: select * from tt where t <> '2:29:1.996';
  41. t                
  42. ---------------- 
  43. 06:22:19.950001  
  44. 05:31:19.940001  
  45. 23:59:59.930000  
  46. 00:00:00.000000  
  47. QUERY: select * from tt where t < '2:29:1.996';
  48. t                
  49. ---------------- 
  50. 00:00:00.000000  
  51. QUERY: select * from tt where t <= '2:29:1.996';
  52. t                
  53. ---------------- 
  54. 02:29:01.996000  
  55. 00:00:00.000000  
  56. 02:29:01.996000  
  57. QUERY: select * from tt where t > '2:29:1.996';
  58. t                
  59. ---------------- 
  60. 06:22:19.950001  
  61. 05:31:19.940001  
  62. 23:59:59.930000  
  63. QUERY: select * from tt where t >= '2:29:1.996';
  64. t                
  65. ---------------- 
  66. 06:22:19.950001  
  67. 05:31:19.940001  
  68. 02:29:01.996000  
  69. 23:59:59.930000  
  70. 02:29:01.996000  
  71. QUERY: create index tt_ind on tt using btree (t time_ops);
  72. QUERY: drop table tt;