Skip to content

Update a-guide-to-query-processing-for-memory-optimized-tables.md #6551

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Query plan for join of disk-based tables.

- The logical operator **Inner Join** is implemented by the physical operator **Merge Join**. The other physical join types are **Nested Loops** and **Hash Join**. The **Merge Join** operator takes advantage of the fact that both indexes are sorted on the join column CustomerID.

Consider a slight variation on this query, which returns all rows from the Order table, not only OrderID:
Consider a slight variation on this query, which returns all columns from the Order table, not only OrderID column:

```sql
SELECT o.*, c.* FROM dbo.[Customer] c INNER JOIN dbo.[Order] o ON c.CustomerID = o.CustomerID
Expand Down