Conversation
dsinn
left a comment
There was a problem hiding this comment.
Almost there! I'd just like to see some minor fixes to answers 6 and 8.
| VALUES (10248, 23, 1), | ||
| (10248, 24, 1), | ||
| (10248, 25, 1); |
There was a problem hiding this comment.
10248 looks to be the ID of the oldest order in the starter data, rather than the new order from answer 5. Could you fix this? (In real life, modifying the wrong order could lead to an angry customer.)
| employee. Paste your SQL statement below. | ||
|
|
||
| INSERT INTO Orders | ||
| (CustomerID, EmployeeID, ShipperID) |
There was a problem hiding this comment.
There's no OrderDate here, but since the schema allows it and it's not a requirement in this exercise, I suppose this is fine. It's just a bit strange to have a single order with a NULL date.
| 0.50. Paste your SQL statement below. | ||
|
|
||
| UPDATE Products | ||
| SET Price = (Price * 0.50) |
There was a problem hiding this comment.
The requirement is:
the price increased by 0.50
but this does something else. Could you tell me what that is, and then fix it?
There was a problem hiding this comment.
Oh man I halved the prices 😅 I'll fix it
No description provided.