query_id
int64 0
2.15k
| database_id
stringclasses 40
values | table_id
listlengths 1
4
| query
stringlengths 22
185
| answer
stringlengths 22
608
| difficulty
stringclasses 4
values |
---|---|---|---|---|---|
1,300 |
art_1
|
[
"paintings"
] |
What are the ids of the paintings created before all of the paintings in gallery 240?
|
SELECT paintingID FROM paintings WHERE YEAR < (SELECT min(YEAR) FROM paintings WHERE LOCATION = 'Gallery 240')
|
hard
|
1,301 |
art_1
|
[
"paintings"
] |
What is the id of every painting created before the oldest painting in gallery 240?
|
SELECT paintingID FROM paintings WHERE YEAR < (SELECT min(YEAR) FROM paintings WHERE LOCATION = 'Gallery 240')
|
hard
|
1,302 |
art_1
|
[
"paintings"
] |
What are the ids of the paintings whose height is longer than the height of all paintings created after 1900?
|
SELECT paintingID FROM paintings WHERE height_mm > (SELECT max(height_mm) FROM paintings WHERE YEAR > 1900)
|
hard
|
1,303 |
art_1
|
[
"paintings"
] |
List the ids of all paintings that are taller than the longest painting created after 1900.
|
SELECT paintingID FROM paintings WHERE height_mm > (SELECT max(height_mm) FROM paintings WHERE YEAR > 1900)
|
hard
|
1,304 |
art_1
|
[
"artists",
"paintings"
] |
Find the top 3 artists who have the biggest number of painting works whose medium is oil?
|
SELECT T1.lname , T1.fname FROM artists AS T1 JOIN paintings AS T2 ON T1.artistID = T2.painterID WHERE T2.medium = "oil" GROUP BY T2.painterID ORDER BY count(*) DESC LIMIT 3
|
extra
|
1,305 |
art_1
|
[
"artists",
"paintings"
] |
Which artists have the most paintings in oil?
|
SELECT T1.lname , T1.fname FROM artists AS T1 JOIN paintings AS T2 ON T1.artistID = T2.painterID WHERE T2.medium = "oil" GROUP BY T2.painterID ORDER BY count(*) DESC LIMIT 3
|
extra
|
1,306 |
art_1
|
[
"paintings"
] |
List the painting id, location and title of the medium oil paintings ordered by year.
|
SELECT paintingID , title , LOCATION FROM paintings WHERE medium = "oil" ORDER BY YEAR
|
medium
|
1,307 |
art_1
|
[
"paintings"
] |
Order all of the oil paintings by date of creation and list their ids, locations, and titles.
|
SELECT paintingID , title , LOCATION FROM paintings WHERE medium = "oil" ORDER BY YEAR
|
medium
|
1,308 |
art_1
|
[
"paintings"
] |
List the year, location and title of paintings whose height is longer than 1000 ordered by title.
|
SELECT title , LOCATION , YEAR FROM paintings WHERE height_mm > 1000 ORDER BY title
|
medium
|
1,309 |
art_1
|
[
"paintings"
] |
List the year, location, and name of all paintings that are taller than 1000 in alphabetical order.
|
SELECT title , LOCATION , YEAR FROM paintings WHERE height_mm > 1000 ORDER BY title
|
medium
|
1,310 |
art_1
|
[
"artists",
"paintings",
"sculptures"
] |
Find the first and last name of artists who have painting but no sculpture work.
|
SELECT T1.lname , T1.fname FROM artists AS T1 JOIN paintings AS T2 ON T1.artistID = T2.painterID EXCEPT SELECT T3.lname , T3.fname FROM artists AS T3 JOIN sculptures AS T4 ON T3.artistID = T4.sculptorID
|
extra
|
1,311 |
art_1
|
[
"artists",
"paintings",
"sculptures"
] |
What are the first and last names of the artists who did not sculpt but could paint.
|
SELECT T1.lname , T1.fname FROM artists AS T1 JOIN paintings AS T2 ON T1.artistID = T2.painterID EXCEPT SELECT T3.lname , T3.fname FROM artists AS T3 JOIN sculptures AS T4 ON T3.artistID = T4.sculptorID
|
extra
|
1,312 |
art_1
|
[
"paintings"
] |
Find the locations that have paintings before 1885 and no work with medium on canvas?
|
SELECT DISTINCT LOCATION FROM paintings WHERE YEAR < 1885 AND mediumOn != "canvas"
|
medium
|
1,313 |
art_1
|
[
"paintings"
] |
Where do you have paintings that were created before 1885 that are not on canvas?
|
SELECT DISTINCT LOCATION FROM paintings WHERE YEAR < 1885 AND mediumOn != "canvas"
|
medium
|
1,314 |
car_road_race
|
[
"race"
] |
How many races are there?
|
SELECT count(*) FROM race
|
easy
|
1,315 |
car_road_race
|
[
"race"
] |
Count the number of races.
|
SELECT count(*) FROM race
|
easy
|
1,316 |
car_road_race
|
[
"race"
] |
List the winning drivers and winning teams of races in ascending alphabetical order of winning team.
|
SELECT Winning_driver , Winning_team FROM race ORDER BY Winning_team ASC
|
medium
|
1,317 |
car_road_race
|
[
"race"
] |
What are the winning drivers and teams of races, ordered alphabetically by team?
|
SELECT Winning_driver , Winning_team FROM race ORDER BY Winning_team ASC
|
medium
|
1,318 |
car_road_race
|
[
"race"
] |
Which winning drivers of races had pole position that is not "Junior Strous"?
|
SELECT Winning_driver FROM race WHERE Pole_Position != 'Junior Strous'
|
easy
|
1,319 |
car_road_race
|
[
"race"
] |
Return the winning drivers of races who did not have the pole position of Junior Strous.
|
SELECT Winning_driver FROM race WHERE Pole_Position != 'Junior Strous'
|
easy
|
1,320 |
car_road_race
|
[
"driver"
] |
Who are the constructors of drivers sorted by drivers' age in ascending order?
|
SELECT DISTINCT CONSTRUCTOR FROM driver ORDER BY Age ASC
|
easy
|
1,321 |
car_road_race
|
[
"driver"
] |
Return the different constructors of drivers, ordered by age ascending.
|
SELECT DISTINCT CONSTRUCTOR FROM driver ORDER BY Age ASC
|
easy
|
1,322 |
car_road_race
|
[
"driver"
] |
What are the distinct entrant types of drivers aged 20 or older?
|
SELECT DISTINCT Entrant FROM driver WHERE Age >= 20
|
easy
|
1,323 |
car_road_race
|
[
"driver"
] |
Give the different entrant types for drivers at least 20 years old.
|
SELECT DISTINCT Entrant FROM driver WHERE Age >= 20
|
easy
|
1,324 |
car_road_race
|
[
"driver"
] |
What are the maximum and minimum age of driver?
|
SELECT max(Age) , min(Age) FROM driver
|
medium
|
1,325 |
car_road_race
|
[
"driver"
] |
Return the maximum and minimum age across drivers.
|
SELECT max(Age) , min(Age) FROM driver
|
medium
|
1,326 |
car_road_race
|
[
"driver"
] |
How many different engines are used by drivers with age older than 30 or younger than 20?
|
SELECT count(DISTINCT Engine) FROM driver WHERE Age > 30 OR Age < 20
|
medium
|
1,327 |
car_road_race
|
[
"driver"
] |
Count the number of different engines used by drivers who had an age either over 30 or under 20.
|
SELECT count(DISTINCT Engine) FROM driver WHERE Age > 30 OR Age < 20
|
medium
|
1,328 |
car_road_race
|
[
"driver"
] |
List all names of drivers in descending alphabetical order.
|
SELECT Driver_Name FROM driver ORDER BY Driver_Name DESC
|
easy
|
1,329 |
car_road_race
|
[
"driver"
] |
What are the names of drivers, ordered descending alphabetically?
|
SELECT Driver_Name FROM driver ORDER BY Driver_Name DESC
|
easy
|
1,330 |
car_road_race
|
[
"driver",
"race"
] |
Please show the names of drivers and the names of races they participate in.
|
SELECT T1.Driver_Name , T2.Race_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID
|
medium
|
1,331 |
car_road_race
|
[
"driver",
"race"
] |
What are the names of drivers and the names of the races they took part in?
|
SELECT T1.Driver_Name , T2.Race_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID
|
medium
|
1,332 |
car_road_race
|
[
"driver",
"race"
] |
Please show the names of drivers and the number of races they participate in.
|
SELECT T1.Driver_Name , COUNT(*) FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID GROUP BY T1.Driver_ID
|
medium
|
1,333 |
car_road_race
|
[
"driver",
"race"
] |
How many races did each driver participate in?
|
SELECT T1.Driver_Name , COUNT(*) FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID GROUP BY T1.Driver_ID
|
medium
|
1,334 |
car_road_race
|
[
"driver",
"race"
] |
Please show the age of the driver who participated in the most number of races.
|
SELECT T1.Age FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID GROUP BY T1.Driver_ID ORDER BY COUNT(*) DESC LIMIT 1
|
extra
|
1,335 |
car_road_race
|
[
"driver",
"race"
] |
What is the age of the driver who raced in the most races?
|
SELECT T1.Age FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID GROUP BY T1.Driver_ID ORDER BY COUNT(*) DESC LIMIT 1
|
extra
|
1,336 |
car_road_race
|
[
"driver",
"race"
] |
Please show the names and ages of the drivers who participated in at least two races.
|
SELECT T1.Driver_Name , T1.Age FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID GROUP BY T1.Driver_ID HAVING COUNT(*) >= 2
|
medium
|
1,337 |
car_road_race
|
[
"driver",
"race"
] |
What are the names and ages of drivers who raced in two or more races?
|
SELECT T1.Driver_Name , T1.Age FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID GROUP BY T1.Driver_ID HAVING COUNT(*) >= 2
|
medium
|
1,338 |
car_road_race
|
[
"driver",
"race"
] |
Please list the names of races with drivers aged 26 or older participating.
|
SELECT T2.Race_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE T1.Age >= 26
|
medium
|
1,339 |
car_road_race
|
[
"driver",
"race"
] |
What are the names of races in which drivers 26 or older took part?
|
SELECT T2.Race_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE T1.Age >= 26
|
medium
|
1,340 |
car_road_race
|
[
"driver"
] |
List the names of drivers whose constructor is not "Bugatti".
|
SELECT Driver_Name FROM driver WHERE CONSTRUCTOR != "Bugatti"
|
easy
|
1,341 |
car_road_race
|
[
"driver"
] |
What are the names od drivers who did not have the constructor Bugatti?
|
SELECT Driver_Name FROM driver WHERE CONSTRUCTOR != "Bugatti"
|
easy
|
1,342 |
car_road_race
|
[
"driver"
] |
List different constructors and the number of drivers that use each constructor.
|
SELECT CONSTRUCTOR , COUNT(*) FROM driver GROUP BY CONSTRUCTOR
|
medium
|
1,343 |
car_road_race
|
[
"driver"
] |
How many drivers use each constructor?
|
SELECT CONSTRUCTOR , COUNT(*) FROM driver GROUP BY CONSTRUCTOR
|
medium
|
1,344 |
car_road_race
|
[
"driver"
] |
List the most common type of engine used by drivers.
|
SELECT Engine FROM driver GROUP BY Engine ORDER BY COUNT(*) DESC LIMIT 1
|
hard
|
1,345 |
car_road_race
|
[
"driver"
] |
What is the most common type of engine?
|
SELECT Engine FROM driver GROUP BY Engine ORDER BY COUNT(*) DESC LIMIT 1
|
hard
|
1,346 |
car_road_race
|
[
"driver"
] |
List the types of engines that are used by at least two drivers.
|
SELECT Engine FROM driver GROUP BY Engine HAVING COUNT(*) >= 2
|
easy
|
1,347 |
car_road_race
|
[
"driver"
] |
What are the engine types that are used by two or more drivers?
|
SELECT Engine FROM driver GROUP BY Engine HAVING COUNT(*) >= 2
|
easy
|
1,348 |
car_road_race
|
[
"driver",
"race"
] |
List the names of drivers that do not participate in any race.
|
SELECT Driver_Name FROM driver WHERE Driver_ID NOT IN (SELECT Driver_ID FROM race)
|
hard
|
1,349 |
car_road_race
|
[
"driver",
"race"
] |
What are names of drivers who did not take part in a race?
|
SELECT Driver_Name FROM driver WHERE Driver_ID NOT IN (SELECT Driver_ID FROM race)
|
hard
|
1,350 |
car_road_race
|
[
"driver"
] |
Show the constructors that are used both by drivers with age lower than 20 and drivers with age over than 30.
|
SELECT CONSTRUCTOR FROM driver WHERE Age < 20 INTERSECT SELECT CONSTRUCTOR FROM driver WHERE Age > 30
|
hard
|
1,351 |
car_road_race
|
[
"driver"
] |
What are the constructors who are used by both drivers who are younger than 20 and drivers older than 30?
|
SELECT CONSTRUCTOR FROM driver WHERE Age < 20 INTERSECT SELECT CONSTRUCTOR FROM driver WHERE Age > 30
|
hard
|
1,352 |
car_road_race
|
[
"race"
] |
Find the teams that won more than once.
|
SELECT Winning_team FROM race GROUP BY Winning_team HAVING count(*) > 1
|
easy
|
1,353 |
car_road_race
|
[
"race"
] |
Which teams won more than 1 race?
|
SELECT Winning_team FROM race GROUP BY Winning_team HAVING count(*) > 1
|
easy
|
1,354 |
car_road_race
|
[
"driver",
"race"
] |
Find the names of drivers who were in both "James Hinchcliffe" and "Carl Skerlong" pole positions before.
|
SELECT T1.Driver_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE Pole_Position = "Carl Skerlong" INTERSECT SELECT T1.Driver_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE Pole_Position = "James Hinchcliffe"
|
extra
|
1,355 |
car_road_race
|
[
"driver",
"race"
] |
What are the names of drivers who had both the pole position James Hinchcliffe and the pole position Carl Skerlong?
|
SELECT T1.Driver_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE Pole_Position = "Carl Skerlong" INTERSECT SELECT T1.Driver_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE Pole_Position = "James Hinchcliffe"
|
extra
|
1,356 |
car_road_race
|
[
"driver",
"race"
] |
find the name of drivers who were never in "James Hinchcliffe" pole position before.
|
SELECT Driver_Name FROM driver EXCEPT SELECT T1.Driver_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE Pole_Position = "James Hinchcliffe"
|
hard
|
1,357 |
car_road_race
|
[
"driver",
"race"
] |
What are the names of drivers except for those who had the pole position James Hinchcliffe?
|
SELECT Driver_Name FROM driver EXCEPT SELECT T1.Driver_Name FROM driver AS T1 JOIN race AS T2 ON T1.Driver_ID = T2.Driver_ID WHERE Pole_Position = "James Hinchcliffe"
|
hard
|
1,358 |
country_language
|
[
"languages"
] |
How many languages are there?
|
SELECT count(*) FROM languages
|
easy
|
1,359 |
country_language
|
[
"languages"
] |
Count the number of languages.
|
SELECT count(*) FROM languages
|
easy
|
1,360 |
country_language
|
[
"languages"
] |
List the name of languages in ascending alphabetical order.
|
SELECT name FROM languages ORDER BY name ASC
|
easy
|
1,361 |
country_language
|
[
"languages"
] |
What are the names of languages, in alphabetical order?
|
SELECT name FROM languages ORDER BY name ASC
|
easy
|
1,362 |
country_language
|
[
"languages"
] |
What are the names of languages that contain the word "ish"?
|
SELECT name FROM languages WHERE name LIKE "%ish%"
|
medium
|
1,363 |
country_language
|
[
"languages"
] |
Return the names of langauges that contain the substring "ish".
|
SELECT name FROM languages WHERE name LIKE "%ish%"
|
medium
|
1,364 |
country_language
|
[
"countries"
] |
Show the names of countries in descending order of overall scores.
|
SELECT name FROM countries ORDER BY overall_score DESC
|
easy
|
1,365 |
country_language
|
[
"countries"
] |
What are the names of the countries, ordered descending by overall score?
|
SELECT name FROM countries ORDER BY overall_score DESC
|
easy
|
1,366 |
country_language
|
[
"countries"
] |
What is the average justice scores among countries?
|
SELECT avg(justice_score) FROM countries
|
easy
|
1,367 |
country_language
|
[
"countries"
] |
Give the average justice scores across all countries.
|
SELECT avg(justice_score) FROM countries
|
easy
|
1,368 |
country_language
|
[
"countries"
] |
What are the maximum and minimum health scores among countries that are not "Norway".
|
SELECT max(health_score) , min(health_score) FROM countries WHERE name != "Norway"
|
medium
|
1,369 |
country_language
|
[
"countries"
] |
Return the maximum and minimum health scores across all countries other than Norway.
|
SELECT max(health_score) , min(health_score) FROM countries WHERE name != "Norway"
|
medium
|
1,370 |
country_language
|
[
"official_languages"
] |
How many different official languages are there?
|
SELECT count(DISTINCT language_id) FROM official_languages
|
easy
|
1,371 |
country_language
|
[
"official_languages"
] |
Count the number of different official languages.
|
SELECT count(DISTINCT language_id) FROM official_languages
|
easy
|
1,372 |
country_language
|
[
"countries"
] |
List names of countries in descending order of education_score.
|
SELECT name FROM countries ORDER BY education_score DESC
|
easy
|
1,373 |
country_language
|
[
"countries"
] |
What are the names of the countries, ordered descending by education score?
|
SELECT name FROM countries ORDER BY education_score DESC
|
easy
|
1,374 |
country_language
|
[
"countries"
] |
List the name of the country with the biggest score in politics.
|
SELECT name FROM countries ORDER BY politics_score DESC LIMIT 1
|
medium
|
1,375 |
country_language
|
[
"countries"
] |
What is the name of the country with the highest politics score?
|
SELECT name FROM countries ORDER BY politics_score DESC LIMIT 1
|
medium
|
1,376 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
Show the names of countries and their official languages.
|
SELECT T1.name , T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id
|
medium
|
1,377 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
What are the names of the countries, as well as the names of their official langauges?
|
SELECT T1.name , T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id
|
medium
|
1,378 |
country_language
|
[
"official_languages",
"languages"
] |
Show the official languages and the number of countries speaking each language.
|
SELECT T2.name , COUNT(*) FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.name
|
medium
|
1,379 |
country_language
|
[
"official_languages",
"languages"
] |
What are the names of the different official languages, as well as the number of countries that speak each?
|
SELECT T2.name , COUNT(*) FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.name
|
medium
|
1,380 |
country_language
|
[
"official_languages",
"languages"
] |
Show the official language spoken by the most number of countries.
|
SELECT T2.name FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 1
|
extra
|
1,381 |
country_language
|
[
"official_languages",
"languages"
] |
What is the official language that is most common?
|
SELECT T2.name FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 1
|
extra
|
1,382 |
country_language
|
[
"official_languages",
"languages"
] |
Show the official languages spoken by at least two countries.
|
SELECT T2.name FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.id HAVING COUNT(*) >= 2
|
medium
|
1,383 |
country_language
|
[
"official_languages",
"languages"
] |
Which official languages are spoken in two or more countries?
|
SELECT T2.name FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.id HAVING COUNT(*) >= 2
|
medium
|
1,384 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
Show the average overall scores of countries whose official language is "English".
|
SELECT avg(T1.overall_score) FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id WHERE T3.name = "English"
|
hard
|
1,385 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
What is the average overall score across countries with English as their official language?
|
SELECT avg(T1.overall_score) FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id WHERE T3.name = "English"
|
hard
|
1,386 |
country_language
|
[
"official_languages",
"languages"
] |
Show the three official languages that are most commonly spoken.
|
SELECT T2.name FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 3
|
extra
|
1,387 |
country_language
|
[
"official_languages",
"languages"
] |
What are the names of the three official languages spoken in the most countries?
|
SELECT T2.name FROM official_languages AS T1 JOIN languages AS T2 ON T1.language_id = T2.id GROUP BY T2.id ORDER BY COUNT(*) DESC LIMIT 3
|
extra
|
1,388 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
Show the official languages sorted in descending order by the average overall scores among countries speaking them.
|
SELECT T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id GROUP BY T3.id ORDER BY avg(T1.overall_score) DESC
|
extra
|
1,389 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
What are the names of the official languages, sorted descending by the average overall scores across the countries that correspond to each?
|
SELECT T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id GROUP BY T3.id ORDER BY avg(T1.overall_score) DESC
|
extra
|
1,390 |
country_language
|
[
"countries",
"official_languages"
] |
Show the name of the country that has the greatest number of official languages.
|
SELECT T1.Name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1
|
extra
|
1,391 |
country_language
|
[
"countries",
"official_languages"
] |
Which country has the greatest number of official languages?
|
SELECT T1.Name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1
|
extra
|
1,392 |
country_language
|
[
"official_languages",
"languages"
] |
List the names of languages that are not the official language of any countries.
|
SELECT name FROM languages WHERE id NOT IN (SELECT language_id FROM official_languages)
|
hard
|
1,393 |
country_language
|
[
"official_languages",
"languages"
] |
What are the names of languages that are not the official language of any country?
|
SELECT name FROM languages WHERE id NOT IN (SELECT language_id FROM official_languages)
|
hard
|
1,394 |
country_language
|
[
"countries",
"official_languages"
] |
List the names of countries that do not have any official language.
|
SELECT name FROM countries WHERE id NOT IN (SELECT country_id FROM official_languages)
|
hard
|
1,395 |
country_language
|
[
"countries",
"official_languages"
] |
What are the names of countries that do not have an official language?
|
SELECT name FROM countries WHERE id NOT IN (SELECT country_id FROM official_languages)
|
hard
|
1,396 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
Show the names of languages that are the official language for both countries with overall score greater than 95 and countries with overall score less than than 90.
|
SELECT T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id WHERE T1.overall_score > 95 INTERSECT SELECT T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id WHERE T1.overall_score < 90
|
extra
|
1,397 |
country_language
|
[
"countries",
"official_languages",
"languages"
] |
What are the names of languages that are the official language not only for countries that have an overall score of above 95, but also for countries that have an overall score below 90?
|
SELECT T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id WHERE T1.overall_score > 95 INTERSECT SELECT T3.name FROM countries AS T1 JOIN official_languages AS T2 ON T1.id = T2.country_id JOIN languages AS T3 ON T2.language_id = T3.id WHERE T1.overall_score < 90
|
extra
|
1,398 |
real_estate_rentals
|
[
"addresses"
] |
Which countries and cities are included in addresses?
|
SELECT country , town_city FROM Addresses;
|
medium
|
1,399 |
real_estate_rentals
|
[
"addresses"
] |
What are the countries and cities for each address?
|
SELECT country , town_city FROM Addresses;
|
medium
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.