使用 JOIN 时的 WHERE 子句与 ON

WHERE Clause vs ON when using JOIN(使用 JOIN 时的 WHERE 子句与 ON)
本文介绍了使用 JOIN 时的 WHERE 子句与 ON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有以下 T-SQL 代码:

Assuming that I have the following T-SQL code:

SELECT * FROM Foo f
INNER JOIN Bar b ON b.BarId = f.BarId;
WHERE b.IsApproved = 1;

下面的也返回相同的一组行:

The following one also returns the same set of rows:

SELECT * FROM Foo f
INNER JOIN Bar b ON (b.IsApproved = 1) AND (b.BarId = f.BarId);

这可能不是最好的例子,但这两者之间有什么性能差异吗?

This might not be the best case sample here but is there any performance difference between these two?

推荐答案

不,查询优化器足够聪明,可以为两个示例选择相同的执行计划.

No, the query optimizer is smart enough to choose the same execution plan for both examples.

您可以使用SHOWPLAN来检查执行计划.

You can use SHOWPLAN to check the execution plan.

尽管如此,您应该将所有连接连接放在 ON 子句上,并将所有限制放在 WHERE 子句上.

Nevertheless, you should put all join connection on the ON clause and all the restrictions on the WHERE clause.

这篇关于使用 JOIN 时的 WHERE 子句与 ON的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)