laravel 4 - how to Limit (Take and Skip) for Eloquent ORM?(laravel 4 - 如何限制(采取和跳过)雄辩的 ORM?)
问题描述
你能不能限制一个 Eloquent ORM 查询,比如使用 take()
和 skip()
以便生成的 mysql 查询也受到限制,并且不必返回整个数据集?
Can you limit an Eloquent ORM query like using take()
and skip()
so that the resulting mysql query is also limited, and it doesn't have to return the entire dataset?
如果是,你会如何修改:
If so, how would you modify:
$test = User::find(1)->games->toArray();
要包括 limit 3 offset 2
?
users games userGames
-- id -- id -- user_id
-- name -- name -- game_id
-- steam_id
型号:
class User extends Eloquent {
public function games() {
return $this->belongsToMany('Game', 'userGames', 'user_id', 'game_id');
}
}
class Game extends Eloquent {
public function users() {
return $this->belongsToMany('User', 'userGames', 'user_id', 'game_id');
}
}
<小时>
查询生成器中的限制
使用常规的 Laravel Query Builder 我可以获得属于 id 1 的 user
的所有 games
,并用 限制结果>take()
和 skip()
:
Limit in Query Builder
Using the regular Laravel Query Builder I can get all games
that belong to user
of id 1, and limit the result with take()
and skip()
:
$test = DB::table('games')
->join('userGames', 'userGames.game_id', '=', 'games.id')
->where('userGames.user_id', '=', '1')->take(3)->skip(2)->get();
通过监听 illuminate.query
事件我可以看到由此生成的查询是:
By listening to the illuminate.query
event I can see that the query generated by this is:
select * from `games`
inner join `userGames`
on `userGames`.`game_id` = `games`.`id`
where `userGames`.`user_id` = ?
limit 3 offset 2
Eloquent ORM 中的限制
当我尝试用 Eloquent 重新创建相同的查询时:
Limit in Eloquent ORM
When I try to recreate the same query with Eloquent:
$test = User::find(1)->games->take(2)->toArray();
我可以使用 take
但添加 skip
会导致错误.此外,生成的查询实际上并不包含限制:
I'm able to use take
but adding skip
causes an error. Also the resulting query does not actually contain the limit:
select `games`.*, `userGames`.`user_id` as `pivot_user_id`,
`userGames`.`game_id` as `pivot_game_id` from `games`
inner join `userGames`
on `games`.`id` = `userGames`.`game_id`
where `userGames`.`user_id` = ?
所以看起来是先查询整个结果,在处理大型数据集时并不理想.
So it seems that the entire result is being queried first, which is not ideal when dealing with large data sets.
是否可以限制 Eloquent ORM 查询,以便在 MYSQL 查询级别也限制结果,相当于 limit 3 offset 2
?
Is it possible to limit an Eloquent ORM query so that at the MYSQL Query level it also limits the result, equivalent to limit 3 offset 2
?
推荐答案
User::find(1)->games()->take(3)->skip(2)->get();
我认为这应该给你你的收藏.:)
I think this should give you your collection. :)
->games
将为您提供一个集合,其中 ->games()
将提供一个查询构建器实例.
->games
will give you a collection, where ->games()
will offer a query builder instance.
享受 Laravel!
Enjoy Laravel!
这篇关于laravel 4 - 如何限制(采取和跳过)雄辩的 ORM?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:laravel 4 - 如何限制(采取和跳过)雄辩的 ORM?
基础教程推荐
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01