gpt4 book ai didi

mysql - 何时为 MySQL (SQL) 使用 JOIN

转载 作者:可可西里 更新时间:2023-11-01 07:48:28 25 4
gpt4 key购买 nike

我无法有效理解这两个查询之间的区别。

select *
from person p, mytlc m
where p.personid = m.personid and p.personid = 3635

select *
from person p
join mytlc m on p.personid = m.personid
where p.personid=3635

在这种情况下,我认为两者都不会是性能更好的查询;但是,如果查询更复杂并处理更多数据会怎样。

谢谢!

最佳答案

如果你想找到关于这个主题的更多信息,你可以尝试googling 'join vs where' .以下是解决同一问题的其他几个问题:

  1. Inner join vs Where
  2. MySQL: Inner join vs Where
  3. http://forums.devx.com/showthread.php?t=19242

第三个引用很有趣(关于 SQL Server,但它们的行为可能相似):

If you measure this, you will most likely discover that the two versions use the exact same access plan. SQL Server tries very hard to optimize a query, and in that process, a where clause which equates columns from two tables will be converted to an inner join.

这些似乎表明连接在技术上是正确的并且比 where 更有效,但在实践中并不重要,因为优化可能会将 where 更正为连接。但是,对于不会优化的情况,最好是明确的,正如其他人所指出的,join 是正确的方法。

关于mysql - 何时为 MySQL (SQL) 使用 JOIN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6794792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com