gpt4 book ai didi

sql-server-2008 - 如何在 SQL Server 中将小时数添加到当前日期?

转载 作者:行者123 更新时间:2023-12-03 05:49:11 25 4
gpt4 key购买 nike

我正在尝试在当前时间上添加小时

-- NOT A VALID STATEMENT
-- SELECT GetDate(DATEADD (Day, 5, GETDATE()))

如何在 SQL Server 中提前几个小时?

最佳答案

DATEADD (datepart , number , date )

declare @num_hours int; 
set @num_hours = 5;

select dateadd(HOUR, @num_hours, getdate()) as time_added,
getdate() as curr_date

关于sql-server-2008 - 如何在 SQL Server 中将小时数添加到当前日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18518290/

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