status 是整数  值有1、2、-1

正常写法

order by `status` desc"

但是我们如果想要按照1 2 -1的顺序排序

可以这么写

order by field(`status`,1,2,-1)