有没有办法进行ORDER BY FIELD查询?这就是我现在所拥有的。
$sets = DB::connection('mysql')
->table('sets')
->orderBy('type', 'asc')
->orderBy('releaseDate', 'asc')
->select('code', 'type', 'name')
->get();
或者我是否必须直接编写MySQL?
答案 0 :(得分:1)