sql function sort code example
Example 1: sql reverse order of results
SELECT q.*
FROM (SELECT TOP 3 *
FROM table
ORDER BY id DESC) q
ORDER BY q.id ASC
Example 2: sql desc
Used with ORDER BY to return the data in descending order.
Example: Raddish, Peaches, Bananas, Apples