数据库字段,拼接id 查询是否包含某个id
where(Db::raw("FIND_IN_SET(" . $category_id . ",`category_id`)"));
//or
$where[]=['','exp',FIND_IN_SET(" . $category_id . ",`category_id`)];
//查找status=0的,否则不统计数量 count数量等于status=0的数量 则排序为0,否则为1
field('count(status=0 or NULL) as order_count,if(count=count(status=0 or NULL),0,1) as add_sort')->order('add_sort desc')
//查找status=0的,否则不统计数量
//count数量等于status=0的数量 则排序为0,否则为1