SQL Generation

Turn plain-English questions into correct SQL against a schema. The skill behind analytics chat, natural-language dashboards, and 'just ask the database' interfaces.

100
Duration
2s
Input Tokens
826
Output Tokens
61
Cost
$0.00
Context
Input
List all employees hired after 2021
Expected output
SELECT * FROM employees WHERE hired_at > '2021-12-31';
Model output
SELECT *
FROM employees
WHERE hired_at > DATE '2021-12-31';