#1

Now in my MySQL table information is numbered:

ID Name

1 Nick
2 James
3 Robin

How to make it like:

ID Name

3 Robin
2 James
1 Nick


?
Reply
#2

http://www.w3schools.com/php/php_mysql_order_by.asp

Example:
Код:
SELECT * FROM `users` ORDER BY `ID` DESC
Reply
#3

Thanks, +rep
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)