query_id
int64 0
1.03k
| database_id
stringclasses 20
values | table_id
listlengths 1
4
| query
stringlengths 18
174
| answer
stringlengths 20
422
| difficulty
stringclasses 4
values |
---|---|---|---|---|---|
100 |
car_1
|
[
"CAR_NAMES",
"MODEL_LIST",
"CAR_MAKERS",
"CARS_DATA"
] |
What is the name of the different car makers who produced a car in 1970?
|
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';
|
extra
|
101 |
car_1
|
[
"CAR_NAMES",
"CARS_DATA"
] |
Find the make and production time of the cars that were produced in the earliest year?
|
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);
|
extra
|
102 |
car_1
|
[
"CAR_NAMES",
"CARS_DATA"
] |
What is the maker of the carr produced in the earliest year and what year was it?
|
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);
|
extra
|
103 |
car_1
|
[
"MODEL_LIST",
"CAR_NAMES",
"CARS_DATA"
] |
Which distinct car models are the produced after 1980?
|
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;
|
hard
|
104 |
car_1
|
[
"MODEL_LIST",
"CAR_NAMES",
"CARS_DATA"
] |
What are the different models for the cards produced after 1980?
|
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;
|
hard
|
105 |
car_1
|
[
"COUNTRIES",
"CONTINENTS",
"car_makers"
] |
How many car makers are there in each continents? List the continent name and the count.
|
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;
|
hard
|
106 |
car_1
|
[
"COUNTRIES",
"CONTINENTS",
"car_makers"
] |
What is the name of each continent and how many car makers are there in each one?
|
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;
|
hard
|
107 |
car_1
|
[
"COUNTRIES",
"CAR_MAKERS"
] |
Which of the countries has the most car makers? List the country name.
|
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;
|
extra
|
108 |
car_1
|
[
"COUNTRIES",
"CAR_MAKERS"
] |
What is the name of the country with the most car makers?
|
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;
|
extra
|
109 |
car_1
|
[
"car_makers",
"model_list"
] |
How many car models are produced by each maker ? Only list the count and the maker full name .
|
select count(*) , t2.fullname from model_list as t1 join car_makers as t2 on t1.maker = t2.id group by t2.id;
|
medium
|
110 |
car_1
|
[
"MODEL_LIST",
"CAR_MAKERS"
] |
What is the number of car models that are produced by each maker and what is the id and full name of each maker?
|
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;
|
medium
|
111 |
car_1
|
[
"CAR_NAMES",
"CARS_DATA"
] |
What is the accelerate of the car make amc hornet sportabout (sw)?
|
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)';
|
medium
|
112 |
car_1
|
[
"CAR_NAMES",
"CARS_DATA"
] |
How much does the car accelerate that makes amc hornet sportabout (sw)?
|
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)';
|
medium
|
113 |
car_1
|
[
"COUNTRIES",
"CAR_MAKERS"
] |
How many car makers are there in france?
|
SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';
|
medium
|
114 |
car_1
|
[
"COUNTRIES",
"CAR_MAKERS"
] |
What is the number of makers of care in France?
|
SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';
|
medium
|
115 |
car_1
|
[
"COUNTRIES",
"MODEL_LIST",
"CAR_MAKERS"
] |
How many car models are produced in the usa?
|
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';
|
hard
|
116 |
car_1
|
[
"COUNTRIES",
"MODEL_LIST",
"CAR_MAKERS"
] |
What is the count of the car models produced in the United States?
|
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';
|
hard
|
117 |
car_1
|
[
"CARS_DATA"
] |
What is the average miles per gallon(mpg) of the cars with 4 cylinders?
|
SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;
|
easy
|
118 |
car_1
|
[
"CARS_DATA"
] |
What is the average miles per gallon of all the cards with 4 cylinders?
|
SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;
|
easy
|
119 |
car_1
|
[
"cars_data"
] |
What is the smallest weight of the car produced with 8 cylinders on 1974 ?
|
select min(weight) from cars_data where cylinders = 8 and year = 1974
|
medium
|
120 |
car_1
|
[
"cars_data"
] |
What is the minimum weight of the car with 8 cylinders produced in 1974 ?
|
select min(weight) from cars_data where cylinders = 8 and year = 1974
|
medium
|
121 |
car_1
|
[
"MODEL_LIST"
] |
What are all the makers and models?
|
SELECT Maker , Model FROM MODEL_LIST;
|
medium
|
122 |
car_1
|
[
"MODEL_LIST"
] |
What are the makers and models?
|
SELECT Maker , Model FROM MODEL_LIST;
|
medium
|
123 |
car_1
|
[
"COUNTRIES",
"CAR_MAKERS"
] |
What are the countries having at least one car maker? List name and id.
|
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;
|
medium
|
124 |
car_1
|
[
"COUNTRIES",
"CAR_MAKERS"
] |
What are the names and ids of all countries with at least one car maker?
|
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;
|
medium
|
125 |
car_1
|
[
"CARS_DATA"
] |
What is the number of the cars with horsepower more than 150?
|
SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;
|
easy
|
126 |
car_1
|
[
"CARS_DATA"
] |
What is the number of cars with a horsepower greater than 150?
|
SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;
|
easy
|
127 |
car_1
|
[
"CARS_DATA"
] |
What is the average weight of cars each year?
|
SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;
|
medium
|
128 |
car_1
|
[
"CARS_DATA"
] |
What is the average weight and year for each year?
|
SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;
|
medium
|
129 |
car_1
|
[
"COUNTRIES",
"CONTINENTS",
"CAR_MAKERS"
] |
Which countries in europe have at least 3 car manufacturers?
|
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;
|
extra
|
130 |
car_1
|
[
"COUNTRIES",
"CONTINENTS",
"CAR_MAKERS"
] |
What are the names of all European countries with at least 3 manufacturers?
|
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;
|
extra
|
131 |
car_1
|
[
"CARS_DATA",
"CAR_NAMES"
] |
What is the maximum horsepower and the make of the car models with 3 cylinders?
|
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;
|
extra
|
132 |
car_1
|
[
"CARS_DATA",
"CAR_NAMES"
] |
What is the largest amount of horsepower for the models with 3 cylinders and what make is it?
|
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;
|
extra
|
133 |
car_1
|
[
"CARS_DATA",
"CAR_NAMES"
] |
Which model saves the most gasoline? That is to say, have the maximum miles per gallon.
|
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;
|
hard
|
134 |
car_1
|
[
"cars_data",
"car_names"
] |
What is the car model with the highest mpg ?
|
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;
|
hard
|
135 |
car_1
|
[
"CARS_DATA"
] |
What is the average horsepower of the cars before 1980?
|
SELECT avg(horsepower) FROM CARS_DATA WHERE YEAR < 1980;
|
easy
|
136 |
car_1
|
[
"cars_data"
] |
What is the average horsepower for all cars produced before 1980 ?
|
select avg(horsepower) from cars_data where year < 1980;
|
easy
|
137 |
car_1
|
[
"CARS_DATA",
"CAR_NAMES"
] |
What is the average edispl of the cars of model volvo?
|
SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';
|
medium
|
138 |
car_1
|
[
"CARS_DATA",
"CAR_NAMES"
] |
What is the average edispl for all volvos?
|
SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';
|
medium
|
139 |
car_1
|
[
"CARS_DATA"
] |
What is the maximum accelerate for different number of cylinders?
|
SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;
|
medium
|
140 |
car_1
|
[
"CARS_DATA"
] |
What is the maximum accelerate for all the different cylinders?
|
SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;
|
medium
|
141 |
car_1
|
[
"CAR_NAMES"
] |
Which model has the most version(make) of cars?
|
SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;
|
hard
|
142 |
car_1
|
[
"CAR_NAMES"
] |
What model has the most different versions?
|
SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;
|
hard
|
143 |
car_1
|
[
"CARS_DATA"
] |
How many cars have more than 4 cylinders?
|
SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;
|
easy
|
144 |
car_1
|
[
"CARS_DATA"
] |
What is the number of cars with more than 4 cylinders?
|
SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;
|
easy
|
145 |
car_1
|
[
"CARS_DATA"
] |
how many cars were produced in 1980?
|
SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;
|
easy
|
146 |
car_1
|
[
"CARS_DATA"
] |
In 1980, how many cars were made?
|
SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;
|
easy
|
147 |
car_1
|
[
"MODEL_LIST",
"CAR_MAKERS"
] |
How many car models were produced by the maker with full name American Motor Company?
|
SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';
|
medium
|
148 |
car_1
|
[
"MODEL_LIST",
"CAR_MAKERS"
] |
What is the number of car models created by the car maker American Motor Company?
|
SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';
|
medium
|
149 |
car_1
|
[
"MODEL_LIST",
"CAR_MAKERS"
] |
Which makers designed more than 3 car models? List full name and the id.
|
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;
|
medium
|
150 |
car_1
|
[
"MODEL_LIST",
"CAR_MAKERS"
] |
What are the names and ids of all makers with more than 3 models?
|
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;
|
medium
|
151 |
car_1
|
[
"CAR_MAKERS",
"MODEL_LIST",
"CAR_NAMES",
"CARS_DATA"
] |
Which distinctive models are produced by maker with the full name General Motors or weighing more than 3500?
|
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;
|
extra
|
152 |
car_1
|
[
"CAR_MAKERS",
"MODEL_LIST",
"CAR_NAMES",
"CARS_DATA"
] |
What are the different models created by either the car maker General Motors or weighed more than 3500?
|
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;
|
extra
|
153 |
car_1
|
[
"cars_data"
] |
In which years cars were produced weighing no less than 3000 and no more than 4000 ?
|
select distinct year from cars_data where weight between 3000 and 4000;
|
easy
|
154 |
car_1
|
[
"cars_data"
] |
What are the different years in which there were cars produced that weighed less than 4000 and also cars that weighted more than 3000 ?
|
select distinct year from cars_data where weight between 3000 and 4000;
|
easy
|
155 |
car_1
|
[
"CARS_DATA"
] |
What is the horsepower of the car with the largest accelerate?
|
SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;
|
medium
|
156 |
car_1
|
[
"CARS_DATA"
] |
What is the horsepower of the car with the greatest accelerate?
|
SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;
|
medium
|
157 |
car_1
|
[
"CAR_NAMES",
"CARS_DATA"
] |
For model volvo, how many cylinders does the car with the least accelerate have?
|
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;
|
extra
|
158 |
car_1
|
[
"CAR_NAMES",
"CARS_DATA"
] |
For a volvo model, how many cylinders does the version with least accelerate have?
|
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;
|
extra
|
159 |
car_1
|
[
"CARS_DATA"
] |
How many cars have a larger accelerate than the car with the largest horsepower?
|
SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );
|
hard
|
160 |
car_1
|
[
"CARS_DATA"
] |
What is the number of cars with a greater accelerate than the one with the most horsepower?
|
SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );
|
hard
|
161 |
car_1
|
[
"car_makers",
"countries"
] |
How many countries has more than 2 car makers ?
|
select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2
|
medium
|
162 |
car_1
|
[
"car_makers",
"countries"
] |
What is the number of countries with more than 2 car makers ?
|
select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2
|
medium
|
163 |
car_1
|
[
"CARS_DATA"
] |
How many cars has over 6 cylinders?
|
SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;
|
easy
|
164 |
car_1
|
[
"CARS_DATA"
] |
What is the number of carsw ith over 6 cylinders?
|
SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;
|
easy
|
165 |
car_1
|
[
"CARS_DATA",
"CAR_NAMES"
] |
For the cars with 4 cylinders, which model has the largest horsepower?
|
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;
|
extra
|
166 |
car_1
|
[
"CARS_DATA",
"CAR_NAMES"
] |
For all of the 4 cylinder cars, which model has the most horsepower?
|
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;
|
extra
|
167 |
car_1
|
[
"CAR_NAMES",
"CARS_DATA"
] |
Among the cars with more than lowest horsepower, which ones do not have more than 3 cylinders? List the car makeid and make name.
|
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;
|
extra
|
168 |
car_1
|
[
"cars_data",
"car_names"
] |
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 ?
|
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;
|
extra
|
169 |
car_1
|
[
"cars_data"
] |
What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ?
|
select max(mpg) from cars_data where cylinders = 8 or year < 1980
|
medium
|
170 |
car_1
|
[
"cars_data"
] |
What is the maximum mpg of the cars that had 8 cylinders or that were produced before 1980 ?
|
select max(mpg) from cars_data where cylinders = 8 or year < 1980
|
medium
|
171 |
car_1
|
[
"CAR_MAKERS",
"MODEL_LIST",
"CAR_NAMES",
"CARS_DATA"
] |
Which models are lighter than 3500 but not built by the 'Ford Motor Company'?
|
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';
|
extra
|
172 |
car_1
|
[
"CAR_MAKERS",
"MODEL_LIST",
"CAR_NAMES",
"CARS_DATA"
] |
What are the different models wthat are lighter than 3500 but were not built by the Ford Motor Company?
|
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';
|
extra
|
173 |
car_1
|
[
"CAR_MAKERS",
"countries"
] |
What are the name of the countries where there is not a single car maker?
|
SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;
|
hard
|
174 |
car_1
|
[
"CAR_MAKERS",
"countries"
] |
What are the names of the countries with no car makers?
|
SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;
|
hard
|
175 |
car_1
|
[
"car_makers",
"car_names",
"model_list"
] |
Which are the car makers which produce at least 2 models and more than 3 car makers ? List the id and the maker .
|
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;
|
extra
|
176 |
car_1
|
[
"CAR_NAMES",
"MODEL_LIST",
"CAR_MAKERS"
] |
What are the ids and makers of all car makers that produce at least 2 models and make more than 3 cars?
|
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;
|
extra
|
177 |
car_1
|
[
"CAR_MAKERS",
"MODEL_LIST",
"Countries"
] |
What are the id and names of the countries which have more than 3 car makers or produce the 'fiat' model?
|
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.Maker WHERE T3.Model = 'fiat';
|
extra
|
178 |
car_1
|
[
"car_makers",
"countries",
"model_list"
] |
What are the ids and names of all countries that either have more than 3 car makers or produce fiat model ?
|
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.maker where t3.model = 'fiat';
|
extra
|
179 |
flight_2
|
[
"AIRLINES"
] |
Which country does Airline "JetBlue Airways" belong to?
|
SELECT Country FROM AIRLINES WHERE Airline = "JetBlue Airways"
|
easy
|
180 |
flight_2
|
[
"AIRLINES"
] |
What country is Jetblue Airways affiliated with?
|
SELECT Country FROM AIRLINES WHERE Airline = "JetBlue Airways"
|
easy
|
181 |
flight_2
|
[
"AIRLINES"
] |
What is the abbreviation of Airline "JetBlue Airways"?
|
SELECT Abbreviation FROM AIRLINES WHERE Airline = "JetBlue Airways"
|
easy
|
182 |
flight_2
|
[
"AIRLINES"
] |
Which abbreviation corresponds to Jetblue Airways?
|
SELECT Abbreviation FROM AIRLINES WHERE Airline = "JetBlue Airways"
|
easy
|
183 |
flight_2
|
[
"AIRLINES"
] |
List all airline names and their abbreviations in "USA".
|
SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = "USA"
|
medium
|
184 |
flight_2
|
[
"AIRLINES"
] |
What are the airline names and abbreviations for airlines in the USA?
|
SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = "USA"
|
medium
|
185 |
flight_2
|
[
"AIRPORTS"
] |
List the airport code and name in the city of Anthony.
|
SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = "Anthony"
|
medium
|
186 |
flight_2
|
[
"AIRPORTS"
] |
Give the airport code and airport name corresonding to the city Anthony.
|
SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = "Anthony"
|
medium
|
187 |
flight_2
|
[
"AIRLINES"
] |
How many airlines do we have?
|
SELECT count(*) FROM AIRLINES
|
easy
|
188 |
flight_2
|
[
"AIRLINES"
] |
What is the total number of airlines?
|
SELECT count(*) FROM AIRLINES
|
easy
|
189 |
flight_2
|
[
"AIRPORTS"
] |
How many airports do we have?
|
SELECT count(*) FROM AIRPORTS
|
easy
|
190 |
flight_2
|
[
"AIRPORTS"
] |
Return the number of airports.
|
SELECT count(*) FROM AIRPORTS
|
easy
|
191 |
flight_2
|
[
"FLIGHTS"
] |
How many flights do we have?
|
SELECT count(*) FROM FLIGHTS
|
easy
|
192 |
flight_2
|
[
"FLIGHTS"
] |
Return the number of flights.
|
SELECT count(*) FROM FLIGHTS
|
easy
|
193 |
flight_2
|
[
"AIRLINES"
] |
Which airline has abbreviation 'UAL'?
|
SELECT Airline FROM AIRLINES WHERE Abbreviation = "UAL"
|
easy
|
194 |
flight_2
|
[
"AIRLINES"
] |
Give the airline with abbreviation 'UAL'.
|
SELECT Airline FROM AIRLINES WHERE Abbreviation = "UAL"
|
easy
|
195 |
flight_2
|
[
"AIRLINES"
] |
How many airlines are from USA?
|
SELECT count(*) FROM AIRLINES WHERE Country = "USA"
|
easy
|
196 |
flight_2
|
[
"AIRLINES"
] |
Return the number of airlines in the USA.
|
SELECT count(*) FROM AIRLINES WHERE Country = "USA"
|
easy
|
197 |
flight_2
|
[
"AIRPORTS"
] |
Which city and country is the Alton airport at?
|
SELECT City , Country FROM AIRPORTS WHERE AirportName = "Alton"
|
medium
|
198 |
flight_2
|
[
"AIRPORTS"
] |
Give the city and country for the Alton airport.
|
SELECT City , Country FROM AIRPORTS WHERE AirportName = "Alton"
|
medium
|
199 |
flight_2
|
[
"AIRPORTS"
] |
What is the airport name for airport 'AKO'?
|
SELECT AirportName FROM AIRPORTS WHERE AirportCode = "AKO"
|
easy
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.