mysql数据自定义排序查询

 以前做查询排序,以某个字段进行排序,但是需求需要的顺序和字段的顺序不一致。

例如:

status字段有值1,2,3

需求是排序2,1,3.

那通常使用的order by ' status' asc/desc 就失去了效果。

方法1:

order by FIELD(is_audit,2,1,3) asc

方法2:

ORDER BY casewhen name like '2' then 2when name like '1' then 1when name like '3' then 3end

方法3:

汉字排序

order by charindex(NAME,‘张三李四王五赵六’)asc

方法4:

thinkphp5的自定义排序

$de = new \think\db\Expression('field(lottery_order.winClass, "一等奖", "二等奖", "三等奖", "四等奖", "五等奖", "六等奖", "七等奖", "八等奖", "九等奖")');

Db::table('')->where($Where) ->order($de)->select();

 

你可能感兴趣的:(数据库,sql)