i am trying to sort mysql data with alphabeticaly like
A | B | C | D
when i click on B this query runs
select name from user order by \
You can use:
SELECT name FROM user WHERE name like 'b%' ORDER BY name