《MysqL教程MysqL select in 按ID排序实现方法》要点:
本文介绍了MysqL教程MysqL select in 按ID排序实现方法,希望对您有用。如果有疑问,可以联系我们。
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 sec)
这个select在MysqL中得结果会自动按照ID升序排列,
但是我想执行"select * from test where ID in(3,5);"的结果按照in中得条件排序,即:3,5,
想得到的结果如下:
ID name
3 test3
1 test1
5 test5
请问在这样的sql在MysqL中怎么写?
网上查到sqlserver中可以用order by charindex解决,但是没看到MysqL怎么解决??请高手帮忙,谢
谢!
select * from a order by substring_index('3,2',ID,1);
试下这个good,ls正解.
order by find_in_set(ID,'3,5')
谢谢,经测试order by substring_index和order by find_in_set都可以 总结
以上是内存溢出为你收集整理的MYSQL教程Mysql select in 按id排序实现方法全部内容,希望文章能够帮你解决MYSQL教程Mysql select in 按id排序实现方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)