```sql select [指定的一些业务数据需要字段,含一个字段 sum 求和并除以 1000000 单位转换] from t_order_stats where is_collec = 0 where is_collect=0 and pro_removal_time between '2024-01-01 00:00:00' and '2024-09-05 23:59:59' group by order_id -- 就这样的查询在没有缓存的情况下就需要 6818ms -- 至于为什么没带其他条件是想的直接拿出来 代码里面全部去分类分组去求。 ```