I'd like to make an query such as:
select * from somefield
order by name
The order will ofcourse be alphabetical and i'd like for each letter of the alphabet to be showed only 5 hits. Is this possible with the query itself or should i be using php to make queries for each letter of the alphabet?
The number of rows returned this way can only be 5 x 26 rows long max.