MySql 按时间段查询数据方法(实例说明)
程序员文章站
2024-02-10 12:38:46
时间格式为2008-06-16 查询出当天数据: select * from `table` where date(时间字段) = curdate(); 查询出当月字段:...
时间格式为2008-06-16
查询出当天数据:
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;
就这么简单,复杂的以后再补充!
查询出当天数据:
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;
就这么简单,复杂的以后再补充!
上一篇: jQuery模拟淘宝购物车功能
下一篇: 微信小程序通过js实现瀑布流布局详解