Mysql select in 按id排序實現方法

2022-10-04 10:12:09 字數 1062 閱讀 6544

表結構如下:

mysql> select * from test;

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

| id | name |

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

| 1 | test1 |

| 2 | test2 |

| 3 | test3 |

| 4 | test4 |

| 5 | test5 |

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

執行以下sql:

mysql> select * from test where id in(3,1,5);

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

| id | name |

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

| 1 | test1 |

| 3 | test3 |

| 5 | test5 |

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

3 rows in set (0.00 swww.cppcns.comec)

這個select在mysql中得結果會自動按照id公升序排列,

但是我想執行"select * frwww.cppcns.comom test where id in(3,1,5);"的結果按照in中得條件排序,即:3,1,5,

想得到的結果如下:

id name

3 1 test1

5 test5

請問在這樣的sql在mysql中怎麼寫?

網上查到sqlserver中可以用order by charindex解決,但是沒看到mysql怎麼解決??請高手幫忙,謝

謝! select * from a order by substring_indihlmmdex('3,1,2',id,1);

試下這個good,ls正解。

order by find_in_set(id,'3,1,5')

謝謝,經測試order by su和order by find_in_set都可以

本文標題: mysql select in 按id排序實現方法

本文位址:

mysql 排序id mysql怎麼按特定id排序

mysql如何按特定id排序 mysql如何按特定id排序 set foreign key checks 0 table structure for p drop table if exists p create table p id int 11 not null auto increment,n...

自增 i與i 自減 i與i

a 前置自增 變數值先 1,再計算表示式的值 前自增,先增再用 a 後置自增 先計算表示式的值 變數值後 1 後自增,先用再增 a 後置自減 先計算表示式的值 變數值後 1 後自減,先用再減 a 前置自減 變數值先 1,再計算表示式的值 前自減,先減再用 當自增自減遇上邏輯與和邏輯或 因邏輯與一非即...

按位AND和按位OR

description 已知長度為n的兩個位串a和b,求它們的按位and和按位or。input 多組測試資料,每組測試資料第1行輸入位串長度n 0 n 64 第2行輸入n個以空格隔開的取值為0或1的整數表示位串a,第3行輸入n個以空格隔開的取值為0或1的整數表示位串b。output 每組測試資料佔兩...