1. 程式人生 > >oracle 條件排序

oracle 條件排序

<pre name="code" class="html">A、不存在到期日期的資料,按照“封閉期滿日”正序排列在頁面最前面;
B、存在到期日期的資料,正序排列,在沒有到期日期的資料的下面。
order by expireDate nulls first ,closeDate
select * from dictionary t order by case when t.type_code ='1007' then 1 when t.type_code='1000' then 2 end ;