mysql查某一天数据_MySQL中, 如何查询某一天, 某一月, 某一年的数据

本文介绍了如何使用MySQL查询特定日期范围内的数据,包括当天、昨天、近7天、近30天、本月、上一月、本年、上年、本周、上周、上个月以及距离当前6个月的数据。示例查询涉及了to_days、date_sub、curdate、date_format、quarter、yearweek等函数。
摘要由CSDN通过智能技术生成

转自:https://www.cnblogs.com/azhqiang/p/6702950.html

今天

2bf81854c034349bb3043c3f145ce284.png

select * from 表名 where to_days(时间字段名) = to_days(now());

昨天(包括昨天和今天的数据)

2bf81854c034349bb3043c3f145ce284.png

select * from 表名 where to_days( now( ) ) - to_days( 时间字段名) <= 1

昨天(只包括昨天)

2bf81854c034349bb3043c3f145ce284.png

select * from 表名 where datediff(字段,now())=-1; -- 同理,查询前天的就是-2

近7天

2bf81854c034349bb3043c3f145ce284.png

select * from 表名 where date_sub(curdate(), interval 7 day) <= date(时间字段名)

近30天

2bf81854c034349bb3043c3f145ce284.png

select * from 表名 where date_sub(curdate(), interval 30 day) <= date(时间字段名)

本月

2bf81854c034349bb3043c3f145ce284.png

select * from 表名 where date_format( 时间字段名, '%y%m' ) = date_format( curdate( ) , '%y%m' )

上一月

2bf81854c034349bb3043c3f145ce284.png

select * from 表名 where period_diff( date_format( now( ) , '%y%m' ) , date_format( 时间字段名, '%y%m' ) ) =1

查询本季度数据

2bf81854c034349bb3043c3f145ce284.png

select * from `ht_invoice_information` where quarter(create_date)=quarter(now());

查询上季度数据

2bf81854c034349bb3043c3f145ce284.png

select * from `ht_invoice_information` where quarter(create_date)=quarter(date_sub(now(),interval 1 quarter));

查询本年数据

2bf81854c034349bb3043c3f145ce284.png

select * from `ht_invoice_information` where year(create_date)=year(now());

查询上年数据

2bf81854c034349bb3043c3f145ce284.png

select * from `ht_invoice_information` where year(create_date)=year(date_sub(now(),interval 1 year));

查询当前这周的数据

2bf81854c034349bb3043c3f145ce284.png

select name,submittime from enterprise where yearweek(date_format(submittime,'%y-%m-%d')) = yearweek(now());

查询上周的数据

2bf81854c034349bb3043c3f145ce284.png

select name,submittime from enterprise where yearweek(date_format(submittime,'%y-%m-%d')) = yearweek(now())-1;

查询上个月的数据

2bf81854c034349bb3043c3f145ce284.png

select * from user where date_format(pudate,'%y%m') = date_format(curdate(),'%y%m') ;

select * from user where weekofyear(from_unixtime(pudate,'%y-%m-%d')) = weekofyear(now())

select * from user where month(from_unixtime(pudate,'%y-%m-%d')) = month(now())

select * from user where year(from_unixtime(pudate,'%y-%m-%d')) = year(now()) and month(from_unixtime(pudate,'%y-%m-%d')) = month(now())

select * from user where pudate between 上月最后一天 and 下月第一天

查询当前月份的数据

2bf81854c034349bb3043c3f145ce284.png

select name,submittime from enterprise where date_format(submittime,'%y-%m')=date_format(now(),'%y-%m')

查询距离当前现在6个月的数据

2bf81854c034349bb3043c3f145ce284.png

select name,submittime from enterprise where submittime between date_sub(now(),interval 6 month) and now();

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值