我有一个我正在尝试编写的 Sql 视图,我希望能够获取我的 DateTime 字段(称为 OrderDate),然后从当前时间中减去它(GetDate())以显示它在自 OrderDate 起的天数.有人可以帮忙吗?
I have a Sql view Im trying to write and I'd like to be able to take my DateTime Field (called OrderDate) and then subtract it from the current Time (GetDate()) to show me how long its been in days since the OrderDate. Can someone help out?
谢谢
我假设您正在使用 SQL Server,因为您提到了 T-SQL GETDATE() 函数.
I am assuming you are using SQL Server, since you mention the T-SQL GETDATE() function.
要计算两个日期之间的差异,请使用 DATEDIFF代码>函数:
For calculations on differences between two date, use the DATEDIFF function:
SELECT DATEDIFF(day, OrderDate, GETDATE())
FROM myTable
这篇关于在 SQL 查询中减去日期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
修改现有小数位信息Modify Existing decimal places info(修改现有小数位信息)
多次指定相关名称“CONVERT"The correlation name #39;CONVERT#39; is specified multiple times(多次指定相关名称“CONVERT)
T-SQL 左连接不返回空列T-SQL left join not returning null columns(T-SQL 左连接不返回空列)
从逗号或管道运算符字符串中删除重复项remove duplicates from comma or pipeline operator string(从逗号或管道运算符字符串中删除重复项)
将迭代查询更改为基于关系集的查询Change an iterative query to a relational set-based query(将迭代查询更改为基于关系集的查询)
将零连接到 sql server 选择值仍然显示 4 位而不是concatenate a zero onto sql server select value shows 4 digits still and not 5(将零连接到 sql server 选择值仍然显示 4 位而不是 5)