在 MySQL IN 子句中获取返回的记录集顺序?
对于返回的记录集顺序,您需要使用 FIND_IN_SET() 函数。
例如,让我们创建一个表。
mysql> create table returnRecordSetOrderDemo -> ( -> Id int, -> Name varchar(20) -> ); Query OK, 0 rows affected (1.01 sec)
使用插入命令在表中插入一些记录。
查询如下。
mysql> insert into returnRecordSetOrderDemo values(100,'John'); Query OK, 1 row affected (0.13 sec) mysql> insert into returnRecordSetOrderDemo values(130,'Carol'); Query OK, 1 row affected (0.13 sec) mysql> insert into returnRecordSetOrderDemo values(103,'Bob'); Query OK, 1 row affected (0.17 sec) mysql> insert into returnRecordSetOrderDemo values(134,'Sam'); Query OK, 1 row affected (0.27 sec) mysql> insert into returnRecordSetOrderDemo values(102,'Larry'); Query OK, 1 row affected (0.15 sec) mysql> insert into returnRecordSetOrderDemo values(145,'David'); Query OK, 1 row affected (0.18 sec)
使用 select 语句从表中显示所有记录。
查询如下。
mysql> select *from returnRecordSetOrderDemo;
以下是输出。
+------+-------+ | Id | Name | +------+-------+ | 100 | John | | 130 | Carol | | 103 | Bob | | 134 | Sam | | 102 | Larry | | 145 | David | +------+-------+ 6 rows in set (0.00 sec)
以下是 MySQL 'IN' 子句和返回的记录集顺序的查询。
mysql> select *from returnRecordSetOrderDemo -> where Id in(100,145,103,130) -> order by FIND_IN_SET(Id,'100,145,103,130');
以下是输出。
+------+------- | Id | Name | +------+-------+ | 100 | John | | 145 | David | | 103 | Bob | | 130 | Carol | +------+-------+ 4 rows in set (0.00 sec)
广告