sql語句查詢到上週、上個月的資料
前言:先前我都是用程式去處理這個功能,但是後面覺得有點太麻煩,就乾脆用sql來查詢到上個月的資料
上個月:
select
*from
user_lesson_detail_bean
where
date_format( create_date,
'%y %m'
)= date_format(
date_sub( curdate(),
interval
1month),
'%y %m'
)
上週 :
select
tu.tu_id as id,
tu.tu_createdate as createdate
from
t_user tu
where
yearweek
(date_format
( tu.tu_createdate,
'%y-%m-%d'))
=yearweek
(now()
)-1
MySQL查詢本週 上週 本月 上個月份的資料
mysql查詢的方式很多,下面為您介紹的mysql查詢實現的是查詢本週 上週 本月 上個月份的資料,如果您對mysql查詢方面感興趣的話,不妨一看。查詢當前這週的資料 selectname,submittimefromenterprisewhereyearweek date format submi...
MySQL查詢本週 上週 本月 上個月份的資料
今天 select from 表名 where to days 時間字段 to days now 昨天 select from 表名 where to days now to days 時間字段 1 近7天 select from 表名 where date sub curdate interval...
MySQL查詢本週 上週 本月 上個月份資料
mysql查詢本週 上週 本月 上個月份資料的sql mysql查詢的方式很多,下面為您介紹的mysql查詢實現的是查詢本週 上週 本月 上個月份的資料,如果您對mysql查詢方面感興趣的話,不妨一看 查詢當前這週的資料 select name,submittime from enterprise ...