上代码
$AdminPostObj = DB::table('admin_post')->orderByRaw(DB::raw("FIND_IN_SET(post_id, '".$PoserStr. "'" . ')'))->select('post_id','admin_id')->get();
//通过 post_id 的字段做排序 如入: $PoserStr=‘1,3,2’; 则查询出的数据是按照 1,3,2,做的排序
上代码
$AdminPostObj = DB::table('admin_post')->orderByRaw(DB::raw("FIND_IN_SET(post_id, '".$PoserStr. "'" . ')'))->select('post_id','admin_id')->get();
//通过 post_id 的字段做排序 如入: $PoserStr=‘1,3,2’; 则查询出的数据是按照 1,3,2,做的排序