gpt4 book ai didi

sql - 在 SQL 中设置可变日期

转载 作者:行者123 更新时间:2023-12-02 03:58:52 24 4
gpt4 key购买 nike

在 SQL Server Management Studio 中,我尝试使用日期变量来引用特定的日期和时间,如下所示。

Declare @specified_date Date
set @specified_date = '07-01-2013'

Select *
from etc
Where CreatedDate > CONVERT(datetime, @specified_date & '00:00:00.000' )

此代码不起作用,我收到此错误:

The data types date and varchar are incompatible in the '&' operator.

所使用的数据上都有日期和时间代码,我希望能够只定义一次日期并让变量携带它,而不是更改多个查询。如果有人知道解决方案,那就太好了。

最佳答案

你尝试过这个吗:

Declare @specified_date Date
set @specified_date = '07-01-2013'
Select * from etc
Where CreatedDate > @specified_date

关于sql - 在 SQL 中设置可变日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17956367/

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