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
8s
Input Tokens
677
Output Tokens
82
Cost
$0.00
Context
Input
Find all volvos
Expected output
SELECT * FROM vehicles WHERE make = 'Volvo';
Model output
SELECT * FROM vehicles WHERE LOWER(make) = LOWER('Volvo');