@@ -192,7 +192,7 @@ WHERE ShipCountry = 'France' OR ShipCountry = 'Belgium'
192
192
```
193
193
** Result:**
194
194
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
196
196
197
197
| OrderID | CustomerID | ShipCountry |
198
198
| ---------| ------------| -------------|
@@ -219,7 +219,7 @@ WHERE ShipCountry IN ('Brazil', 'Mexico', 'Argentina', 'Venezuela')
219
219
```
220
220
** Result:**
221
221
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
223
223
224
224
| OrderID | CustomerID | ShipCountry |
225
225
| ---------| ------------| -------------|
@@ -318,7 +318,7 @@ ORDER BY OrderID, ProductID
318
318
```
319
319
** Result:**
320
320
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
322
322
323
323
| OrderID | ProductID | UnitPrice | Quantity | TotalPrice |
324
324
| ---------| -----------| -----------| ----------| ------------|
@@ -427,7 +427,7 @@ LEFT JOIN Suppliers s
427
427
```
428
428
** Result:**
429
429
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
431
431
432
432
| ProductID | ProductName | CompanyName |
433
433
| -----------| ---------------------------------| ----------------------------|
@@ -455,7 +455,7 @@ WHERE OrderID < 10300
455
455
```
456
456
** Result:**
457
457
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
459
459
460
460
| OrderID | OrderDate | CompanyName |
461
461
| ---------| ------------| ------------------|
@@ -471,29 +471,3 @@ The result generates 52 rows, so I decided to only show the first 10 rows.
471
471
| 10257 | 2014-07-16 | Federal Shipping |
472
472
473
473
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