Computer Science Canada Reading the database backward |
Author: | Homer_simpson [ Thu Aug 28, 2003 4:06 pm ] |
Post subject: | Reading the database backward |
Possible or not? if it's not possible i guess i'll have to read all the database into an array then view the array backward... here's the reason i'm doing this: http://backstabbers.no-ip.com/viewfiles.php right now it views my files from oldest to newest i need it to be from newest to olders... |
Author: | Amailer [ Thu Aug 28, 2003 4:59 pm ] |
Post subject: | |
use order by DESC or ASC i.e: SELECT * FROM table_name ORDER BY name DESC; |
Author: | Homer_simpson [ Thu Aug 28, 2003 9:02 pm ] |
Post subject: | |
+10 bits TY |
Author: | Amailer [ Fri Aug 29, 2003 11:08 am ] |
Post subject: | |
np thx |