sql >> Base de Datos >  >> RDS >> Mysql

SQL:dame 3 hits para cada tipo solamente

select id, title, type
from   (select id, title, type,
               @num := if(@group = type, @num + 1, 1) as row_number,
               @group := type as dummy
        from   your_table
        order by type, title) as x
where  row_number <= 3

(Utiliza un artículo diferente en el mismo sitio que La respuesta de Martin Wickman !)