core php order by asc code example
Example 1: MySQL ORDER BY
SELECT
select_list
FROM
table_name
ORDER BY
column1 [ASC|DESC],
column2 [ASC|DESC],
...;
Example 2: sql desc
Used with ORDER BY to return the data in descending order.
Example: Raddish, Peaches, Bananas, Apples