Is there a way to use ORDER BY to order the list backwards like start with z instead of a? If not how would I go about doing this?
DESC - orders the results in descending order.
SELECT * FROM table ORDER BY field1 DESC
cool thanks