Duration
12s
Input Tokens
934
Output Tokens
869
Cost
$0.01
Context
Input
List all employees hired after 2021Expected output
SELECT * FROM employees WHERE hired_at > '2021-12-31';Model output
SELECT * FROM employees WHERE hired_at > '2021-12-31';Turn plain-English questions into correct SQL against a schema. The skill behind analytics chat, natural-language dashboards, and 'just ask the database' interfaces.
List all employees hired after 2021SELECT * FROM employees WHERE hired_at > '2021-12-31';SELECT * FROM employees WHERE hired_at > '2021-12-31';