| ID | Customer | Product | Total | Time |
|---|---|---|---|---|
| Connecting... | ||||
| Region | Customers | Orders | Revenue |
|---|---|---|---|
| Connecting... | |||
-- One INSERT updates ALL THREE panels INSERT INTO orders (customer_id, product_id, qty, total) VALUES (1, 3, 1, 349.99); -- Multiple orders change rankings INSERT INTO orders (customer_id, product_id, qty, total) VALUES (2, 1, 3, 239.97); INSERT INTO orders (customer_id, product_id, qty, total) VALUES (3, 7, 5, 349.95); INSERT INTO orders (customer_id, product_id, qty, total) VALUES (4, 3, 2, 699.98); -- New customer + order INSERT INTO customers (name, region) VALUES ('Eve Garcia', 'eu-west'); INSERT INTO orders (customer_id, product_id, qty, total) VALUES (5, 3, 1, 349.99);