query_id
int64 0
7k
| database_id
stringclasses 140
values | table_id
listlengths 1
5
| query
stringlengths 16
224
| answer
stringlengths 18
577
| difficulty
stringclasses 4
values |
---|---|---|---|---|---|
5,200 |
music_2
|
[
"instruments"
] |
What are the different instruments listed in the database?
|
SELECT DISTINCT instrument FROM Instruments
|
easy
|
5,201 |
music_2
|
[
"band",
"songs",
"instruments",
"performance"
] |
What instrument did the musician with last name "Heilo" use in the song "Le Pop"?
|
SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Le Pop"
|
extra
|
5,202 |
music_2
|
[
"band",
"songs",
"instruments",
"performance"
] |
What instruments did the musician with the last name "Heilo" play in the song "Le Pop"?
|
SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Le Pop"
|
extra
|
5,203 |
music_2
|
[
"instruments"
] |
What is the most used instrument?
|
SELECT instrument FROM instruments GROUP BY instrument ORDER BY count(*) DESC LIMIT 1
|
hard
|
5,204 |
music_2
|
[
"instruments"
] |
What instrument is used the most?
|
SELECT instrument FROM instruments GROUP BY instrument ORDER BY count(*) DESC LIMIT 1
|
hard
|
5,205 |
music_2
|
[
"instruments"
] |
How many songs have used the instrument "drums"?
|
SELECT count(*) FROM instruments WHERE instrument = "drums"
|
easy
|
5,206 |
music_2
|
[
"instruments"
] |
How many songs use drums as an instrument?
|
SELECT count(*) FROM instruments WHERE instrument = "drums"
|
easy
|
5,207 |
music_2
|
[
"instruments",
"songs"
] |
What instruments does the the song "Le Pop" use?
|
SELECT instrument FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,208 |
music_2
|
[
"instruments",
"songs"
] |
What are the instruments are used in the song "Le Pop"?
|
SELECT instrument FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,209 |
music_2
|
[
"instruments",
"songs"
] |
How many instruments does the song "Le Pop" use?
|
SELECT count(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,210 |
music_2
|
[
"instruments",
"songs"
] |
How many different instruments are used in the song "Le Pop"?
|
SELECT count(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,211 |
music_2
|
[
"instruments",
"band"
] |
How many instrument does the musician with last name "Heilo" use?
|
SELECT count(DISTINCT instrument) FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
|
medium
|
5,212 |
music_2
|
[
"instruments",
"band"
] |
How many different instruments does the musician with the last name "Heilo" use?
|
SELECT count(DISTINCT instrument) FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
|
medium
|
5,213 |
music_2
|
[
"instruments",
"band"
] |
Find all the instruments ever used by the musician with last name "Heilo"?
|
SELECT instrument FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
|
medium
|
5,214 |
music_2
|
[
"instruments",
"band"
] |
What are all the instruments used by the musician with the last name "Heilo"?
|
SELECT instrument FROM instruments AS T1 JOIN Band AS T2 ON T1.bandmateid = T2.id WHERE T2.lastname = "Heilo"
|
medium
|
5,215 |
music_2
|
[
"songs",
"vocals"
] |
Which song has the most vocals?
|
SELECT title FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid GROUP BY T1.songid ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,216 |
music_2
|
[
"songs",
"vocals"
] |
What is the song with the most vocals?
|
SELECT title FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid GROUP BY T1.songid ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,217 |
music_2
|
[
"vocals"
] |
Which vocal type is the most frequently appearring type?
|
SELECT TYPE FROM vocals GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
hard
|
5,218 |
music_2
|
[
"vocals"
] |
What is the type of vocables that appears most frequently?
|
SELECT TYPE FROM vocals GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
hard
|
5,219 |
music_2
|
[
"band",
"vocals"
] |
Which vocal type has the band mate with last name "Heilo" played the most?
|
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE lastname = "Heilo" GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,220 |
music_2
|
[
"band",
"vocals"
] |
What is the type of vocals that the band member with the last name "Heilo" played the most?
|
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE lastname = "Heilo" GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,221 |
music_2
|
[
"songs",
"vocals"
] |
What are the vocal types used in song "Le Pop"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,222 |
music_2
|
[
"songs",
"vocals"
] |
What are the types of vocals used in the song "Le Pop"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,223 |
music_2
|
[
"songs",
"vocals"
] |
Find the number of vocal types used in song "Demon Kitty Rag"?
|
SELECT count(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Demon Kitty Rag"
|
medium
|
5,224 |
music_2
|
[
"songs",
"vocals"
] |
What are the types of vocals used in the song "Demon Kitty Rag"?
|
SELECT count(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Demon Kitty Rag"
|
medium
|
5,225 |
music_2
|
[
"songs",
"vocals"
] |
How many songs have a lead vocal?
|
SELECT count(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = "lead"
|
medium
|
5,226 |
music_2
|
[
"songs",
"vocals"
] |
How many songs have vocals of type lead?
|
SELECT count(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = "lead"
|
medium
|
5,227 |
music_2
|
[
"songs",
"band",
"vocals"
] |
Which vocal type did the musician with first name "Solveig" played in the song with title "A Bar in Amsterdam"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.firstname = "Solveig" AND T2.title = "A Bar In Amsterdam"
|
hard
|
5,228 |
music_2
|
[
"songs",
"band",
"vocals"
] |
What are the types of vocals that the musician with the first name "Solveig" played in the song "A Bar in Amsterdam"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.firstname = "Solveig" AND T2.title = "A Bar In Amsterdam"
|
hard
|
5,229 |
music_2
|
[
"songs",
"vocals"
] |
Find all the songs that do not have a lead vocal.
|
SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "lead"
|
hard
|
5,230 |
music_2
|
[
"songs",
"vocals"
] |
What are the names of the songs without a lead vocal?
|
SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "lead"
|
hard
|
5,231 |
music_2
|
[
"vocals"
] |
Find all the vocal types.
|
SELECT DISTINCT TYPE FROM vocals
|
easy
|
5,232 |
music_2
|
[
"vocals"
] |
What are the different types of vocals?
|
SELECT DISTINCT TYPE FROM vocals
|
easy
|
5,233 |
music_2
|
[
"albums"
] |
What are the albums produced in year 2010?
|
SELECT * FROM Albums WHERE YEAR = 2010
|
easy
|
5,234 |
music_2
|
[
"albums"
] |
What information is there on albums from 2010?
|
SELECT * FROM Albums WHERE YEAR = 2010
|
easy
|
5,235 |
music_2
|
[
"band",
"songs",
"performance"
] |
Who performed the song named "Le Pop"?
|
SELECT T2.firstname , T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Le Pop"
|
hard
|
5,236 |
music_2
|
[
"band",
"songs",
"performance"
] |
What is the first and last name of artist who performed "Le Pop"?
|
SELECT T2.firstname , T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Le Pop"
|
hard
|
5,237 |
music_2
|
[
"band",
"songs",
"performance"
] |
What is the last name of the musician that have produced the most songs?
|
SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,238 |
music_2
|
[
"band",
"songs",
"performance"
] |
What is the last name of the artist who sang the most songs?
|
SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,239 |
music_2
|
[
"band",
"songs",
"instruments",
"performance"
] |
What instrument did the musician with last name "Heilo" use in the song "Badlands"?
|
SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Badlands"
|
extra
|
5,240 |
music_2
|
[
"band",
"songs",
"instruments",
"performance"
] |
What instruments did the musician with the last name "Heilo" play in "Badlands"?
|
SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Badlands"
|
extra
|
5,241 |
music_2
|
[
"instruments",
"songs"
] |
How many instruments does the song "Badlands" use?
|
SELECT count(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Badlands"
|
medium
|
5,242 |
music_2
|
[
"instruments",
"songs"
] |
How many different instruments are used in the song "Badlands"?
|
SELECT count(DISTINCT instrument) FROM instruments AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Badlands"
|
medium
|
5,243 |
music_2
|
[
"songs",
"vocals"
] |
What are the vocal types used in song "Badlands"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Badlands"
|
medium
|
5,244 |
music_2
|
[
"songs",
"vocals"
] |
What types of vocals are used in the song "Badlands"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Badlands"
|
medium
|
5,245 |
music_2
|
[
"songs",
"vocals"
] |
Find the number of vocal types used in song "Le Pop"
|
SELECT count(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,246 |
music_2
|
[
"songs",
"vocals"
] |
How many vocal types are used in the song "Le Pop"?
|
SELECT count(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Le Pop"
|
medium
|
5,247 |
music_2
|
[
"songs",
"vocals"
] |
How many songs have a shared vocal?
|
SELECT count(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = "shared"
|
medium
|
5,248 |
music_2
|
[
"songs",
"vocals"
] |
How many different songs have shared vocals?
|
SELECT count(DISTINCT title) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE TYPE = "shared"
|
medium
|
5,249 |
music_2
|
[
"songs",
"vocals"
] |
Find all the songs that do not have a back vocal.
|
SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "back"
|
hard
|
5,250 |
music_2
|
[
"songs",
"vocals"
] |
What are the different names of all songs without back vocals?
|
SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "back"
|
hard
|
5,251 |
music_2
|
[
"band",
"vocals"
] |
Which vocal type has the band mate with first name "Solveig" played the most?
|
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = "Solveig" GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,252 |
music_2
|
[
"band",
"vocals"
] |
What are the types of vocals that the band member with the first name "Solveig" played the most?
|
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = "Solveig" GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,253 |
music_2
|
[
"songs",
"band",
"vocals"
] |
Which vocal type did the musician with last name "Heilo" played in the song with title "Der Kapitan"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.lastname = "Heilo" AND T2.title = "Der Kapitan"
|
hard
|
5,254 |
music_2
|
[
"songs",
"band",
"vocals"
] |
What are the types of vocals that the musician with the last name "Heilo" played in "Der Kapitan"?
|
SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.lastname = "Heilo" AND T2.title = "Der Kapitan"
|
hard
|
5,255 |
music_2
|
[
"band",
"songs",
"performance"
] |
Find the first name of the band mate that has performed in most songs.
|
SELECT t2.firstname FROM Performance AS t1 JOIN Band AS t2 ON t1.bandmate = t2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY firstname ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,256 |
music_2
|
[
"band",
"songs",
"performance"
] |
What is the first name of the band mate who perfomed in the most songs?
|
SELECT t2.firstname FROM Performance AS t1 JOIN Band AS t2 ON t1.bandmate = t2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY firstname ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,257 |
music_2
|
[
"band",
"vocals"
] |
Which vocal type has the band mate with first name "Marianne" played the most?
|
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = "Marianne" GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,258 |
music_2
|
[
"band",
"vocals"
] |
What is the vocal type of the band mate whose first name is "Marianne" played the most?
|
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = "Marianne" GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
extra
|
5,259 |
music_2
|
[
"band",
"songs",
"performance"
] |
Who is performing in the back stage position for the song "Der Kapitan"? Show the first name and last name.
|
SELECT T2.firstname , T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Der Kapitan" AND T1.StagePosition = "back"
|
hard
|
5,260 |
music_2
|
[
"band",
"songs",
"performance"
] |
What is the first and last name of the artist who performed back stage for the song "Der Kapitan"?
|
SELECT T2.firstname , T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Der Kapitan" AND T1.StagePosition = "back"
|
hard
|
5,261 |
music_2
|
[
"songs",
"vocals"
] |
Find the name of songs that does not have a back vocal.
|
SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "back"
|
hard
|
5,262 |
music_2
|
[
"songs",
"vocals"
] |
What are the names of the songs that do not have back vocals?
|
SELECT DISTINCT title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid EXCEPT SELECT t2.title FROM vocals AS t1 JOIN songs AS t2 ON t1.songid = t2.songid WHERE TYPE = "back"
|
hard
|
5,263 |
music_2
|
[
"tracklists",
"albums",
"songs"
] |
What are the songs in album "A Kiss Before You Go: Live in Hamburg"?
|
SELECT T3.title FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE T1.title = "A Kiss Before You Go: Live in Hamburg"
|
hard
|
5,264 |
music_2
|
[
"tracklists",
"albums",
"songs"
] |
What are the song titles on the album "A Kiss Before You Go: Live in Hamburg"?
|
SELECT T3.title FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE T1.title = "A Kiss Before You Go: Live in Hamburg"
|
hard
|
5,265 |
music_2
|
[
"tracklists",
"albums",
"songs"
] |
What are all the songs in albums under label "Universal Music Group"?
|
SELECT T3.title FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE t1.label = "Universal Music Group"
|
hard
|
5,266 |
music_2
|
[
"tracklists",
"albums",
"songs"
] |
What are the names of all the songs whose album is under the label of "Universal Music Group"?
|
SELECT T3.title FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE t1.label = "Universal Music Group"
|
hard
|
5,267 |
music_2
|
[
"tracklists",
"albums",
"songs"
] |
Find the number of songs in all the studio albums.
|
SELECT count(DISTINCT T3.title) FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE t1.type = "Studio"
|
hard
|
5,268 |
music_2
|
[
"tracklists",
"albums",
"songs"
] |
How many songs appear in studio albums?
|
SELECT count(DISTINCT T3.title) FROM albums AS T1 JOIN tracklists AS T2 ON T1.aid = T2.albumid JOIN songs AS T3 ON T2.songid = T3.songid WHERE t1.type = "Studio"
|
hard
|
5,269 |
manufactory_1
|
[
"manufacturers"
] |
Who is the founder of Sony?
|
SELECT founder FROM manufacturers WHERE name = 'Sony'
|
easy
|
5,270 |
manufactory_1
|
[
"manufacturers"
] |
Return the founder of Sony.
|
SELECT founder FROM manufacturers WHERE name = 'Sony'
|
easy
|
5,271 |
manufactory_1
|
[
"manufacturers"
] |
Where is the headquarter of the company founded by James?
|
SELECT headquarter FROM manufacturers WHERE founder = 'James'
|
easy
|
5,272 |
manufactory_1
|
[
"manufacturers"
] |
What is the headquarter of the company whose founder is James?
|
SELECT headquarter FROM manufacturers WHERE founder = 'James'
|
easy
|
5,273 |
manufactory_1
|
[
"manufacturers"
] |
Find all manufacturers' names and their headquarters, sorted by the ones with highest revenue first.
|
SELECT name , headquarter FROM manufacturers ORDER BY revenue DESC
|
medium
|
5,274 |
manufactory_1
|
[
"manufacturers"
] |
What are the names and headquarters of all manufacturers, ordered by revenue descending?
|
SELECT name , headquarter FROM manufacturers ORDER BY revenue DESC
|
medium
|
5,275 |
manufactory_1
|
[
"manufacturers"
] |
What are the average, maximum and total revenues of all companies?
|
SELECT avg(revenue) , max(revenue) , sum(revenue) FROM manufacturers
|
medium
|
5,276 |
manufactory_1
|
[
"manufacturers"
] |
Return the average, maximum, and total revenues across all manufacturers.
|
SELECT avg(revenue) , max(revenue) , sum(revenue) FROM manufacturers
|
medium
|
5,277 |
manufactory_1
|
[
"manufacturers"
] |
How many companies were created by Andy?
|
SELECT count(*) FROM manufacturers WHERE founder = 'Andy'
|
easy
|
5,278 |
manufactory_1
|
[
"manufacturers"
] |
Return the number of companies created by Andy.
|
SELECT count(*) FROM manufacturers WHERE founder = 'Andy'
|
easy
|
5,279 |
manufactory_1
|
[
"manufacturers"
] |
Find the total revenue created by the companies whose headquarter is located at Austin.
|
SELECT sum(revenue) FROM manufacturers WHERE headquarter = 'Austin'
|
easy
|
5,280 |
manufactory_1
|
[
"manufacturers"
] |
What is the sum of revenue from companies with headquarters in Austin?
|
SELECT sum(revenue) FROM manufacturers WHERE headquarter = 'Austin'
|
easy
|
5,281 |
manufactory_1
|
[
"manufacturers"
] |
What are the different cities listed?
|
SELECT DISTINCT headquarter FROM manufacturers
|
easy
|
5,282 |
manufactory_1
|
[
"manufacturers"
] |
Give the distinct headquarters of manufacturers.
|
SELECT DISTINCT headquarter FROM manufacturers
|
easy
|
5,283 |
manufactory_1
|
[
"manufacturers"
] |
Find the number of manufactures that are based in Tokyo or Beijing.
|
SELECT count(*) FROM manufacturers WHERE headquarter = 'Tokyo' OR headquarter = 'Beijing'
|
medium
|
5,284 |
manufactory_1
|
[
"manufacturers"
] |
How many manufacturers have headquarters in either Tokyo or Beijing?
|
SELECT count(*) FROM manufacturers WHERE headquarter = 'Tokyo' OR headquarter = 'Beijing'
|
medium
|
5,285 |
manufactory_1
|
[
"manufacturers"
] |
Find the founder of the company whose name begins with the letter 'S'.
|
SELECT founder FROM manufacturers WHERE name LIKE 'S%'
|
medium
|
5,286 |
manufactory_1
|
[
"manufacturers"
] |
Who is the founders of companies whose first letter is S?
|
SELECT founder FROM manufacturers WHERE name LIKE 'S%'
|
medium
|
5,287 |
manufactory_1
|
[
"manufacturers"
] |
Find the name of companies whose revenue is between 100 and 150.
|
SELECT name FROM manufacturers WHERE revenue BETWEEN 100 AND 150
|
easy
|
5,288 |
manufactory_1
|
[
"manufacturers"
] |
What are the names of companies with revenue between 100 and 150?
|
SELECT name FROM manufacturers WHERE revenue BETWEEN 100 AND 150
|
easy
|
5,289 |
manufactory_1
|
[
"manufacturers"
] |
What is the total revenue of all companies whose main office is at Tokyo or Taiwan?
|
SELECT sum(revenue) FROM manufacturers WHERE Headquarter = 'Tokyo' OR Headquarter = 'Taiwan'
|
medium
|
5,290 |
manufactory_1
|
[
"manufacturers"
] |
Return the total revenue of companies with headquarters in Tokyo or Taiwan.
|
SELECT sum(revenue) FROM manufacturers WHERE Headquarter = 'Tokyo' OR Headquarter = 'Taiwan'
|
medium
|
5,291 |
manufactory_1
|
[
"manufacturers",
"products"
] |
Find the name of product that is produced by both companies Creative Labs and Sony.
|
SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Creative Labs' INTERSECT SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Sony'
|
extra
|
5,292 |
manufactory_1
|
[
"manufacturers",
"products"
] |
What are the names of products produced by both Creative Labs and Sony?
|
SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Creative Labs' INTERSECT SELECT T1.name FROM products AS T1 JOIN manufacturers AS T2 ON T1.Manufacturer = T2.code WHERE T2.name = 'Sony'
|
extra
|
5,293 |
manufactory_1
|
[
"manufacturers"
] |
Find the name, headquarter and founder of the manufacturer that has the highest revenue.
|
SELECT name , headquarter , founder FROM manufacturers ORDER BY revenue DESC LIMIT 1
|
medium
|
5,294 |
manufactory_1
|
[
"manufacturers"
] |
What are the names, headquarters and founders of the company with the highest revenue?
|
SELECT name , headquarter , founder FROM manufacturers ORDER BY revenue DESC LIMIT 1
|
medium
|
5,295 |
manufactory_1
|
[
"manufacturers"
] |
Find the name, headquarter and revenue of all manufacturers sorted by their revenue in the descending order.
|
SELECT name , headquarter , revenue FROM manufacturers ORDER BY revenue DESC
|
medium
|
5,296 |
manufactory_1
|
[
"manufacturers"
] |
What are the names, headquarters and revenues for manufacturers, sorted by revenue descending?
|
SELECT name , headquarter , revenue FROM manufacturers ORDER BY revenue DESC
|
medium
|
5,297 |
manufactory_1
|
[
"manufacturers"
] |
Find the name of companies whose revenue is greater than the average revenue of all companies.
|
SELECT name FROM manufacturers WHERE revenue > (SELECT avg(revenue) FROM manufacturers)
|
hard
|
5,298 |
manufactory_1
|
[
"manufacturers"
] |
What are the names of manufacturers with revenue greater than the average of all revenues?
|
SELECT name FROM manufacturers WHERE revenue > (SELECT avg(revenue) FROM manufacturers)
|
hard
|
5,299 |
manufactory_1
|
[
"manufacturers"
] |
Find the name of companies whose revenue is smaller than the revenue of all companies based in Austin.
|
SELECT name FROM manufacturers WHERE revenue < (SELECT min(revenue) FROM manufacturers WHERE headquarter = 'Austin')
|
hard
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.