MySQL数据库中有一种特殊的语法,order by if() 和order by in(),可以在order by子句中加入过滤条件,将符合条件的数据放到结果集的最前面或者最后面,那么在达梦数据库中该如何做呢?
create table test_in(id int,type int);
insert into test_in values(1,1);
insert into test_in values(2,2);
insert into test_in values(3,2);
insert into test_in values(4,3);
insert into test_in values(5,4);
insert into test_in values(6,6);
insert into test_in values(7,5);
insert into test_in values(8,7);
--MySql语法把 type 为2和3的值放到结果集的最前面
select * from test_in order by type in(2,3);
--达梦数据库改写方法,order by子句中加入case语句来做条件判断
select
id,
type
from
test_in
order by
case when type in(2, 3) then 0 else 1 end,
type
文章
阅读量
获赞