db_id
stringclasses
146 values
query
stringlengths
18
577
question
stringlengths
3
224
index
int64
0
7k
soccer_1
SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.preferred_foot = "left" AND T2.overall_rating >= 85 AND T2.overall_rating <= 90
List the names of all left-footed players who have overall rating between 85 and 90.
1,300
soccer_1
SELECT preferred_foot , avg(overall_rating) FROM Player_Attributes GROUP BY preferred_foot
What is the average rating for right-footed players and left-footed players?
1,301
soccer_1
SELECT preferred_foot , count(*) FROM Player_Attributes WHERE overall_rating > 80 GROUP BY preferred_foot
Of all players with an overall rating greater than 80, how many are right-footed and left-footed?
1,302
soccer_1
SELECT player_api_id FROM Player WHERE height >= 180 INTERSECT SELECT player_api_id FROM Player_Attributes WHERE overall_rating > 85
List all of the player ids with a height of at least 180cm and an overall rating higher than 85.
1,303
soccer_1
SELECT player_api_id FROM Player WHERE height >= 180 AND height <= 190 INTERSECT SELECT player_api_id FROM Player_Attributes WHERE preferred_foot = "left"
List all of the ids for left-footed players with a height between 180cm and 190cm.
1,304
soccer_1
SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id ORDER BY overall_rating DESC LIMIT 3
Who are the top 3 players in terms of overall rating?
1,305
soccer_1
SELECT DISTINCT T1.player_name , T1.birthday FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id ORDER BY potential DESC LIMIT 5
List the names and birthdays of the top five players in terms of potential.
1,306
performance_attendance
SELECT count(*) FROM performance
How many performances are there?
1,307
performance_attendance
SELECT HOST FROM performance ORDER BY Attendance ASC
List the hosts of performances in ascending order of attendance.
1,308
performance_attendance
SELECT Date , LOCATION FROM performance
What are the dates and locations of performances?
1,309
performance_attendance
SELECT Attendance FROM performance WHERE LOCATION = "TD Garden" OR LOCATION = "Bell Centre"
Show the attendances of the performances at location "TD Garden" or "Bell Centre"
1,310
performance_attendance
SELECT avg(Attendance) FROM performance
What is the average number of attendees for performances?
1,311
performance_attendance
SELECT Date FROM performance ORDER BY Attendance DESC LIMIT 1
What is the date of the performance with the highest number of attendees?
1,312
performance_attendance
SELECT LOCATION , COUNT(*) FROM performance GROUP BY LOCATION
Show different locations and the number of performances at each location.
1,313
performance_attendance
SELECT LOCATION FROM performance GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1
Show the most common location of performances.
1,314
performance_attendance
SELECT LOCATION FROM performance GROUP BY LOCATION HAVING COUNT(*) >= 2
Show the locations that have at least two performances.
1,315
performance_attendance
SELECT LOCATION FROM performance WHERE Attendance > 2000 INTERSECT SELECT LOCATION FROM performance WHERE Attendance < 1000
Show the locations that have both performances with more than 2000 attendees and performances with less than 1000 attendees.
1,316
performance_attendance
SELECT T2.Name , T3.Location FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID
Show the names of members and the location of the performances they attended.
1,317
performance_attendance
SELECT T2.Name , T3.Location FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T2.Name ASC
Show the names of members and the location of performances they attended in ascending alphabetical order of their names.
1,318
performance_attendance
SELECT T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID WHERE T2.Role = "Violin"
Show the dates of performances with attending members whose roles are "Violin".
1,319
performance_attendance
SELECT T2.Name , T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T3.Attendance DESC
Show the names of members and the dates of performances they attended in descending order of attendance of the performances.
1,320
performance_attendance
SELECT Name FROM member WHERE Member_ID NOT IN (SELECT Member_ID FROM member_attendance)
List the names of members who did not attend any performance.
1,321
college_2
SELECT DISTINCT building FROM classroom WHERE capacity > 50
Find the buildings which have rooms with capacity more than 50.
1,322
college_2
SELECT DISTINCT building FROM classroom WHERE capacity > 50
What are the distinct buildings with capacities of greater than 50?
1,323
college_2
SELECT count(*) FROM classroom WHERE building != 'Lamberton'
Count the number of rooms that are not in the Lamberton building.
1,324
college_2
SELECT count(*) FROM classroom WHERE building != 'Lamberton'
How many classrooms are not in Lamberton?
1,325
college_2
SELECT dept_name , building FROM department WHERE budget > (SELECT avg(budget) FROM department)
What is the name and building of the departments whose budget is more than the average budget?
1,326
college_2
SELECT dept_name , building FROM department WHERE budget > (SELECT avg(budget) FROM department)
Give the name and building of the departments with greater than average budget.
1,327
college_2
SELECT building , room_number FROM classroom WHERE capacity BETWEEN 50 AND 100
Find the room number of the rooms which can sit 50 to 100 students and their buildings.
1,328
college_2
SELECT building , room_number FROM classroom WHERE capacity BETWEEN 50 AND 100
What are the room numbers and corresponding buildings for classrooms which can seat between 50 to 100 students?
1,329
college_2
SELECT dept_name , building FROM department ORDER BY budget DESC LIMIT 1
Find the name and building of the department with the highest budget.
1,330
college_2
SELECT dept_name , building FROM department ORDER BY budget DESC LIMIT 1
What is the department name and corresponding building for the department with the greatest budget?
1,331
college_2
SELECT name FROM student WHERE dept_name = 'History' ORDER BY tot_cred DESC LIMIT 1
What is the name of the student who has the highest total credits in the History department.
1,332
college_2
SELECT name FROM student WHERE dept_name = 'History' ORDER BY tot_cred DESC LIMIT 1
Give the name of the student in the History department with the most credits.
1,333
college_2
SELECT count(*) FROM classroom WHERE building = 'Lamberton'
How many rooms does the Lamberton building have?
1,334
college_2
SELECT count(*) FROM classroom WHERE building = 'Lamberton'
Count the number of classrooms in Lamberton.
1,335
college_2
SELECT count(DISTINCT s_id) FROM advisor
How many students have advisors?
1,336
college_2
SELECT count(DISTINCT s_id) FROM advisor
Count the number of students who have advisors.
1,337
college_2
SELECT count(DISTINCT dept_name) FROM course
How many departments offer courses?
1,338
college_2
SELECT count(DISTINCT dept_name) FROM course
Count the number of departments which offer courses.
1,339
college_2
SELECT count(DISTINCT course_id) FROM course WHERE dept_name = 'Physics'
How many different courses offered by Physics department?
1,340
college_2
SELECT count(DISTINCT course_id) FROM course WHERE dept_name = 'Physics'
Count the number of courses in the Physics department.
1,341
college_2
SELECT T1.title FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING count(*) = 2
Find the title of courses that have two prerequisites?
1,342
college_2
SELECT T1.title FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING count(*) = 2
What are the titles for courses with two prerequisites?
1,343
college_2
SELECT T1.title , T1.credits , T1.dept_name FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING count(*) > 1
Find the title, credit, and department name of courses that have more than one prerequisites?
1,344
college_2
SELECT T1.title , T1.credits , T1.dept_name FROM course AS T1 JOIN prereq AS T2 ON T1.course_id = T2.course_id GROUP BY T2.course_id HAVING count(*) > 1
What is the title, credit value, and department name for courses with more than one prerequisite?
1,345
college_2
SELECT count(*) FROM course WHERE course_id NOT IN (SELECT course_id FROM prereq)
How many courses that do not have prerequisite?
1,346
college_2
SELECT count(*) FROM course WHERE course_id NOT IN (SELECT course_id FROM prereq)
Count the number of courses without prerequisites.
1,347
college_2
SELECT title FROM course WHERE course_id NOT IN (SELECT course_id FROM prereq)
Find the name of the courses that do not have any prerequisite?
1,348
college_2
SELECT title FROM course WHERE course_id NOT IN (SELECT course_id FROM prereq)
What are the titles of courses without prerequisites?
1,349
college_2
SELECT COUNT (DISTINCT id) FROM teaches
How many different instructors have taught some course?
1,350
college_2
SELECT COUNT (DISTINCT id) FROM teaches
Count the number of distinct instructors who have taught a course.
1,351
college_2
SELECT sum(budget) FROM department WHERE dept_name = 'Marketing' OR dept_name = 'Finance'
Find the total budgets of the Marketing or Finance department.
1,352
college_2
SELECT sum(budget) FROM department WHERE dept_name = 'Marketing' OR dept_name = 'Finance'
What is the sum of budgets of the Marketing and Finance departments?
1,353
college_2
SELECT dept_name FROM instructor WHERE name LIKE '%Soisalon%'
Find the department name of the instructor whose name contains 'Soisalon'.
1,354
college_2
SELECT dept_name FROM instructor WHERE name LIKE '%Soisalon%'
What is the name of the department with an instructure who has a name like 'Soisalon'?
1,355
college_2
SELECT count(*) FROM classroom WHERE building = 'Lamberton' AND capacity < 50
How many rooms whose capacity is less than 50 does the Lamberton building have?
1,356
college_2
SELECT count(*) FROM classroom WHERE building = 'Lamberton' AND capacity < 50
Count the number of rooms in Lamberton with capacity lower than 50.
1,357
college_2
SELECT dept_name , budget FROM department WHERE budget > (SELECT avg(budget) FROM department)
Find the name and budget of departments whose budgets are more than the average budget.
1,358
college_2
SELECT dept_name , budget FROM department WHERE budget > (SELECT avg(budget) FROM department)
What are the names and budgets of departments with budgets greater than the average?
1,359
college_2
SELECT name FROM instructor WHERE dept_name = 'Statistics' ORDER BY salary LIMIT 1
what is the name of the instructor who is in Statistics department and earns the lowest salary?
1,360
college_2
SELECT name FROM instructor WHERE dept_name = 'Statistics' ORDER BY salary LIMIT 1
Give the name of the lowest earning instructor in the Statistics department.
1,361
college_2
SELECT title FROM course WHERE dept_name = 'Statistics' INTERSECT SELECT title FROM course WHERE dept_name = 'Psychology'
Find the title of course that is provided by both Statistics and Psychology departments.
1,362
college_2
SELECT title FROM course WHERE dept_name = 'Statistics' INTERSECT SELECT title FROM course WHERE dept_name = 'Psychology'
What is the title of a course that is listed in both the Statistics and Psychology departments?
1,363
college_2
SELECT title FROM course WHERE dept_name = 'Statistics' EXCEPT SELECT title FROM course WHERE dept_name = 'Psychology'
Find the title of course that is provided by Statistics but not Psychology departments.
1,364
college_2
SELECT title FROM course WHERE dept_name = 'Statistics' EXCEPT SELECT title FROM course WHERE dept_name = 'Psychology'
What are the titles of courses that are in the Statistics department but not the Psychology department?
1,365
college_2
SELECT id FROM teaches WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT id FROM teaches WHERE semester = 'Spring' AND YEAR = 2010
Find the id of instructors who taught a class in Fall 2009 but not in Spring 2010.
1,366
college_2
SELECT id FROM teaches WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT id FROM teaches WHERE semester = 'Spring' AND YEAR = 2010
What are the ids of instructors who taught in the Fall of 2009 but not in the Spring of 2010?
1,367
college_2
SELECT DISTINCT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE YEAR = 2009 OR YEAR = 2010
Find the name of students who took any class in the years of 2009 and 2010.
1,368
college_2
SELECT DISTINCT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE YEAR = 2009 OR YEAR = 2010
What are the names of the students who took classes in 2009 or 2010?
1,369
college_2
SELECT dept_name FROM course GROUP BY dept_name ORDER BY count(*) DESC LIMIT 3
Find the names of the top 3 departments that provide the largest amount of courses?
1,370
college_2
SELECT dept_name FROM course GROUP BY dept_name ORDER BY count(*) DESC LIMIT 3
What are the names of the 3 departments with the most courses?
1,371
college_2
SELECT dept_name FROM course GROUP BY dept_name ORDER BY sum(credits) DESC LIMIT 1
Find the name of the department that offers the highest total credits?
1,372
college_2
SELECT dept_name FROM course GROUP BY dept_name ORDER BY sum(credits) DESC LIMIT 1
What is the name of the department with the most credits?
1,373
college_2
SELECT title FROM course ORDER BY title , credits
List the names of all courses ordered by their titles and credits.
1,374
college_2
SELECT title FROM course ORDER BY title , credits
Given the titles of all courses, in order of titles and credits.
1,375
college_2
SELECT dept_name FROM department ORDER BY budget LIMIT 1
Which department has the lowest budget?
1,376
college_2
SELECT dept_name FROM department ORDER BY budget LIMIT 1
Give the name of the department with the lowest budget.
1,377
college_2
SELECT dept_name , building FROM department ORDER BY budget DESC
List the names and buildings of all departments sorted by the budget from large to small.
1,378
college_2
SELECT dept_name , building FROM department ORDER BY budget DESC
What are the names and buildings of the deparments, sorted by budget descending?
1,379
college_2
SELECT name FROM instructor ORDER BY salary DESC LIMIT 1
Who is the instructor with the highest salary?
1,380
college_2
SELECT name FROM instructor ORDER BY salary DESC LIMIT 1
Give the name of the highest paid instructor.
1,381
college_2
SELECT * FROM instructor ORDER BY salary
List the information of all instructors ordered by their salary in ascending order.
1,382
college_2
SELECT * FROM instructor ORDER BY salary
Give all information regarding instructors, in order of salary from least to greatest.
1,383
college_2
SELECT name , dept_name FROM student ORDER BY tot_cred
Find the name of the students and their department names sorted by their total credits in ascending order.
1,384
college_2
SELECT name , dept_name FROM student ORDER BY tot_cred
What are the names of students and their respective departments, ordered by number of credits from least to greatest?
1,385
college_2
SELECT T1.title , T3.name FROM course AS T1 JOIN teaches AS T2 ON T1.course_id = T2.course_id JOIN instructor AS T3 ON T2.id = T3.id WHERE YEAR = 2008 ORDER BY T1.title
list in alphabetic order all course names and their instructors' names in year 2008.
1,386
college_2
SELECT T1.title , T3.name FROM course AS T1 JOIN teaches AS T2 ON T1.course_id = T2.course_id JOIN instructor AS T3 ON T2.id = T3.id WHERE YEAR = 2008 ORDER BY T1.title
Show all titles and their instructors' names for courses in 2008, in alphabetical order by title.
1,387
college_2
SELECT T1.name FROM instructor AS T1 JOIN advisor AS T2 ON T1.id = T2.i_id GROUP BY T2.i_id HAVING count(*) > 1
Find the name of instructors who are advising more than one student.
1,388
college_2
SELECT T1.name FROM instructor AS T1 JOIN advisor AS T2 ON T1.id = T2.i_id GROUP BY T2.i_id HAVING count(*) > 1
What are the names of instructors who advise more than one student?
1,389
college_2
SELECT T1.name FROM student AS T1 JOIN advisor AS T2 ON T1.id = T2.s_id GROUP BY T2.s_id HAVING count(*) > 1
Find the name of the students who have more than one advisor?
1,390
college_2
SELECT T1.name FROM student AS T1 JOIN advisor AS T2 ON T1.id = T2.s_id GROUP BY T2.s_id HAVING count(*) > 1
What are the names of students who have more than one advisor?
1,391
college_2
SELECT count(*) , building FROM classroom WHERE capacity > 50 GROUP BY building
Find the number of rooms with more than 50 capacity for each building.
1,392
college_2
SELECT count(*) , building FROM classroom WHERE capacity > 50 GROUP BY building
How many rooms in each building have a capacity of over 50?
1,393
college_2
SELECT max(capacity) , avg(capacity) , building FROM classroom GROUP BY building
Find the maximum and average capacity among rooms in each building.
1,394
college_2
SELECT max(capacity) , avg(capacity) , building FROM classroom GROUP BY building
What are the greatest and average capacity for rooms in each building?
1,395
college_2
SELECT title FROM course GROUP BY title HAVING count(*) > 1
Find the title of the course that is offered by more than one department.
1,396
college_2
SELECT title FROM course GROUP BY title HAVING count(*) > 1
What are the titles of courses that are offered in more than one department?
1,397
college_2
SELECT sum(credits) , dept_name FROM course GROUP BY dept_name
Find the total credits of courses provided by different department.
1,398
college_2
SELECT sum(credits) , dept_name FROM course GROUP BY dept_name
How many total credits are offered by each department?
1,399