📜  按 2 desc 排序 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:08.760000             🧑  作者: Mango

代码示例1
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.