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
3s
Input Tokens
618
Output Tokens
40
Cost
$0.00
Context
Input
Give me the name and email of customers who live in Stockholm.
Expected output
SELECT name, email FROM customers WHERE city = 'Stockholm';
Model output
SELECT name, email
FROM customers
WHERE city = 'Stockholm';