Skip to content

Commit cd97cb8

Browse files
Update Introductory Problems.md
1 parent 6a0a11a commit cd97cb8

File tree

1 file changed

+5
-31
lines changed

1 file changed

+5
-31
lines changed

Introductory Problems.md

+5-31
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ WHERE ShipCountry = 'France' OR ShipCountry = 'Belgium'
192192
```
193193
**Result:**
194194

195-
The result generates 96 rows, so I decided to only show the first 10 rows.
195+
- 96 rows were affeted, showing only the top 10
196196

197197
| OrderID | CustomerID | ShipCountry |
198198
|---------|------------|-------------|
@@ -219,7 +219,7 @@ WHERE ShipCountry IN ('Brazil', 'Mexico', 'Argentina', 'Venezuela')
219219
```
220220
**Result:**
221221

222-
The result generates 173 rows, so I decided to only show the first 10 rows.
222+
- 173 rows were affeted, showing only the top 10
223223

224224
| OrderID | CustomerID | ShipCountry |
225225
|---------|------------|-------------|
@@ -318,7 +318,7 @@ ORDER BY OrderID, ProductID
318318
```
319319
**Result:**
320320

321-
The result generates 2155 rows, so I decided to only show the first 10 rows.
321+
- 2155 rows were affeted, showing only the top 10
322322

323323
| OrderID | ProductID | UnitPrice | Quantity | TotalPrice |
324324
|---------|-----------|-----------|----------|------------|
@@ -427,7 +427,7 @@ LEFT JOIN Suppliers s
427427
```
428428
**Result:**
429429

430-
The result generates 77 rows, so I decided to only show the first 10 rows.
430+
- 77 rows were affeted, showing only the top 10
431431

432432
| ProductID | ProductName | CompanyName |
433433
|-----------|---------------------------------|----------------------------|
@@ -455,7 +455,7 @@ WHERE OrderID < 10300
455455
```
456456
**Result:**
457457

458-
The result generates 52 rows, so I decided to only show the first 10 rows.
458+
- 52 rows were affeted, showing only the top 10
459459

460460
| OrderID | OrderDate | CompanyName |
461461
|---------|------------|------------------|
@@ -471,29 +471,3 @@ The result generates 52 rows, so I decided to only show the first 10 rows.
471471
| 10257 | 2014-07-16 | Federal Shipping |
472472

473473

474-
475-
476-
477-
478-
479-
480-
481-
482-
483-
484-
485-
486-
487-
488-
489-
490-
491-
492-
493-
494-
495-
496-
497-
498-
499-

0 commit comments

Comments
 (0)