首页 > 数据库技术 > 详细

SQL 查询今天、昨天、7天内、30天的数据

时间:2021-09-07 16:35:07      阅读:16      评论:0      收藏:0      [点我收藏+]

?

 主要用到sql 函数 

DATEDIFF(datepart,startdate,enddate)
startdate=日期字段名称

技术分享图片?

技术分享图片

--查询 今日
select * from tableA where DateDiff(dd,datetime类型字段,getdate())= 0

--查询 昨日
select * from tableA where DateDiff(dd,times,getdate())= 1

--查询 本周
select * from tableA where DateDiff(dd,VoucherDate,getdate())<=7

--查询 上周
select * from tableA where DateDiff(dd,VoucherDate,getdate())>7 and DateDiff(dd,VoucherDate,getdate())<=14

--查询 本月
select * from tableA where DateDiff(mm,VoucherDate,getdate())= 0

--查询 上月
select * from tableA where DateDiff(mm,VoucherDate,getdate())= 1

--查询 本年
select * from tableA where DateDiff(yy,VoucherDate,getdate())= 0

--查询 上一年
select * from tableA where DateDiff(yy,VoucherDate,getdate())= 1

 

原文地址:https://www.cnblogs.com/webapi/p/12706349.html

?

SQL 查询今天、昨天、7天内、30天的数据

原文:https://www.cnblogs.com/songjuntao/p/15236591.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!