有没有办法将具有不同日期格式的日期varchar字符串转换为MySQL日期格式?
我们导入了一个表,很可能是从 Excel 文件中导入的,其中保存在 varchar 中的 DATETIME 的格式如下所示:
12/06/2003 07:42
有没有办法将其转换为有效的 MySQL 日期格式,以便稍后将字段从 varchar 转换为日期时间?也许用正则表达式?请注意,12 是日期,06 是月份。
2003-06-12 07:42:00
谢谢
We imported a table, most probably from an Excel file, where a DATETIME, saved in a varchar, has a format that looks like this:
12/06/2003 07:42
Is there any way to convert that into a valid MySQL date format for later convert the field from varchar to DATETIME? Maybe with a regular expression? Note that 12 is the day and 06 the month.
2003-06-12 07:42:00
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 str_to_date 来实现此目的:
You would use str_to_date for this: