本周:select * from table where datediff(week,C_CALLTIME,getdate())=0 --C_CALLTIME 为日期字段
本月:select * from table where datediff(Month,宋体"> 本季:select * from table where datediff(qq,getdate())=0
前半年1-6,后半年7-12:select * from table where datepart(mm,C_CALLTIME)/7 = datepart(mm,getdate())/7
昨天
select convert(varchar(10),getdate() - 1,120)
明天
最近七天
select * from tb where 时间字段 >= convert(varchar(10),getdate() - 7,宋体"> 随后七天
select * from tb where 时间字段 <= convert(varchar(10),getdate() + 7,120) and 时间字段 >= 时间字段
convert和dateadd函数结合使用就可以了。
用datediff(day,时间列,getdate())
上月
select * from tb where month(时间字段) = month(getdate()) - 1
本月
select * from tb where month(时间字段) = month(getdate())
下月
select * from tb where month(时间字段) = month(getdate()) + 1
--如果是在表中查詢
--昨天
Select * From tablename Where DateDiff(dd,DateTimCol,GetDate()) = 1
--明天
--最近七天
--随后七天
--上周
Select * From tablename Where DateDiff(wk,宋体"> --本周
--下周
--上月
Select * From tablename Where DateDiff(mm,宋体"> --本月
--下月
--------------------------------------------------------
本周
select * from tb where datediff(week,时间字段,getdate()) = 0
上周
下周
1.现在我需要得到只是日期部分,时间部分不要,sql怎么写?
2.求以下日期sql:
总结
以上是内存溢出为你收集整理的MSSQL获取昨天,本周,本月 sqlserver时间获取全部内容,希望文章能够帮你解决MSSQL获取昨天,本周,本月 sqlserver时间获取所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)