dataset_name
stringclasses
1 value
split
stringclasses
1 value
prompt_raw
stringlengths
897
4.29k
messages
listlengths
2
2
question
stringlengths
18
174
sample_id
int64
0
1.03k
db_id
stringclasses
20 values
groundtruth_sqls
listlengths
1
1
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the name of the different car makers who produced a car in 1970?
100
car_1
[ "SELECT DISTINCT T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model JOIN CARS_DATA AS T4 ON T3.MakeId = T4.id WHERE T4.year = '1970';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Find the make and production time of the cars that were produced in the earliest year?
101
car_1
[ "SELECT T2.Make , T1.Year FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Year = (SELECT min(YEAR) FROM CARS_DATA);" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the maker of the carr produced in the earliest year and what year was it?
102
car_1
[ "SELECT T2.Make , T1.Year FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Year = (SELECT min(YEAR) FROM CARS_DATA);" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which distinct car models are the produced after 1980?
103
car_1
[ "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.model = T2.model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.id WHERE T3.year > 1980;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the different models for the cards produced after 1980?
104
car_1
[ "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.model = T2.model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.id WHERE T3.year > 1980;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Id: IN...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many car makers are there in each continents? List the continent name and the count.
105
car_1
[ "SELECT T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent;" ]
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "1", "2", "3", "4", "5" model_list.Model: TEXT - model Sample values: "amc", "audi", "bmw", "buick", "cadillac" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "1", "2", "3", "4", "5" Table countries...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the name of each continent and how many car makers are there in each one?
106
car_1
[ "SELECT T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which of the countries has the most car makers? List the country name.
107
car_1
[ "SELECT T2.CountryName FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId GROUP BY T1.Country ORDER BY Count(*) DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the name of the country with the most car makers?
108
car_1
[ "SELECT T2.CountryName FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId GROUP BY T1.Country ORDER BY Count(*) DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many car models are produced by each maker ? Only list the count and the maker full name .
109
car_1
[ "select count(*) , t2.fullname from model_list as t1 join car_makers as t2 on t1.maker = t2.id group by t2.id;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of car models that are produced by each maker and what is the id and full name of each maker?
110
car_1
[ "SELECT Count(*) , T2.FullName , T2.id FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id GROUP BY T2.id;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the accelerate of the car make amc hornet sportabout (sw)?
111
car_1
[ "SELECT T1.Accelerate FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Make = 'amc hornet sportabout (sw)';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How much does the car accelerate that makes amc hornet sportabout (sw)?
112
car_1
[ "SELECT T1.Accelerate FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Make = 'amc hornet sportabout (sw)';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight: INTEGER - weight Sample values: "3504", "3693", "3436", "3433", "3449"...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many car makers are there in france?
113
car_1
[ "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';" ]
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "1", "2", "3", "4", "5" model_list.Model: TEXT - model Sample values: "amc", "audi", "bmw", "buick", "cadillac" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "1", "2", "3", "4", "5" Table countries...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of makers of care in France?
114
car_1
[ "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Id: INTEGER PRIMARY KEY - id Sample values: "1", "2", "3", "4", "5" cars_dat...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many car models are produced in the usa?
115
car_1
[ "SELECT count(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Id: INTEGER PRIMARY KEY - id Sample values: "1", "2", "3", "4", "5" cars_dat...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the count of the car models produced in the United States?
116
car_1
[ "SELECT count(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average miles per gallon(mpg) of the cars with 4 cylinders?
117
car_1
[ "SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average miles per gallon of all the cards with 4 cylinders?
118
car_1
[ "SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the smallest weight of the car produced with 8 cylinders on 1974 ?
119
car_1
[ "select min(weight) from cars_data where cylinders = 8 and year = 1974" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the minimum weight of the car with 8 cylinders produced in 1974 ?
120
car_1
[ "select min(weight) from cars_data where cylinders = 8 and year = 1974" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are all the makers and models?
121
car_1
[ "SELECT Maker , Model FROM MODEL_LIST;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the makers and models?
122
car_1
[ "SELECT Maker , Model FROM MODEL_LIST;" ]
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "1", "2", "3", "4", "5" model_list.Model: TEXT - model Sample values: "amc", "audi", "bmw", "buick", "cadillac" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "1", "2", "3", "4", "5" Table countries...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the countries having at least one car maker? List name and id.
123
car_1
[ "SELECT T1.CountryName , T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING count(*) >= 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the names and ids of all countries with at least one car maker?
124
car_1
[ "SELECT T1.CountryName , T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING count(*) >= 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "150" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accelerate: REAL - accelerate ...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of the cars with horsepower more than 150?
125
car_1
[ "SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "150" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accelerate: REAL - accelerate ...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of cars with a horsepower greater than 150?
126
car_1
[ "SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average weight of cars each year?
127
car_1
[ "SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average weight and year for each year?
128
car_1
[ "SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;" ]
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "3" model_list.Model: TEXT - model Sample values: "amc", "audi", "bmw", "buick", "cadillac" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "3" Table countries countries.CountryId: INTEGER PRIMARY ...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which countries in europe have at least 3 car manufacturers?
129
car_1
[ "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING count(*) >= 3;" ]
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "3" model_list.Model: TEXT - model Sample values: "amc", "audi", "bmw", "buick", "cadillac" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "3" Table countries countries.CountryId: INTEGER PRIMARY ...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the names of all European countries with at least 3 manufacturers?
130
car_1
[ "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING count(*) >= 3;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the maximum horsepower and the make of the car models with 3 cylinders?
131
car_1
[ "SELECT T2.horsepower , T1.Make FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.cylinders = 3 ORDER BY T2.horsepower DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the largest amount of horsepower for the models with 3 cylinders and what make is it?
132
car_1
[ "SELECT T2.horsepower , T1.Make FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.cylinders = 3 ORDER BY T2.horsepower DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which model saves the most gasoline? That is to say, have the maximum miles per gallon.
133
car_1
[ "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.mpg DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the car model with the highest mpg ?
134
car_1
[ "select t1.model from car_names as t1 join cars_data as t2 on t1.makeid = t2.id order by t2.mpg desc limit 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average horsepower of the cars before 1980?
135
car_1
[ "SELECT avg(horsepower) FROM CARS_DATA WHERE YEAR < 1980;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average horsepower for all cars produced before 1980 ?
136
car_1
[ "select avg(horsepower) from cars_data where year < 1980;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average edispl of the cars of model volvo?
137
car_1
[ "SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the average edispl for all volvos?
138
car_1
[ "SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the maximum accelerate for different number of cylinders?
139
car_1
[ "SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the maximum accelerate for all the different cylinders?
140
car_1
[ "SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which model has the most version(make) of cars?
141
car_1
[ "SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What model has the most different versions?
142
car_1
[ "SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many cars have more than 4 cylinders?
143
car_1
[ "SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of cars with more than 4 cylinders?
144
car_1
[ "SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
how many cars were produced in 1980?
145
car_1
[ "SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
In 1980, how many cars were made?
146
car_1
[ "SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Id: IN...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many car models were produced by the maker with full name American Motor Company?
147
car_1
[ "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Id: INTEGER PRIMARY KEY - id Sample values: "1", "2", "3", "4", "5" cars_dat...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of car models created by the car maker American Motor Company?
148
car_1
[ "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which makers designed more than 3 car models? List full name and the id.
149
car_1
[ "SELECT T1.FullName , T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) > 3;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the names and ids of all makers with more than 3 models?
150
car_1
[ "SELECT T1.FullName , T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) > 3;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which distinctive models are produced by maker with the full name General Motors or weighing more than 3500?
151
car_1
[ "SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the different models created by either the car maker General Motors or weighed more than 3500?
152
car_1
[ "SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
In which years cars were produced weighing no less than 3000 and no more than 4000 ?
153
car_1
[ "select distinct year from cars_data where weight between 3000 and 4000;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the different years in which there were cars produced that weighed less than 4000 and also cars that weighted more than 3000 ?
154
car_1
[ "select distinct year from cars_data where weight between 3000 and 4000;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the horsepower of the car with the largest accelerate?
155
car_1
[ "SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the horsepower of the car with the greatest accelerate?
156
car_1
[ "SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
For model volvo, how many cylinders does the car with the least accelerate have?
157
car_1
[ "SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate ASC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
For a volvo model, how many cylinders does the version with least accelerate have?
158
car_1
[ "SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate ASC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many cars have a larger accelerate than the car with the largest horsepower?
159
car_1
[ "SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of cars with a greater accelerate than the one with the most horsepower?
160
car_1
[ "SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many countries has more than 2 car makers ?
161
car_1
[ "select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of countries with more than 2 car makers ?
162
car_1
[ "select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many cars has over 6 cylinders?
163
car_1
[ "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the number of carsw ith over 6 cylinders?
164
car_1
[ "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
For the cars with 4 cylinders, which model has the largest horsepower?
165
car_1
[ "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Cylinders = 4 ORDER BY T2.horsepower DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
For all of the 4 cylinder cars, which model has the most horsepower?
166
car_1
[ "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Cylinders = 4 ORDER BY T2.horsepower DESC LIMIT 1;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Among the cars with more than lowest horsepower, which ones do not have more than 3 cylinders? List the car makeid and make name.
167
car_1
[ "SELECT T2.MakeId , T2.Make FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Horsepower > (SELECT min(Horsepower) FROM CARS_DATA) AND T1.Cylinders <= 3;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Among the cars that do not have the minimum horsepower , what are the make ids and names of all those with less than 4 cylinders ?
168
car_1
[ "select t2.makeid , t2.make from cars_data as t1 join car_names as t2 on t1.id = t2.makeid where t1.horsepower > (select min(horsepower) from cars_data) and t1.cylinders < 4;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ?
169
car_1
[ "select max(mpg) from cars_data where cylinders = 8 or year < 1980" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the maximum mpg of the cars that had 8 cylinders or that were produced before 1980 ?
170
car_1
[ "select max(mpg) from cars_data where cylinders = 8 or year < 1980" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which models are lighter than 3500 but not built by the 'Ford Motor Company'?
171
car_1
[ "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName != 'Ford Motor Company';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Weight...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the different models wthat are lighter than 3500 but were not built by the Ford Motor Company?
172
car_1
[ "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName != 'Ford Motor Company';" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Id: IN...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the name of the countries where there is not a single car maker?
173
car_1
[ "SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;" ]
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "1", "2", "3", "4", "5" model_list.Model: TEXT - model Sample values: "amc", "audi", "bmw", "buick", "cadillac" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "1", "2", "3", "4", "5" Table countries...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the names of the countries with no car makers?
174
car_1
[ "SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;" ]
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which are the car makers which produce at least 2 models and more than 3 car makers ? List the id and the maker .
175
car_1
[ "select t1.id , t1.maker from car_makers as t1 join model_list as t2 on t1.id = t2.maker group by t1.id having count(*) >= 2 intersect select t1.id , t1.maker from car_makers as t1 join model_list as t2 on t1.id = t2.maker join car_names as t3 on t2.model = t3.model group by t1.id having count(*) > 3;" ...
spider
dev
Database Schema: Table cars_data cars_data.Horsepower: TEXT - horsepower Sample values: "130", "165", "150", "140", "198" cars_data.MPG: TEXT - mpg Sample values: "18", "15", "16", "17", "14" cars_data.Edispl: REAL - edispl Sample values: "307.0", "350.0", "318.0", "304.0", "302.0" cars_data.Accele...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the ids and makers of all car makers that produce at least 2 models and make more than 3 cars?
176
car_1
[ "SELECT T1.Id , T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) >= 2 INTERSECT SELECT T1.Id , T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model GROUP BY T1.Id HAVING count(*) > 3;" ...
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "3" model_list.Model: TEXT - model Sample values: "fiat" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "3" Table countries countries.CountryId: INTEGER PRIMARY KEY - country id Sample values:...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the id and names of the countries which have more than 3 car makers or produce the 'fiat' model?
177
car_1
[ "SELECT T1.countryId , T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.countryId HAVING count(*) > 3 UNION SELECT T1.countryId , T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country JOIN MODEL_LIST AS T3 ON T2.Id = T3.Mak...
spider
dev
Database Schema: Table model_list model_list.Maker: INTEGER - maker Sample values: "3" model_list.Model: TEXT - model Sample values: "fiat" model_list.ModelId: INTEGER PRIMARY KEY - model id Sample values: "3" Table countries countries.CountryId: INTEGER PRIMARY KEY - country id Sample values:...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the ids and names of all countries that either have more than 3 car makers or produce fiat model ?
178
car_1
[ "select t1.countryid , t1.countryname from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 3 union select t1.countryid , t1.countryname from countries as t1 join car_makers as t2 on t1.countryid = t2.country join model_list as t3 on t2.id = t3.mak...
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "JetBlue" airlines.Airline: TEXT - airline name Sample values: "JetBlue Airways", "US Airways", "AirTran Airways", "United Airlines", "Delta Airlines" airl...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which country does Airline "JetBlue Airways" belong to?
179
flight_2
[ "SELECT Country FROM AIRLINES WHERE Airline = \"JetBlue Airways\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "JetBlue" airlines.Airline: TEXT - airline name Sample values: "JetBlue Airways", "US Airways", "AirTran Airways" airlines.uid: INTEGER PRIMARY KEY - airli...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What country is Jetblue Airways affiliated with?
180
flight_2
[ "SELECT Country FROM AIRLINES WHERE Airline = \"JetBlue Airways\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "JetBlue" airlines.Airline: TEXT - airline name Sample values: "JetBlue Airways", "US Airways", "AirTran Airways", "United Airlines", "Delta Airlines" airl...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the abbreviation of Airline "JetBlue Airways"?
181
flight_2
[ "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "JetBlue" airlines.Airline: TEXT - airline name Sample values: "JetBlue Airways", "US Airways", "AirTran Airways" airlines.uid: INTEGER PRIMARY KEY - airli...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which abbreviation corresponds to Jetblue Airways?
182
flight_2
[ "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
List all airline names and their abbreviations in "USA".
183
flight_2
[ "SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = \"USA\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What are the airline names and abbreviations for airlines in the USA?
184
flight_2
[ "SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = \"USA\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
List the airport code and name in the city of Anthony.
185
flight_2
[ "SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = \"Anthony\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Give the airport code and airport name corresonding to the city Anthony.
186
flight_2
[ "SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = \"Anthony\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many airlines do we have?
187
flight_2
[ "SELECT count(*) FROM AIRLINES" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the total number of airlines?
188
flight_2
[ "SELECT count(*) FROM AIRLINES" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many airports do we have?
189
flight_2
[ "SELECT count(*) FROM AIRPORTS" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Return the number of airports.
190
flight_2
[ "SELECT count(*) FROM AIRPORTS" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many flights do we have?
191
flight_2
[ "SELECT count(*) FROM FLIGHTS" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Return the number of flights.
192
flight_2
[ "SELECT count(*) FROM FLIGHTS" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airlines", "American Airlines", "Northwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which airline has abbreviation 'UAL'?
193
flight_2
[ "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airlines", "American Airlines", "Northwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Give the airline with abbreviation 'UAL'.
194
flight_2
[ "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
How many airlines are from USA?
195
flight_2
[ "SELECT count(*) FROM AIRLINES WHERE Country = \"USA\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "Delta Airlines", "Southwest Airline...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Return the number of airlines in the USA.
196
flight_2
[ "SELECT count(*) FROM AIRLINES WHERE Country = \"USA\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Which city and country is the Alton airport at?
197
flight_2
[ "SELECT City , Country FROM AIRPORTS WHERE AirportName = \"Alton\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
Give the city and country for the Alton airport.
198
flight_2
[ "SELECT City , Country FROM AIRPORTS WHERE AirportName = \"Alton\"" ]
spider
dev
Database Schema: Table airlines airlines.Country: TEXT - country Sample values: "USA" airlines.Abbreviation: TEXT - abbreviation Sample values: "UAL", "USAir", "Delta", "Southwest", "American" airlines.Airline: TEXT - airline name Sample values: "United Airlines", "US Airways", "Delta Airlines", "Sou...
[ { "content": "\nYou are a meticulous SQL expert. Generate a single, correct SQL query for the user question and the provided database schema.\nFollow this exact response format:\n\nRules:\n- Output exactly one SQL statement.\n- The SQL must be executable on SQLite.\n- Do not include any explanatory text.\n- Out...
What is the airport name for airport 'AKO'?
199
flight_2
[ "SELECT AirportName FROM AIRPORTS WHERE AirportCode = \"AKO\"" ]