简体   繁体   English

外申请和左加入

[英]Outer apply and left join

I am using outer apply in sql server. 我在SQL Server中使用外部应用。 can someone please explain if there is any performance difference between Outer Apply and Left Join ? 有人可以解释一下“外部应用”和“左连接”之间的性能差异吗?

Your question is not really correct. 您的问题不是真的正确。

APPLY uses to join table with table-valued functions APPLY用于通过表值函数将表联接

JOIN we use to join two tables. JOIN我们用来联接两个表。

You may find more information in MSDN articles: 您可以在MSDN文章中找到更多信息:

APPLY http://technet.microsoft.com/en-us/library/ms175156(v=sql.105).aspx . 应用http://technet.microsoft.com/zh-cn/library/ms175156(v=sql.105).aspx

JOIN http://technet.microsoft.com/en-us/library/ms191517(v=sql.105).aspx 加入http://technet.microsoft.com/en-us/library/ms191517(v=sql.105).aspx

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM