Skip to content

Commit ca9da00

Browse files
authored
Remove duplicate 'and' (#29)
1 parent c5d9e31 commit ca9da00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Instructions/Labs/03a-joins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ An inner join is used to find related data in two tables. For example, suppose y
2727
ON SalesLT.Product.ProductCategoryID = SalesLT.ProductCategory.ProductCategoryID;
2828
```
2929
30-
4. Use the **⏵Run** button to run the query, and and after a few seconds, review the results, which include the **ProductName** from the products table and the corresponding **Category** from the product category table. Because the query uses an **INNER** join, any products that do not have corresponding categories, and any categories that contain no products are omitted from the results.
30+
4. Use the **⏵Run** button to run the query, and after a few seconds, review the results, which include the **ProductName** from the products table and the corresponding **Category** from the product category table. Because the query uses an **INNER** join, any products that do not have corresponding categories, and any categories that contain no products are omitted from the results.
3131
3232
5. Modify the query as follows to remove the **INNER** keyword, and re-run it.
3333

0 commit comments

Comments
 (0)