注册
达梦数据库中如何改写MySQL order by in() 语法
专栏/龙山溪笔谈/ 文章详情 /

达梦数据库中如何改写MySQL order by in() 语法

myth8860 2021/07/21 2576 5 0
摘要 MySQL数据库中有order by in() 语法,移植到达梦如何改写呢?

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

评论
后发表回复

作者

文章

阅读量

获赞

扫一扫
联系客服