1、包括今天在内的前10天数据
select * from 表名 where (to_days(now())
- to_days(from_unixtime(13位时间戳的字段 / 1000,"%Y-%m-%d"))) <= 9;
2、今天数据
select * from 表名 where (to_days(now())
- to_days(from_unixtime(13位时间戳的字段 / 1000,"%Y-%m-%d"))) <= 0;
3、今天与昨天数据
select * from 表名 where (to_days(now())
- to_days(from_unixtime(13位时间戳的字段 / 1000,"%Y-%m-%d"))) <= 1;
网友评论