Duration
14s
Input Tokens
681
Output Tokens
79
Cost
$0.02
Context
Input
List all unique cities where customers are from.Expected output
SELECT DISTINCT city FROM customers;Model output
SELECT DISTINCT city FROM customers WHERE city IS NOT NULL;Natural language to SQL query generation evaluates text-to-query fidelity and schema reasoning. This task is particularly relevant for analytics chat assistants and simplified database interfaces.
List all unique cities where customers are from.SELECT DISTINCT city FROM customers;SELECT DISTINCT city FROM customers WHERE city IS NOT NULL;