Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como você limita o grupo por linhas em uma consulta mysql?


Isso funciona para mim:
SELECT type, size, COUNT(*) AS rows
FROM clothes
WHERE size = 'large'
GROUP BY type
LIMIT 0, 5

Resulta em:
type      size   rows
------------------------
Circle    Large     4
Oval      Large     1
Square    Large     1
Star      Large     1
Triangle  Large     2

LIMIT deve ser aplicado após GROUP BY, então não entendo o problema.