Skip to content

Commit 7eb48f4

Browse files
authored
Update from-transact-sql.md to re-add incorrectly-removed OUTER keyword
Two versions of the same query are present to demonstrate that the `OUTER` keyword is optional in the `FULL OUTER JOIN` syntax. However, currently, the two versions of the same query are actually the identical query. This change makes the two examples different again to be consistent with the point being demonstrated as inferred from the context.
1 parent 86acd84 commit 7eb48f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/t-sql/queries/from-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ SELECT dst.SalesTerritoryKey,
895895
dst.SalesTerritoryRegion,
896896
fis.SalesOrderNumber
897897
FROM DimSalesTerritory AS dst
898-
FULL JOIN FactInternetSales AS fis
898+
FULL OUTER JOIN FactInternetSales AS fis
899899
ON dst.SalesTerritoryKey = fis.SalesTerritoryKey
900900
ORDER BY fis.SalesOrderNumber;
901901
```

0 commit comments

Comments
 (0)