我有这种格式的日期:Jan 6 2015 19:28:24 GMT
并希望转换为类似mysql的格式。有没有办法可以在mysql中执行此操作,因为我已经将数据作为字符串放在我的表中。
答案 0 :(得分:1)
使用str_to_date
功能:
MariaDB [(none)]> select str_to_date('Jan 6 2015 19:28:24 GMT', '%M %d %Y %H:%i:%s');
+-------------------------------------------------------------+
| str_to_date('Jan 6 2015 19:28:24 GMT', '%M %d %Y %H:%i:%s') |
+-------------------------------------------------------------+
| 2015-01-06 19:28:24 |
+-------------------------------------------------------------+
1 row in set, 1 warning (0.00 sec)