SELECT COUNT(*) AS total_rows FROM orders;
| total_rows |
|---|
| 23 |
SELECT COUNT (*) AS no_ship_instruct FROM orders
WHERE ship_instruct IS NULL;
| no_ship_instruct |
|---|
| 2 |
SELECT COUNT (*) AS ship_express FROM ORDERS
WHERE ship_instruct = 'express';
| ship_express |
|---|
| 6 |