Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie erstelle ich eine schnellere Größt-n-pro-Gruppe-Abfrage?

versuchen Sie Folgendes:

SELECT    district, id, COUNT(b.district)
FROM      adverts a INNER JOIN adverts b
              ON a.district = b.district
WHERE     b.id > a.id
GROUP BY  district, id 
HAVING    COUNT(b.district) < 5
ORDER BY  district, id DESC 

per Definition Joins sind schneller als subqueries .