The model writes SQL
- the model improvises a string 010304
Whatever the model read — a user message, a retrieved row — can shape this string.
run 1SELECT region, SUM(total) FROM orders GROUP BY region;run 2 · same questionSELECT o.region, SUM(i.amount) FROM orders o LEFT JOIN order_items i ON i.order_id = o.id GROUP BY 1; - your connection executes it 05
With the connection's full authority. Read, join — and unless someone remembered the flag, write.
run 1 → east · 2130.50
run 2 → east · 2450.08+15% — join fan-out 02
Two runs, two numbers. Both plausible. No signal which — if either — is right.