1
2
3
4
5
6
select
id,
customer_id,
status,
created_at
from public.orders
where created_at > now() - interval '7 days'
order by created_at desc
limit 50;
| id | customer_id | status | created_at |
|---|---|---|---|
| 8ec1... | 7cb3... | paid | 2026-03-25 13:55:01 UTC |
| 80f8... | 5d10... | processing | 2026-03-25 13:44:15 UTC |
| 5aa2... | 9ab1... | failed | 2026-03-25 13:12:48 UTC |
orders audit.sql
Success · 182 ms · 50 rows
empty result.sql
Success · 95 ms · 0 rows
bad syntax.sql
Error · syntax error near `form`
Export Status
Ready to export the current result set`/tmp/orders-last-7-days.csv` is available as the default target.
No blocking problem
When a query fails, this area should show the error summary, SQL fragment, and next action.