I wanted to limit my query per category, I've seen a lot of same topic here but too complicated so I will ask another.
for example I have
id       title        category
1        one          number
2        two          number
3        three        number  
4        four         number
5        a            letter
6        b            letter
7        c            letter
and I wanted to limit my query, let say 2 per category so I have on my output like these
one
two
a
b
 
     
     
    