Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Order byレコードのソートに使用しています。すべてのソートで最後の位置で NULL レコードを選択したい。例えば。
Order by
ASC - {1,2,3,4,5,6,7,NULL,NULL,NULL} DESC - {7,6,5,4,3,2,1,NULL,NULL,NULL}
Oracleクエリでこれを行う方法は?
order by 句は次のようになります。
説明
order by <field_name> desc nulls last;
昇順
order by <field_name> asc nulls last;
ASC -
ORDER BY NVL(field, 10000000); <-- a maximum big constant here
説明 -
ORDER BY NVL(field, 0) DESC;