失效链接处理 |
处理group by 查询速度太慢的问题 数据量大 PDF 下载
本站整理下载:
相关截图:
主要内容:
实际项目中因表数据量大,发现查询速度很慢。记录此次排查和优化过程。
希望对阅读到此文章的朋友有所帮助。
表名:packet_buy_report,数据表的总记录数17235162条。
该表包含的字段:
`id` varchar(36) NOT NULL,
`log_time` bigint(20) unsigned DEFAULT NULL,
`device_id` int(11) DEFAULT NULL,
`stb_id` int(11) DEFAULT NULL,
`region_id` int(11) unsigned DEFAULT NULL,
`product_id` int(11) NOT NULL,
`product_name` varchar(40) DEFAULT NULL,
`start_time` bigint(20) unsigned DEFAULT NULL,
`end_time` bigint(20) unsigned DEFAULT NULL,
`action` int(11) DEFAULT NULL,
SQL的业务目标 : 查询设备和产品最近的日志时间,查询的SQL语句如下:
select device_id,product_id,max(log_time)
from packet_buy_report
GROUP BY device_id,product_id;
|