Forum Moderators: coopster
Eg I want all the rows to be sorted alphabetically depending on the title coloum....?
That should do the trick. You could also use ASC (ascending) depending on which way you want to sort.
SELECT * FROM table ORDER BY column
will sort alphabetically A-Z
SELECT * FROM table ORDER BY column DESC
will sort alphabetically Z-A