
SQL Server
文章平均质量分 77
Warren
DW/BI modeler ETL architect
展开
-
SQL Server 执行连接的方式 - Hash Join
The hash join has two inputs: the build input and probe input. The query optimizer assigns these roles so that the smaller of the two inputs is the build input.Hash joins are used for many types of转载 2013-06-25 13:13:32 · 1141 阅读 · 0 评论 -
SQL Server 执行连接的方式 - Nested Loops Joins
The nested loops join, also called nested iteration, uses one join input as the outer input table (shown as the top input in the graphical execution plan) and one as the inner (bottom) input table.转载 2013-06-25 13:08:09 · 733 阅读 · 0 评论 -
SQL Server 执行连接的方式 - Merge Join
The merge join requires both inputs to be sorted on the merge columns, which are defined by the equality (ON) clauses of the join predicate. The query optimizer typically scans an index, if one exists转载 2013-06-25 13:09:40 · 1040 阅读 · 0 评论