gpt4 book ai didi

mysql - Mysql更新字符串日期时间

转载 作者:行者123 更新时间:2023-11-29 02:30:49 34 4
gpt4 key购买 nike

我尝试了很多例子,但没有人能解决我的问题。以下是我尝试过的一些示例。只是我需要将字符串日期更新为可为空的日期时间列。我得到的是 000-00-00 或 NULL 列。

感谢您的帮助,我是 mysql 的新手,正在尝试理解:/

Update `scorelisting` 
set MaxScoreDate=DATE(STR_TO_DATE('13.05.2012 15:31:00','%d.%m.%Y %H:%M:%S'))
where UserId=258070

Update `scorelisting`
set MaxScoreDate=STR_TO_DATE('13.05.2012 15:31:00','%d.%m.%Y %H:%M:%S')
where UserId=258070

Update `scorelisting`
set MaxScoreDate=DATE('%d.%m.%Y %H:%M:%S',STR_TO_DATE('13.05.2012 15:31:00'))
where UserId=258070

Update `scorelisting`
set MaxScoreDate=DATE('%d.%m.%Y %H:%M:%S',strtotime('13.05.2012 15:31:00'))
where UserId=258070

最佳答案

使用 i 分钟

Update `scorelisting` 
set MaxScoreDate=DATE(STR_TO_DATE('13.05.2012 15:31:00','%d.%m.%Y %H:%i:%s'))
where UserId=258070

关于mysql - Mysql更新字符串日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13450866/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com