Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 google 上找到了在 X 天内选择行的方法,但是我的datetimeSQL Server 2008 表中有一个列,并且希望datetime在过去 30 分钟内获得具有 a 的行。
datetime
谁能告诉我如何做到这一点?
谢谢。
WHERE column >= DATEADD(mi, -30, GETDATE())
使用日期添加
select * from yourtable where DateCol > DateADD(mi, -30, GetDate())
使用DATEADD或DATEDIFF