MySql 时间操作(今天,昨天,7天,30天,本月,上月)
1 、 查看当天日期
selec t current_date();
2、 查看当天时间
selec t current_time();
3、查看当天时间日期
selec t current_timestamp();
4、查询当天记录
selec t * from 表名 where to_days(时间字段名) = to_days(now());
5、查询昨天记录
selec t * FROM 表名 WHERE TO_DAYS( NOW( ) ) – TO_DAYS( 时间字段名) <= 1
6、查询7天的记录
selec t * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(时间字段名)
7、查询近30天的记录
selec t * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= date(时间字段名)
8、查询本月的记录
selec t * FROM 表名 WHERE DATE_FORMAT( 时间字段名, ‘%Y%m’ ) = DATE_FORMAT( CURDATE( ) , ‘%Y%m’ )
9、查询上一月的记录
selec t * FROM 表名 WHERE PERIOD_DIFF( date_format( now( ) , ‘%Y%m’ ) , date_format( 时间字段名, ‘%Y%m’ ) ) =1