From 5795fecd89ea95691c238724ded5e5851a3d9ae6 Mon Sep 17 00:00:00 2001 From: Xyves <119971254+Xyves@users.noreply.github.com> Date: Fri, 21 Mar 2025 08:17:26 +0100 Subject: [PATCH] Fix grammar in customer data text Add 'be' word to the sentence. --- Instructions/Labs/13-implement-transitions-in-tsql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/13-implement-transitions-in-tsql.md b/Instructions/Labs/13-implement-transitions-in-tsql.md index 44b372c..9d71701 100644 --- a/Instructions/Labs/13-implement-transitions-in-tsql.md +++ b/Instructions/Labs/13-implement-transitions-in-tsql.md @@ -12,7 +12,7 @@ In this exercise, you'll use transactions to enforce data integrity in the **Adv ## Insert data without transactions -Consider a website that needs to store customer information. As part of the customer registration, data about a customer and their address need to stored. A customer without an address will cause problems for the shipping when orders are made. +Consider a website that needs to store customer information. As part of the customer registration, data about a customer and their address need to be stored. A customer without an address will cause problems for the shipping when orders are made. In this exercise you'll use a transaction to ensure that when a row is inserted into the **Customer** and **Address** tables, a row is also added to the **CustomerAddress** table to create a link between the customer record and the address record. If one insert fails, then all should fail.