gpt4 book ai didi

sql - 查找日期列时间戳 = 00 :00:00. 000 的所有行

转载 作者:行者123 更新时间:2023-12-02 06:47:17 25 4
gpt4 key购买 nike

我有一个表,其中一列作为注册日期,其类型为日期时间。我需要找到所有将 registrationDate 作为时间戳记为 00:00:00.000 的行。
例如 :

registrationDate: '2019-03-20 00:00:00.000'

我需要查询类似于下面的内容:
select * from table where registrationDate like '%00:00:00.000';

最佳答案

您可以将日期时间转换为时间:

WHERE CAST(registrationDate AS TIME) = '00:00'

关于sql - 查找日期列时间戳 = 00 :00:00. 000 的所有行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55516898/

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