Answers for "order by 2 desc"

0

order by 2 desc

SELECT name, credit_limit FROM customers ORDER BY 2 DESC, 1; In this example, the position of name column is 1 and credit_limit column is 2. In the ORDER BY clause, we used these column positions to instruct the Oracle to sort the rows.
Posted by: Guest on February-26-2021

Browse Popular Code Answers by Language