1. 程式人生 > >SQL 查詢過去時間內的資料

SQL 查詢過去時間內的資料

例如:

  今天的所有資料:select * from 表名 where DateDiff(dd,開始時間,getdate())=0

  昨天的所有資料:select * from 表名 where DateDiff(dd,開始時間,getdate())=1

  7天內的所有資料:select * from 表名 where DateDiff(dd,開始時間,getdate())<=7

  30天內的所有資料:select * from 表名 where DateDiff(dd,開始時間,getdate())<=30

  本月的所有資料:select * from 表名 where DateDiff(mm,開始時間,getdate())=0

  本年的所有資料:select * from 表名 where DateDiff(yy,開始時間,getdate())=0

 

DATEDIFF 函式

DATEDIFF(datepart,startdate,enddate)

startdate 和 enddate 引數是合法的日期表示式。

datepart 引數可以是下列的值: