I want to select some data from database but instead of displaying it as:
1
2
3
I want it
3
2
1
Is it possible to select it backwards?
1
2
3
I want it
3
2
1
Is it possible to select it backwards?
| Code: |
|
SELECT name, birth FROM pet ORDER BY birth DESC; |