Skip to content
Advertisement

Optimize Query Mysql to count data in each district

i have this query for calculate success total in each district. this query works but its take until 2min to output data, i have 15k rows in orders.

the output should be like this

enter image description here

can you help me to improve the peformance? Thanks

Advertisement

Answer

Try performing the grouping/calculation in a joined “derived table” instead of a “correlated subquery”

“Correlated subqueries” are often a source of poor performance.

Other notes, I prefer to use COALESCE() because it is ANSI standard and available in most SQL implementations now. Single quotes are more typically used to denote strings literals.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement