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 \
MySQL solution:
select Name from Employee order by Name ;
Order by will order the names from a to z.