I have mysql table like following
id,sort,enabled,font,store
1,1,1,Adlib,0
2,2,1,Arial,0
3,3,1,"Arial Bold",0
4,4,1,"Arial Black",0
----------
----------
40,40,1,Harlow,0
41,41,1,"Hobby Headline",0
42,42,1,"Hobby Horse",0
----------
----------
85,85,1,"Wild West",0
86,86,1,"Zap Chance",0
87,87,1,Helvetica,0
id column is primary key. If I add a new font entry it is stored in the last row of table
How can I reorder the font column values that they are in ascending order of their name?
NOTE: I do not want select statement, I want to reorder data in the table itself.
Update : If it is not possible in MySQL(I was just curious to know), I can solve my problem with alternate approach when displaying data. Thanks for help.