关联查询:一步到位还是拆分查询,哪种更有效率?
关联查询的两种实现方式
对于关联查询,可以使用 join 一步到位,或拆分成两次查表。
方式一:join 一步到位
select ... from `friendships_friendship` left outer join `auth_user` t3 on ( `friendships_friendship`.`from_user_id` = t3.`id` ) where `friendships_friendship`.`to_user_id` = 1 limit 21;
这种方式一次查询即可获取所有信息,效率更高。
方式二:拆分成两次查表
-- 获取 id SELECT ... FROM `friendships_friendship` WHERE `friendships_friendship`.`to_user_id` = 1 LIMIT 21; -- 使用 in 操作符查询 SELECT ... FROM `auth_user` T3 WHERE T3.`from_user_id` in (xxxx, xxx, xxxx) LIMIT 21;
这种方式需要两次查询,效率较低。
mysql 关联查询执行顺序
对于关联查询,mysql 会先执行 where 条件,再进行 join 操作。
在方式一中,会先找到 friendships_friendship.to_user_id = 1 的记录,再进行 join 操作。
其他注意事项
需要注意的是,如果表中数据量较大,使用的方式不同,执行效率也会有很大差异。另外,拆分查询后,需要确保两次查询的限制条件一致,才能得到正确的结果。
以上就是关联查询:一步到位还是拆分查询,哪种更有效率?的详细内容,更多请关注其它相关文章!