当前位置:数据库 > MySQL >>

mysql语句查询当天/最近七天/一个月的数据


今天的所有数据:select * from 表名 where DateDiff(day,datetime字段,getdate())=0
 
昨天的所有数据:select * from 表名 where DateDiff(day,datetime字段,getdate())=1
 
7天内的所有数据:select * from 表名 where DateDiff(day,datetime字段,getdate())<=7
 
30天内的所有数据:select * from 表名 where DateDiff(day,datetime字段,getdate())<=30
 
本月的所有数据:select * from 表名 where DateDiff(mm,datetime字段,getdate())=0
 
本年的所有数据:select * from 表名 where DateDiff(yy,datetime字段,getdate())=0

 
DATEDIFF() 函数返回两个日期之间的时间。

 

mysql 用法:DATEDIFF(startdate,enddate)

startdate 和 enddate 参数是合法的日期表达式。

 

sql server 用法:DATEDIFF(datepart,startdate,enddate)

startdate 和 enddate 参数是合法的日期表达式。

datepart 参数可以是下列的值:



 

使用:

SELECT DATEDIFF('2008-12-29','2008-12-30') AS DiffDate

1

SELECT DATEDIFF('2008-12-30','2008-12-29') AS DiffDate

-1


CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,