欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql 按照时间段来获取数据的方法

程序员文章站 2024-02-21 21:55:40
时间格式为2013-03-12 查询出当天数据: 复制代码 代码如下:select * from `table` where date(时间字段) = curdate();...
时间格式为2013-03-12
查询出当天数据:
复制代码 代码如下:

select * from `table` where date(时间字段) = curdate();

查询出当月字段:
复制代码 代码如下:

select *
from `table`
where month( 时间字段) = month( now( ) ) ;

时间格式为1219876…… unix时间,只要应用“from_unixtime( )”函数
例如查询当月:
复制代码 代码如下:

select *
from `table`
where month( from_unixtime( reg_time ) ) = month( now( ) ) ;

查询上一个月的呢?变通一下!
复制代码 代码如下:

select *
from `table`
where month( from_unixtime( reg_time ) ) = month( now( ) ) -1;