本文内容来自YashanDB官网,原文内容请见https://www.yashandb.com/newsinfo/7664893.html?templateId=171...

概述
MySQL field函数常用于自定义排序,改写到YashanDB一般用decode或者case进行改写。

详情
MySQL的field用法
MySQL的field函数一般用于对SQL中查询结果集进行指定顺序排序,例如以下查询对于c2列,如果c2的值等于'plane','train','bicycle'其中之一,则以 'plane','train','bicycle'的顺序编号1,2,3进行排序,否则顺序编号为0,排在最前。请看以下示例:

mysql> select c1, c2 from t1 order by field (c2, 'plane','train','bicycle');

+----+---------+

| c1 | c2 |

+----+---------+

| 1 | car |

| 5 | rocket |

| 2 | plane |

| 4 | train |

| 3 | bicycle |

+----+---------+

5 rows in set (0.00 sec)

表和数据

create table t1(c1 int primary key, c2 varchar(100));

insert into t1 values(1,'car'),(2,'plane'),(3,'bicycle'),(4,'train'),(5,'rocket');

commit;

YashanDB的改写方法
可以用decode或者case进行改写

SQL> select c1, c2 from t1 order by decode (c2, 'plane', 1, 'train', 2, 'bicycle', 3, 0);

 

         C1 C2

----------- ----------------------------------------------------------------

          1 car

          5 rocket

          2 plane

          4 train

          3 bicycle

 

5 rows fetched.

 

SQL> select c1, c2 from t1 order by case c2 when 'plane' then 1 when 'train' then 2 when 'bicycle' then 3 else 0 end;

 

         C1 C2

----------- ----------------------------------------------------------------

          1 car

          5 rocket

          2 plane

          4 train

          3 bicycle

 

5 rows fetched.

YashanDB
1 声望0 粉丝

崖山数据库系统YashanDB是深圳计算科学研究院自主设计研发的新型数据库管理系统,融入原创的有界计算、近似计算、并行可扩展和跨模融合计算理论,可满足金融、政企、能源等关键行业对高性能、高并发及高安全性的...