Skip to content

Commit e5145f0

Browse files
committed
update
1 parent 315384d commit e5145f0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

docs/t-sql/queries/hints-transact-sql-join.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,12 @@ ms.author: vanto
5353

5454
## Arguments
5555

56-
*LOOP | HASH | MERGE*
56+
LOOP \| HASH \| MERGE
57+
5758
Specifies that the join in the query should use looping, hashing, or merging. Using LOOP |HASH | MERGE JOIN enforces a particular join between two tables. LOOP cannot be specified together with RIGHT or FULL as a join type. For more information, see [Joins](../../relational-databases/performance/joins.md).
5859

59-
*REMOTE*
60+
REMOTE
61+
6062
Specifies that the join operation is performed on the site of the right table. This is useful when the left table is a local table and the right table is a remote table. REMOTE should be used only when the left table has fewer rows than the right table.
6163

6264
If the right table is local, the join is performed locally. If both tables are remote but from different data sources, REMOTE causes the join to be performed on the site of the right table. If both tables are remote tables from the same data source, REMOTE is not required.

0 commit comments

Comments
 (0)