Skip to content

Commit 46c3e25

Browse files
authored
Update 13-implement-transitions-in-tsql.md
Fixed typo in line 55
1 parent 071d433 commit 46c3e25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Instructions/Labs/13-implement-transitions-in-tsql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Two of the statements appear to have succeeded, but the third failed.
5252
SELECT * FROM SalesLT.Customer ORDER BY ModifiedDate DESC;
5353
```
5454

55-
A row for *Norman Newcustomer* was inserted into the Customer table (and anotherw as in serted into the Address table). However, the insert for the CustomerAddress table failed with a duplicate key error. The database is now inconsistent as there's no link between the new customer and their address.
55+
A row for *Norman Newcustomer* was inserted into the Customer table (and another was inserted into the Address table). However, the insert for the CustomerAddress table failed with a duplicate key error. The database is now inconsistent as there's no link between the new customer and their address.
5656

5757
To fix this, you'll need to delete the two rows that were inserted.
5858

0 commit comments

Comments
 (0)