case
您可以在排序中使用表达式:
order by (case when id like '%0000' then 1
when type = 'WAREHOUSE' then 2
else 3
end), id
这也用于id
在三个组内进行排序。
注意:如果id
是数字而不是字符串,我建议:
order by (case when mod(id, 10000) = 0 then 1
when type = 'WAREHOUSE' then 2
else 3
end), id
[由 LF 编辑]
这是您的 ORDER BY 返回的内容,而这不是 OP 想要的:
SQL> with locations (id, type) as
2 (select 1000 , 'STORE' from dual union all
3 select 11001, 'STORE' from dual union all
4 select 20000, 'STORE' from dual union all
5 select 1181 , 'WAREHOUSE' from dual union all
6 select 12002, 'STORE' from dual
7 )
8 select id, type
9 from locations
10 order by (case when id like '%0000' then 1
11 when type = 'WAREHOUSE' then 2
12 else 3
13 end), id;
ID TYPE
---------- ---------
20000 STORE
1181 WAREHOUSE
1000 STORE
11001 STORE
12002 STORE
SQL>
Gordon 的评论:如果 1000 行是 10000,上面应该可以工作。