mysql groupby优化_如何使用GROUPBY MySQL查询优化COUNT?

bd96500e110b49cbb3cd949968f18be7.png

I have 5M records in eus table and 121 records in es table. I am doing a left join but the COUNT query is making my query very slow. How can I optimize this?

public static function getAllActiveEvaluationSymptomsWithNameForDataTable(){

$queryBuilder = new Builder();

$queryBuilder

->from(array('es' => static::class))

->leftJoin('EvaluationUserSymptom', 'es.id = eus.eb_evaluation_symptom_id','eus')

->columns('es.id, es.title, COUNT(eus.eb_evaluation_symptom_id) AS counts')

->groupBy('eus.eb_evaluation_symptom_id')

->where('es.is_active = 1');

return $queryBuilder;

}

Raw query with Explain:

EXPLAIN

SELECT es.id AS id, es.title AS title,

COUNT(eus.eb_evaluation_symptom_id) AS counts,

eus.date_created AS date_created

FROM eb_evaluation_symptom AS es

LEFT JOIN eb_evaluation_user_symptom AS eus

ON es.id = eus.eb_evaluation_symptom_id

WHERE es.is_active = 1

GROUP BY eus.eb_evaluation_symptom_id;

Output of Explain:

QFE6b.png

Explain Visual View:

ClgIj.png

This full table scan of count is making the problem.

Note: All JOINs and necessary columns fields are having proper indexes.

解决方案

A correlated subquery can be a fast method:

SELECT es.id, es.title,

(select count(*)

from eb_evaluation_user_symptom eus

where es.id = eus.eb_evaluation_symptom_id

) as cnt

FROM eb_evaluation_symptom es

WHERE es.is_active = 1 ;

For performance, you want an index on eb_evaluation_user_symptom(eb_evaluation_symptom_id).

An index on eb_evaluation_symptom won't be of much help, because that table is so small.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值