MySQL關於根據日期查詢資料的sql語句

2021-07-24 10:51:21 字數 1411 閱讀 6556

查詢往前7天的資料:

select * from 資料表  where  date_sub(curdate(), interval 7 day) <=  你要判斷的時間欄位名

查詢往前30天的資料:

select * from 資料表  where  date_sub(curdate(), interval 30 day) <=  你要判斷的時間欄位名

查詢在某段日期之間的資料:

select * from 資料表  where 時間欄位名 between '2016-02-01' and '2016-02-05'

查詢往前3個月的資料:

select * from 資料表  where 時間欄位名 between date_sub(now(),interval 3 month) and now()

查詢往前一年的資料:

select * from 資料表  where 時間欄位名 between date_sub(now(),interval 1 year) and now()

查詢本月的資料

select * from 資料表 where date_format(時間欄位名,'%y-%m')=date_format(now(),'%y-%m')

查詢上月的資料

select * from 資料表 where date_format(

時間欄位名,'%y-%m')=date_format(date_sub(curdate(), interval 1 month),'%y-%m')

查詢本週的資料

select * from 資料表 where yearweek(date_format(時間欄位名,'%y-%m-%d')) = yearweek(now())

查詢上週資料

select * from 資料表 where yearweek(date_format(create_time,'%y-%m-%d')) = yearweek(now())-1

希望大家發現部落格有錯誤和我提出,博主會第一時間更新文章.

謝謝.

MySQL關於根據日期查詢資料的sql語句

查詢在某段日期之間的資料 select from 資料表 where 時間欄位名 between 2016 02 01 and 2016 02 05 查詢往前3個月的資料 select from 資料表 where 時間欄位名 between date sub now interval 3 mont...

MySQL關於根據日期查詢資料的sql語句

mysql關於根據日期查詢資料的sql語句 查詢在某段日期之間的資料 select from 資料表 where 時間欄位名 between 2016 02 01 and 2016 02 05 查詢往前3個月的資料 select from 資料表 where 時間欄位名 between date s...

MySQL關於根據日期查詢資料的sql語句

查詢在某段日期之間的資料 select from 資料表 where 時間欄位名 between 2016 02 01 00 00 00 and 2016 02 05 查詢往前3個月的資料 select from 資料表 where 時間欄位名 between date sub now interv...