Skip to content

Commit 707f0e7

Browse files
authored
Merge pull request #19656 from MicrosoftDocs/master
6/28 AM Publish
2 parents 83c9ac1 + 866a380 commit 707f0e7

File tree

3 files changed

+199
-189
lines changed

3 files changed

+199
-189
lines changed

docs/relational-databases/in-memory-oltp/a-guide-to-query-processing-for-memory-optimized-tables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Query plan for join of disk-based tables.
7979

8080
- 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.
8181

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

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

0 commit comments

Comments
 (0)