You can order MySQL results using "ORDER BY" 1. ORDER BY column_name ASC , 2. ORDER BY column_name DESC, 3. ORDER BY RAND().
1. ORDER BY column_name ASC is order by ascending.
2. ORDER BY column_name DESC is order results by descending.
3. ORDE BY RAND() is order results by random.
If you're not set this up the default is order results by ascending.
|