Write a SQL statement to sort the table tblItems in descending order of Stock. code example
Example: sql reverse order of results
SELECT q.*
FROM (SELECT TOP 3 *
FROM table
ORDER BY id DESC) q
ORDER BY q.id ASC