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
12s
Input Tokens
582
Output Tokens
72
Cost
$0.00
Context
Input
Count the number of vehicles.
Expected output
SELECT COUNT(*) FROM vehicles;
Model output
SELECT count(*) FROM vehicles;