Tell me about a time you used SQL to answer a simple data question and validated the result.
For this exercise, use the supplied orders table to count orders for each non-null status and describe how you would independently validate the result.
order_status, with columns order_status and order_count.order_count descending, then order_status ascending for ties.| Column | Type | Description |
|---|---|---|
| order_idPK | INT | Unique order identifier |
| order_status | VARCHAR(30) | Current order status |
| order_total | NUMERIC(10,2) | Total value of the order |