SQL语句怎么查出上一周和上一月的记录
2个回答
展开全部
---查上周记录 select * from 你的表 where 你的日期字段 between dateadd(d,-7,getdate()) and getdate() --查上月记录 select * from 你的表 where convert(varchar(4),year(你的日期字段))+convert(varchar(2),month(你的日期字段))= convert(varchar(4),year(getdate()))+convert(varchar(2),month(getdate()))
展开全部
上一周
select * from table_a where col_date between next_day(sysdate,'Monday') - 7 and next_day(sysdate,'Sunday') -7
上一个月:
select * from table_a where col_date between last_day(add_months(sysdate-2))+1 and
last_day(add_months(sysdate,-1))
select * from table_a where col_date between next_day(sysdate,'Monday') - 7 and next_day(sysdate,'Sunday') -7
上一个月:
select * from table_a where col_date between last_day(add_months(sysdate-2))+1 and
last_day(add_months(sysdate,-1))
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询