如何使 Laravel whereIn 不自动排序
How to make Laravel whereIn not sorted automatically
我的 $temp
数组是 Array ( [0] => 22 [1] => 26 [2] => 20 [3] => 24 )
或 22|26|20|24
当我这样使用whereIn
时
$robjeks = DB::table('objek')->whereIn('id', $temp)->get();
结果是20|22|24|26|
它是自动排序的。我希望它没有排序。
如何让它和22|26|20|24
一样?
感谢您的关注。
这与Laravel无关。先阅读这里:avoid Sorting by the MYSQL IN Keyword
然后,为此,您可以使用以下代码:
$temp = [22, 26, 20, 24];
$tempStr = implode(',', $temp);
$robjeks = DB::table('objek')
->whereIn('id', $temp)
->orderByRaw(DB::raw("FIELD(id, $tempStr)"))
->get();
在这种情况下,您可能存在 sql 注入的风险,因此请相应地清理数字数组。
参考:Laravel: order by where in
我认为它更多地与 SQL 而不是 Laravel 有关。如果你正在使用自动增量 id
,那么显然 22 在 26 之前被发现。如果你想改变它,你可以按照这个 link:
Laravel: order by where in
或者您自己手动排序您的查询。例如:->orderBy('name')
或其他内容。
我的 $temp
数组是 Array ( [0] => 22 [1] => 26 [2] => 20 [3] => 24 )
或 22|26|20|24
当我这样使用whereIn
时
$robjeks = DB::table('objek')->whereIn('id', $temp)->get();
结果是20|22|24|26|
它是自动排序的。我希望它没有排序。
如何让它和22|26|20|24
一样?
感谢您的关注。
这与Laravel无关。先阅读这里:avoid Sorting by the MYSQL IN Keyword
然后,为此,您可以使用以下代码:
$temp = [22, 26, 20, 24];
$tempStr = implode(',', $temp);
$robjeks = DB::table('objek')
->whereIn('id', $temp)
->orderByRaw(DB::raw("FIELD(id, $tempStr)"))
->get();
在这种情况下,您可能存在 sql 注入的风险,因此请相应地清理数字数组。
参考:Laravel: order by where in
我认为它更多地与 SQL 而不是 Laravel 有关。如果你正在使用自动增量 id
,那么显然 22 在 26 之前被发现。如果你想改变它,你可以按照这个 link:
Laravel: order by where in
或者您自己手动排序您的查询。例如:->orderBy('name')
或其他内容。