注册
登录

您现在的位置是:首页 > 学无止境

mysql in 排序

木木彡82 2010-12-17 10:27:00 476人围观
mysql in 排序

转载自:http://www.neatstudio.com/show-1554-1.shtml

 

SQL: select * from table where id IN (3,6,9,1,2,5,8,7);

 

这样的情况取出来后,其实,id还是按1,2,3,4,5,6,7,8,9,排序的,但如果我们真要按IN里面的顺序排序怎么办?SQL能不能完成?是否需要取回来后再foreach一下?

其实mysql就有这个方法

sql: select * from table where id IN (3,6,9,1,2,5,8,7) order by field(id,3,6,9,1,2,5,8,7);

 

出来的顺序就是指定的顺序了

文章评论

  • 登录后评论

点击排行