Copilot
Schema-aware Copilot that writes real SQL.
Reference tables with @, optimize joins, explain plans, and validate queries against your live schema.
Copilot · index-aware
Use orders.status and the FK to customers.
SELECT c.name, SUM(o.total) AS revenue
FROM orders o
JOIN customers c ON c.id = o.customer_id
WHERE o.status = 'paid'
LIMIT 20;
