sql查詢今天,昨天,七天,三十天內的資料

2021-08-01 11:00:38 字數 645 閱讀 3894

今天有個需求需要從查詢當天所有的資料,就去網上搜了一下,並把其他幾個通過時間條件查詢也記錄下來

1.查詢今天所有的資料

select * from customer_loan where datediff(dd,datetime型別字段,getdate())=0

2.查詢昨天的所有資料

select * from customer_loan where datediff(dd,datetime型別字段,getdate())=1

3.查詢7天內所有的資料

select * from customer_loan where datediff(dd,datetime型別字段,getdate())<=7

4.查詢30天內所有資料

select * from customer_loan where datediff(dd.datetime型別字段,getdate())<=30

5.本月所有的資料

select * from customer_loan where datediff(mm.datetime型別字段,getdate())=0

6.查詢本年的所有資料

select * from customer_loan where datediff(yy,datetime型別欄位.getdate())=0

sql語句查詢昨天,今天,最近七天,最近三十天資料

今天的所有資料 select from 表名 where to days 時間欄位名 to days now 昨天的所有資料 select from 表名 where to days now to days 時間欄位名 1 7天內的所有資料 select from 表名 where date sub...

SQL查詢今天 昨天 7天內 30天

今天的所有資料 select from 表名 where datediff dd,datetime型別字段,getdate 0 昨天的所有資料 select from 表名 where datediff dd,datetime型別字段,getdate 1 7天內的所有資料 select from 表...

SQL查詢今天 昨天 7天內 30天

今天的所有資料 select from 表名 where datediff dd,datetime型別字段,getdate 0 昨天的所有資料 select from 表名 where datediff dd,datetime型別字段,getdate 1 7天內的所有資料 select from 表...