当前位置:首页 > Mysql教程 > 列表

mysql数据库排序order by find_in_set例子

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-20 14:39:04 浏览: 评论:0 

文章给各位整理了一个mysql数据库排序order by find_in_set例子,如果有需要深入了解order by find_in_set的用法的朋友可进入参考,mysql进行排序的时候如果需要按照原始的顺序排序,就可以使用order by find_in_set()方法,具体用法如下:

select * from ecs_goods where goods_id in ($idList) order by FIND_IN_SET(goods_id,'$idList')

这句mysql语句用到了find_in_set进行排序,意思是根据goods_id在$idList这个变量中的前后顺序进行排序,关于类似的自定义排序,还可以用MySQL自定义排序函数FIELD().

find_in_set除了可以用在order by排序外,还有另外一种用法,用在where语句中,代码如下:

  1. SELECT id, LIST, NAME FROM `test` WHERE FIND_IN_SET('daodao',`list`); --phpfensi.com 
  2.  
  3. find_in_set 

这里list可以是一个变量,也可以是一个字段名称,如果这样用就错了,代码如下:

SELECT id, LIST, NAME FROM test WHERE 'daodao' IN (LIST);

因为IN后面要接这样的IN(‘daodao’,’abcd’,’efg’).但是这里LIST是个字段,所以用FIND_IN_SET函数查找就对了.

Tags: mysql数据排序 find_in_set

分享到: