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
4s
Input Tokens
781
Output Tokens
79
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';