码迷,mamicode.com
首页 > 数据库 > 详细

SQL 查询--日期条件(今日、昨日、本周、本月。。。)

时间:2018-06-28 14:01:05      阅读:771      评论:0      收藏:0      [点我收藏+]

标签:图片   rda   src   技术   ack   日期   查询   end   ima   

主要用到sql 函数 

DATEDIFF(datepart,startdate,enddate)

技术分享图片


sql 语句,设 有 数据库表 tableA(日期字段ddate)

——查询 今日

select * from tableA where  DateDiff(dd,VoucherDate,getdate())= 0 

——查询 昨日

select * from tableA where  DateDiff(dd,VoucherDate,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

 

SQL 查询--日期条件(今日、昨日、本周、本月。。。)

标签:图片   rda   src   技术   ack   日期   查询   end   ima   

原文地址:https://www.cnblogs.com/carrot-z/p/9237915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!