gpt4 book ai didi

mysql - SQL日期/时间字段查询

转载 作者:行者123 更新时间:2023-11-30 22:22:59 24 4
gpt4 key购买 nike

我有一个带有名为 tblTest 的表的数据库,它有一个名为 LastDate 的日期/时间字段

我正在尝试运行查询:

update tblTest 
set lastDate= '20/02/2016'
where lastDate = '08/04/2016'

但它不起作用,我试过 CAST('20/02/2016' AS DATE) 但它似乎也不起作用。

谁能给我点建议?

谢谢

最佳答案

如果 lastDatedatetime 类型,那么这应该有效:

update tblTest 
set lastDate = '2016-02-20'
where lastDate = '2016-04-08'

此查询使用根据 ANSI SQL 标准格式化的字符串文字。

关于mysql - SQL日期/时间字段查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36158369/

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