date_formats.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:9k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of date format functions
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. SHOW GLOBAL VARIABLES LIKE "%_format%";
  8. SHOW SESSION VARIABLES LIKE "%_format%";
  9. #
  10. # Test setting a lot of different formats to see which formats are accepted and
  11. # which aren't
  12. #
  13. SET time_format='%H%i%s';
  14. SET time_format='%H:%i:%s.%f';
  15. SET time_format='%h-%i-%s.%f%p';
  16. SET time_format='%h:%i:%s.%f %p';
  17. SET time_format='%h:%i:%s%p';
  18. SET date_format='%Y%m%d';
  19. SET date_format='%Y.%m.%d';
  20. SET date_format='%d.%m.%Y';
  21. SET date_format='%m-%d-%Y';
  22. set datetime_format= '%Y%m%d%H%i%s';
  23. set datetime_format= '%Y-%m-%d %H:%i:%s';
  24. set datetime_format= '%m-%d-%y %H:%i:%s.%f';
  25. set datetime_format= '%d-%m-%Y %h:%i:%s%p';
  26. set datetime_format= '%H:%i:%s %Y-%m-%d';
  27. set datetime_format= '%H:%i:%s.%f %m-%d-%Y';
  28. set datetime_format= '%h:%i:%s %p %Y-%m-%d';
  29. set datetime_format= '%h:%i:%s.%f %p %Y-%m-%d';
  30. SHOW SESSION VARIABLES LIKE "%format";
  31. --error 1231
  32. SET time_format='%h:%i:%s';
  33. --error 1231
  34. SET time_format='%H %i:%s';
  35. --error 1231
  36. SET time_format='%H::%i:%s';
  37. --error 1231
  38. SET time_format='%H:%i:%s%f';
  39. --error 1231
  40. SET time_format='%H:%i.%f:%s';
  41. --error 1231
  42. SET time_format='%H:%i:%s%p';
  43. --error 1231
  44. SET time_format='%h:%i:%s.%f %p %Y-%m-%d';
  45. --error 1231
  46. SET time_format='%H%i%s.%f';
  47. --error 1231
  48. SET time_format='%H:%i-%s.%f';
  49. --error 1231
  50. SET date_format='%d.%m.%d';
  51. --error 1231
  52. SET datetime_format='%h.%m.%y %d.%i.%s';
  53. --error 1231
  54. set datetime_format= '%H:%i:%s.%f %p %Y-%m-%d';
  55. #
  56. # Test GLOBAL values
  57. set GLOBAL datetime_format= '%H:%i:%s %Y-%m-%d';
  58. SET SESSION datetime_format=default;
  59. select @@global.datetime_format, @@session.datetime_format;
  60. SET GLOBAL datetime_format=default;
  61. SET SESSION datetime_format=default;
  62. select @@global.datetime_format, @@session.datetime_format;
  63. SET GLOBAL date_format=default;
  64. SET GLOBAL time_format=default;
  65. SET GLOBAL datetime_format=default;
  66. SET time_format=default;
  67. SET date_format=default;
  68. SET datetime_format=default;
  69. #
  70. # The following tests will work only when we at some point will enable
  71. # dynamic changing of formats
  72. #
  73. # SET date_format='%d.%m.%Y';
  74. # select CAST('01.01.2001' as DATE) as a;
  75. # SET datetime_format='%d.%m.%Y %H.%i.%s';
  76. # select CAST('01.01.2001 05.12.06' as DATETIME) as a;
  77. # SET time_format='%H.%i.%s';
  78. # select CAST('05.12.06' as TIME) as a;
  79. # SET datetime_format='%d.%m.%Y %h:%i:%s %p';
  80. # select CAST('01.01.2001 05:12:06AM' as DATETIME) as a;
  81. # select CAST('01.01.2001 05:12:06 PM' as DATETIME) as a;
  82. # SET time_format='%h:%i:%s %p';
  83. # select CAST('05:12:06 AM' as TIME) as a;
  84. # select CAST('05:12:06.1234PM' as TIME) as a;
  85. # SET time_format='%h.%i.%s %p';
  86. # SET date_format='%d.%m.%y';
  87. # SET datetime_format='%d.%m.%y %h.%i.%s %p';
  88. # select CAST('12-12-06' as DATE) as a;
  89. # select adddate('01.01.97 11.59.59.000001 PM', 10);
  90. # select datediff('31.12.97 11.59:59.000001 PM','01.01.98');
  91. # select weekofyear('31.11.97 11:59:59.000001 PM');
  92. # select makedate(1997,1);
  93. # select addtime('31.12.97 11.59.59.999999 PM', '1 1.1.1.000002');
  94. # select maketime(23,11,12);
  95. # select timediff('01.01.97 11:59:59.000001 PM','31.12.95 11:59:59.000002 PM');
  96. # SET time_format='%i:%s:%H';
  97. # select cast(str_to_date('15-01-2001 12:59:59', '%d-%m-%Y %H:%i:%S') as TIME);
  98. #
  99. # Test of str_to_date
  100. #
  101. # PS doesn't support fraction of a seconds
  102. --disable_ps_protocol
  103. select str_to_date(concat('15-01-2001',' 2:59:58.999'),
  104.            concat('%d-%m-%Y',' ','%H:%i:%s.%f'));
  105. --enable_ps_protocol
  106. create table t1 (date char(30), format char(30) not null);
  107. insert into t1 values
  108. ('2003-01-02 10:11:12', '%Y-%m-%d %H:%i:%S'),
  109. ('03-01-02 8:11:2.123456', '%y-%m-%d %H:%i:%S.%#'),
  110. ('2003-01-02 10:11:12 PM', '%Y-%m-%d %h:%i:%S %p'),
  111. ('2003-01-02 01:11:12.12345AM', '%Y-%m-%d %h:%i:%S.%f%p'),
  112. ('2003-01-02 02:11:12.12345AM', '%Y-%m-%d %h:%i:%S.%f %p'),
  113. ('2003-01-02 12:11:12.12345 am', '%Y-%m-%d %h:%i:%S.%f%p'),
  114. ('2003-01-02 11:11:12Pm', '%Y-%m-%d %h:%i:%S%p'),
  115. ('10:20:10', '%H:%i:%s'),
  116. ('10:20:10', '%h:%i:%s.%f'),
  117. ('10:20:10', '%T'),
  118. ('10:20:10AM', '%h:%i:%s%p'),
  119. ('10:20:10AM', '%r'),
  120. ('10:20:10.44AM', '%h:%i:%s.%f%p'),
  121. ('15-01-2001 12:59:58', '%d-%m-%Y %H:%i:%S'),
  122. ('15 September 2001', '%d %M %Y'),
  123. ('15 SEPTEMB 2001', '%d %M %Y'),
  124. ('15 MAY 2001', '%d %b %Y'),
  125. ('15th May 2001', '%D %b %Y'),
  126. ('Sunday 15 MAY 2001', '%W %d %b %Y'),
  127. ('Sund 15 MAY 2001', '%W %d %b %Y'),
  128. ('Tuesday 00 2002', '%W %U %Y'),
  129. ('Thursday 53 1998', '%W %u %Y'),
  130. ('Sunday 01 2001', '%W %v %x'),
  131. ('Tuesday 52 2001', '%W %V %X'),
  132. ('060 2004', '%j %Y'),
  133. ('4 53 1998', '%w %u %Y'),
  134. ('15-01-2001', '%d-%m-%Y %H:%i:%S'),
  135. ('15-01-20', '%d-%m-%y'),
  136. ('15-2001-1', '%d-%Y-%c');
  137. # PS doesn't support fractional seconds
  138. --disable_ps_protocol
  139. select date,format,str_to_date(date, format) as str_to_date from t1;
  140. # Use as a string
  141. select date,format,concat('',str_to_date(date, format)) as con from t1;
  142. # Use as datetime
  143. select date,format,cast(str_to_date(date, format) as datetime) as datetime from t1;
  144. select date,format,DATE(str_to_date(date, format)) as date2 from t1;
  145. select date,format,TIME(str_to_date(date, format)) as time from t1;
  146. select date,format,concat(TIME(str_to_date(date, format))) as time2 from t1;
  147. # Test small bug in %f handling
  148. select concat('',str_to_date('8:11:2.123456 03-01-02','%H:%i:%S.%f %y-%m-%d'));
  149. # Test wrong dates or converion specifiers
  150. truncate table t1;
  151. insert into t1 values
  152. ('2003-01-02 10:11:12 PM', '%Y-%m-%d %H:%i:%S %p'),
  153. ('2003-01-02 10:11:12.123456', '%Y-%m-%d %h:%i:%S %p'),
  154. ('2003-01-02 10:11:12AM', '%Y-%m-%d %h:%i:%S.%f %p'),
  155. ('2003-01-02 10:11:12AN', '%Y-%m-%d %h:%i:%S%p'),
  156. ('2003-01-02 10:11:12 PM', '%y-%m-%d %H:%i:%S %p'),
  157. ('10:20:10AM', '%H:%i:%s%p'),
  158. ('15 Septembei 2001', '%d %M %Y'),
  159. ('15 Ju 2001', '%d %M %Y'),
  160. ('Sund 15 MA', '%W %d %b %Y'),
  161. ('Thursdai 12 1998', '%W %u %Y'),
  162. ('Sunday 01 2001', '%W %v %X'),
  163. ('Tuesday 52 2001', '%W %V %x'),
  164. ('Tuesday 52 2001', '%W %V %Y'),
  165. ('Tuesday 52 2001', '%W %u %x'),
  166. ('7 53 1998', '%w %u %Y'),
  167. (NULL, get_format(DATE,'USA'));
  168. select date,format,str_to_date(date, format) as str_to_date from t1;
  169. select date,format,concat(str_to_date(date, format),'') as con from t1;
  170. # Test 'maybe' date formats and 'strange but correct' results
  171. truncate table t1;
  172. insert into t1 values
  173. ('10:20:10AM', '%h:%i:%s'),
  174. ('2003-01-02 10:11:12', '%Y-%m-%d %h:%i:%S'),
  175. ('03-01-02 10:11:12 PM', '%Y-%m-%d %h:%i:%S %p');
  176. select date,format,str_to_date(date, format) as str_to_date from t1;
  177. select date,format,concat(str_to_date(date, format),'') as con from t1;
  178. drop table t1;
  179. --enable_ps_protocol
  180. #
  181. # Test of get_format
  182. #
  183. select get_format(DATE, 'USA') as a;
  184. select get_format(TIME, 'internal') as a;
  185. select get_format(DATETIME, 'eur') as a;
  186. select get_format(TIMESTAMP, 'eur') as a;
  187. select get_format(DATE, 'TEST') as a;
  188. select str_to_date('15-01-2001 12:59:59', GET_FORMAT(DATE,'USA'));
  189. explain extended select makedate(1997,1), addtime("31.12.97 11.59.59.999999 PM", "1 1.1.1.000002"),subtime("31.12.97 11.59.59.999999 PM", "1 1.1.1.000002"),timediff("01.01.97 11:59:59.000001 PM","31.12.95 11:59:59.000002 PM"),cast(str_to_date("15-01-2001 12:59:59", "%d-%m-%Y %H:%i:%S") as TIME), maketime(23,11,12),microsecond("1997-12-31 23:59:59.000001");
  190. #
  191. # Test of date_format()
  192. #
  193. create table t1 (d date);
  194. insert into t1 values ('2004-07-14'),('2005-07-14');
  195. select date_format(d,"%d") from t1 order by 1;
  196. drop table t1;
  197. # PS doesn't support fractional seconds
  198. --disable_ps_protocol
  199. select str_to_date("2003-....01ABCD-02 10:11:12.0012", "%Y-%.%m%@-%d %H:%i:%S.%f") as a;
  200. create table t1 select str_to_date("2003-01-02 10:11:12.0012", "%Y-%m-%d %H:%i:%S.%f") as f1,
  201. str_to_date("10:11:12.0012", "%H:%i:%S.%f") as f2,
  202. str_to_date("2003-01-02", "%Y-%m-%d") as f3,
  203. str_to_date("02", "%d") as f4, str_to_date("02 10", "%d %H") as f5;
  204. describe t1;
  205. select * from t1;
  206. drop table t1;
  207. create table t1 select "02 10" as a, "%d %H" as b;
  208. select str_to_date(a,b) from t1;
  209. create table t2 select str_to_date(a,b) from t1;
  210. describe t2;
  211. select str_to_date("2003-01-02 10:11:12.0012", "%Y-%m-%d %H:%i:%S.%f") as f1,
  212.        str_to_date("2003-01-02 10:11:12.0012", "%Y-%m-%d %H:%i:%S") as f2,
  213.        str_to_date("2003-01-02", "%Y-%m-%d") as f3,
  214.        str_to_date("02 10:11:12", "%d %H:%i:%S.%f") as f4,
  215.        str_to_date("02 10:11:12", "%d %H:%i:%S") as f5,
  216.        str_to_date("02 10", "%d %f") as f6;
  217. drop table t1, t2;
  218. select str_to_date("2003-01-02 10:11:12.0012ABCD", "%Y-%m-%d %H:%i:%S.%f") as f1,
  219.        addtime("-01:01:01.01 GGG", "-23:59:59.1") as f2,
  220.        microsecond("1997-12-31 23:59:59.01XXXX") as f3;
  221. select str_to_date("2003-04-05  g", "%Y-%m-%d") as f1,
  222.        str_to_date("2003-04-05 10:11:12.101010234567", "%Y-%m-%d %H:%i:%S.%f") as f2;
  223. --enable_ps_protocol
  224. #
  225. # Bug #14016 
  226. #
  227. create table t1 (f1 datetime);
  228. insert into t1 (f1) values ("2005-01-01");
  229. insert into t1 (f1) values ("2005-02-01");
  230. select date_format(f1, "%m") as d1, date_format(f1, "%M") as d2 from t1 order by date_format(f1, "%M");
  231. drop table t1;
  232. # End of 4.1 tests