有没有办法将具有不同日期格式的日期varchar字符串转换为MySQL日期格式?

发布于 2025-01-19 04:27:42 字数 251 浏览 0 评论 0原文

我们导入了一个表,很可能是从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘然心甜 2025-01-26 04:27:42

您可以使用 str_to_date 来实现此目的:

select str_to_date('12/06/2003 07:42','%d/%m/%Y %H:%i')

You would use str_to_date for this:

select str_to_date('12/06/2003 07:42','%d/%m/%Y %H:%i')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文