training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE Apartment_Bookings (booking_start_date VARCHAR, guest_id VARCHAR); CREATE TABLE Guests (guest_id VARCHAR, gender_code VARCHAR)
###human: Show the start dates and end dates of all the apartment bookings made by guests with gender code "Female".
###assistant: SELECT T1.booking_start_date, T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T2.gender_code = "Female" |
###context:CREATE TABLE Apartment_Bookings (guest_id VARCHAR, booking_status_code VARCHAR); CREATE TABLE Guests (guest_first_name VARCHAR, guest_last_name VARCHAR, guest_id VARCHAR)
###human: Show the first names and last names of all the guests that have apartment bookings with status code "Confirmed".
###assistant: SELECT T2.guest_first_name, T2.guest_last_name FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T1.booking_status_code = "Confirmed" |
###context:CREATE TABLE Apartment_Facilities (facility_code VARCHAR, apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR, bedroom_count INTEGER)
###human: Show the facility codes of apartments with more than 4 bedrooms.
###assistant: SELECT T1.facility_code FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4 |
###context:CREATE TABLE Apartments (room_count INTEGER, apt_id VARCHAR); CREATE TABLE Apartment_Facilities (apt_id VARCHAR, facility_code VARCHAR)
###human: Show the total number of rooms of all apartments with facility code "Gym".
###assistant: SELECT SUM(T2.room_count) FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.facility_code = "Gym" |
###context:CREATE TABLE Apartment_Buildings (building_id VARCHAR, building_short_name VARCHAR); CREATE TABLE Apartments (room_count INTEGER, building_id VARCHAR)
###human: Show the total number of rooms of the apartments in the building with short name "Columbus Square".
###assistant: SELECT SUM(T2.room_count) FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_short_name = "Columbus Square" |
###context:CREATE TABLE Apartment_Buildings (building_address VARCHAR, building_id VARCHAR); CREATE TABLE Apartments (building_id VARCHAR, bathroom_count INTEGER)
###human: Show the addresses of the buildings that have apartments with more than 2 bathrooms.
###assistant: SELECT T1.building_address FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T2.bathroom_count > 2 |
###context:CREATE TABLE Apartment_Buildings (building_id VARCHAR, building_manager VARCHAR); CREATE TABLE Apartments (apt_type_code VARCHAR, apt_number VARCHAR, building_id VARCHAR)
###human: Show the apartment type codes and apartment numbers in the buildings managed by "Kyle".
###assistant: SELECT T2.apt_type_code, T2.apt_number FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_manager = "Kyle" |
###context:CREATE TABLE Apartment_Bookings (booking_status_code VARCHAR)
###human: Show the booking status code and the corresponding number of bookings.
###assistant: SELECT booking_status_code, COUNT(*) FROM Apartment_Bookings GROUP BY booking_status_code |
###context:CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)
###human: Return all the apartment numbers sorted by the room count in ascending order.
###assistant: SELECT apt_number FROM Apartments ORDER BY room_count |
###context:CREATE TABLE Apartments (apt_number VARCHAR, bedroom_count VARCHAR)
###human: Return the apartment number with the largest number of bedrooms.
###assistant: SELECT apt_number FROM Apartments ORDER BY bedroom_count DESC LIMIT 1 |
###context:CREATE TABLE Apartments (apt_type_code VARCHAR)
###human: Show the apartment type codes and the corresponding number of apartments sorted by the number of apartments in ascending order.
###assistant: SELECT apt_type_code, COUNT(*) FROM Apartments GROUP BY apt_type_code ORDER BY COUNT(*) |
###context:CREATE TABLE Apartments (apt_type_code VARCHAR, room_count INTEGER)
###human: Show the top 3 apartment type codes sorted by the average number of rooms in descending order.
###assistant: SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY AVG(room_count) DESC LIMIT 3 |
###context:CREATE TABLE Apartments (apt_type_code VARCHAR, bathroom_count VARCHAR, bedroom_count VARCHAR, room_count INTEGER)
###human: Show the apartment type code that has the largest number of total rooms, together with the number of bathrooms and number of bedrooms.
###assistant: SELECT apt_type_code, bathroom_count, bedroom_count FROM Apartments GROUP BY apt_type_code ORDER BY SUM(room_count) DESC LIMIT 1 |
###context:CREATE TABLE Apartments (apt_type_code VARCHAR)
###human: Show the most common apartment type code.
###assistant: SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE Apartments (apt_type_code VARCHAR, bathroom_count INTEGER)
###human: Show the most common apartment type code among apartments with more than 1 bathroom.
###assistant: SELECT apt_type_code FROM Apartments WHERE bathroom_count > 1 GROUP BY apt_type_code ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE Apartments (apt_type_code VARCHAR, room_count INTEGER)
###human: Show each apartment type code, and the maximum and minimum number of rooms for each type.
###assistant: SELECT apt_type_code, MAX(room_count), MIN(room_count) FROM Apartments GROUP BY apt_type_code |
###context:CREATE TABLE Guests (gender_code VARCHAR)
###human: Show each gender code and the corresponding count of guests sorted by the count in descending order.
###assistant: SELECT gender_code, COUNT(*) FROM Guests GROUP BY gender_code ORDER BY COUNT(*) DESC |
###context:CREATE TABLE Apartment_Facilities (apt_id VARCHAR); CREATE TABLE Apartments (apt_id VARCHAR)
###human: How many apartments do not have any facility?
###assistant: SELECT COUNT(*) FROM Apartments WHERE NOT apt_id IN (SELECT apt_id FROM Apartment_Facilities) |
###context:CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR); CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR)
###human: Show the apartment numbers of apartments with bookings that have status code both "Provisional" and "Confirmed"
###assistant: SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Confirmed" INTERSECT SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional" |
###context:CREATE TABLE View_Unit_Status (apt_id VARCHAR, available_yn VARCHAR); CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR)
###human: Show the apartment numbers of apartments with unit status availability of both 0 and 1.
###assistant: SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 0 INTERSECT SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 1 |
###context:CREATE TABLE game (season INTEGER)
###human: How many games are held after season 2007?
###assistant: SELECT COUNT(*) FROM game WHERE season > 2007 |
###context:CREATE TABLE game (Date VARCHAR, home_team VARCHAR)
###human: List the dates of games by the home team name in descending order.
###assistant: SELECT Date FROM game ORDER BY home_team DESC |
###context:CREATE TABLE game (season VARCHAR, home_team VARCHAR, away_team VARCHAR)
###human: List the season, home team, away team of all the games.
###assistant: SELECT season, home_team, away_team FROM game |
###context:CREATE TABLE stadium (home_games INTEGER)
###human: What are the maximum, minimum and average home games each stadium held?
###assistant: SELECT MAX(home_games), MIN(home_games), AVG(home_games) FROM stadium |
###context:CREATE TABLE stadium (average_attendance VARCHAR, capacity_percentage INTEGER)
###human: What is the average attendance of stadiums with capacity percentage higher than 100%?
###assistant: SELECT average_attendance FROM stadium WHERE capacity_percentage > 100 |
###context:CREATE TABLE injury_accident (player VARCHAR, number_of_matches VARCHAR, SOURCE VARCHAR, injury VARCHAR)
###human: What are the player name, number of matches, and information source for players who do not suffer from injury of 'Knee problem'?
###assistant: SELECT player, number_of_matches, SOURCE FROM injury_accident WHERE injury <> 'Knee problem' |
###context:CREATE TABLE injury_accident (game_id VARCHAR, player VARCHAR); CREATE TABLE game (season VARCHAR, id VARCHAR)
###human: What is the season of the game which causes the player 'Walter Samuel' to get injured?
###assistant: SELECT T1.season FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id WHERE T2.player = 'Walter Samuel' |
###context:CREATE TABLE game (id VARCHAR, score VARCHAR, date VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR)
###human: What are the ids, scores, and dates of the games which caused at least two injury accidents?
###assistant: SELECT T1.id, T1.score, T1.date FROM game AS T1 JOIN injury_accident AS T2 ON T2.game_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2 |
###context:CREATE TABLE stadium (id VARCHAR, name VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR); CREATE TABLE game (stadium_id VARCHAR, id VARCHAR)
###human: What are the id and name of the stadium where the most injury accidents happened?
###assistant: SELECT T1.id, T1.name FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id JOIN injury_accident AS T3 ON T2.id = T3.game_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR, injury VARCHAR); CREATE TABLE game (season VARCHAR, stadium_id VARCHAR, id VARCHAR)
###human: In which season and which stadium did any player have an injury of 'Foot injury' or 'Knee problem'?
###assistant: SELECT T1.season, T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.injury = 'Foot injury' OR T3.injury = 'Knee problem' |
###context:CREATE TABLE injury_accident (SOURCE VARCHAR)
###human: How many different kinds of information sources are there for injury accidents?
###assistant: SELECT COUNT(DISTINCT SOURCE) FROM injury_accident |
###context:CREATE TABLE injury_accident (id VARCHAR, game_id VARCHAR); CREATE TABLE game (id VARCHAR, game_id VARCHAR)
###human: How many games are free of injury accidents?
###assistant: SELECT COUNT(*) FROM game WHERE NOT id IN (SELECT game_id FROM injury_accident) |
###context:CREATE TABLE injury_accident (injury VARCHAR, game_id VARCHAR); CREATE TABLE game (id VARCHAR, season INTEGER)
###human: How many distinct kinds of injuries happened after season 2010?
###assistant: SELECT COUNT(DISTINCT T1.injury) FROM injury_accident AS T1 JOIN game AS T2 ON T1.game_id = T2.id WHERE T2.season > 2010 |
###context:CREATE TABLE stadium (name VARCHAR, id VARCHAR); CREATE TABLE game (stadium_id VARCHAR, id VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR, player VARCHAR)
###human: List the name of the stadium where both the player 'Walter Samuel' and the player 'Thiago Motta' got injured.
###assistant: SELECT T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.player = 'Walter Samuel' INTERSECT SELECT T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.player = 'Thiago Motta' |
###context:CREATE TABLE stadium (name VARCHAR, average_attendance VARCHAR, total_attendance VARCHAR, id VARCHAR); CREATE TABLE stadium (name VARCHAR, average_attendance VARCHAR, total_attendance VARCHAR); CREATE TABLE game (stadium_id VARCHAR, id VARCHAR); CREATE TABLE injury_accident (game_id VARCHAR)
###human: Show the name, average attendance, total attendance for stadiums where no accidents happened.
###assistant: SELECT name, average_attendance, total_attendance FROM stadium EXCEPT SELECT T2.name, T2.average_attendance, T2.total_attendance FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id |
###context:CREATE TABLE stadium (name VARCHAR)
###human: Which stadium name contains the substring "Bank"?
###assistant: SELECT name FROM stadium WHERE name LIKE "%Bank%" |
###context:CREATE TABLE stadium (id VARCHAR); CREATE TABLE game (stadium_id VARCHAR)
###human: How many games has each stadium held?
###assistant: SELECT T1.id, COUNT(*) FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id GROUP BY T1.id |
###context:CREATE TABLE game (date VARCHAR, id VARCHAR, season VARCHAR); CREATE TABLE injury_accident (player VARCHAR, game_id VARCHAR)
###human: For each injury accident, find the date of the game and the name of the injured player in the game, and sort the results in descending order of game season.
###assistant: SELECT T1.date, T2.player FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id ORDER BY T1.season DESC |
###context:CREATE TABLE League (name VARCHAR, country_id VARCHAR); CREATE TABLE Country (name VARCHAR, id VARCHAR)
###human: List all country and league names.
###assistant: SELECT T1.name, T2.name FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id |
###context:CREATE TABLE League (country_id VARCHAR); CREATE TABLE Country (id VARCHAR, name VARCHAR)
###human: How many leagues are there in England?
###assistant: SELECT COUNT(*) FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id WHERE T1.name = "England" |
###context:CREATE TABLE Player (weight INTEGER)
###human: What is the average weight of all players?
###assistant: SELECT AVG(weight) FROM Player |
###context:CREATE TABLE Player (weight INTEGER)
###human: What is the maximum and minimum height of all players?
###assistant: SELECT MAX(weight), MIN(weight) FROM Player |
###context:CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (overall_rating INTEGER); CREATE TABLE Player_Attributes (player_api_id VARCHAR, overall_rating INTEGER)
###human: List all player names who have an overall rating higher than the average.
###assistant: 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.overall_rating > (SELECT AVG(overall_rating) FROM Player_Attributes) |
###context:CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, dribbling VARCHAR); CREATE TABLE Player_Attributes (overall_rating INTEGER)
###human: What are the names of players who have the best dribbling?
###assistant: 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.dribbling = (SELECT MAX(overall_rating) FROM Player_Attributes) |
###context:CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, crossing VARCHAR, preferred_foot VARCHAR)
###human: List the names of all players who have a crossing score higher than 90 and prefer their right foot.
###assistant: 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.crossing > 90 AND T2.preferred_foot = "right" |
###context:CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR, overall_rating VARCHAR, preferred_foot VARCHAR)
###human: List the names of all left-footed players who have overall rating between 85 and 90.
###assistant: 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 |
###context:CREATE TABLE Player_Attributes (preferred_foot VARCHAR, overall_rating INTEGER)
###human: What is the average rating for right-footed players and left-footed players?
###assistant: SELECT preferred_foot, AVG(overall_rating) FROM Player_Attributes GROUP BY preferred_foot |
###context:CREATE TABLE Player_Attributes (preferred_foot VARCHAR, overall_rating INTEGER)
###human: Of all players with an overall rating greater than 80, how many are right-footed and left-footed?
###assistant: SELECT preferred_foot, COUNT(*) FROM Player_Attributes WHERE overall_rating > 80 GROUP BY preferred_foot |
###context:CREATE TABLE Player_Attributes (player_api_id VARCHAR, height VARCHAR, overall_rating INTEGER); CREATE TABLE Player (player_api_id VARCHAR, height VARCHAR, overall_rating INTEGER)
###human: List all of the player ids with a height of at least 180cm and an overall rating higher than 85.
###assistant: SELECT player_api_id FROM Player WHERE height >= 180 INTERSECT SELECT player_api_id FROM Player_Attributes WHERE overall_rating > 85 |
###context:CREATE TABLE Player_Attributes (player_api_id VARCHAR, preferred_foot VARCHAR, height VARCHAR); CREATE TABLE Player (player_api_id VARCHAR, preferred_foot VARCHAR, height VARCHAR)
###human: List all of the ids for left-footed players with a height between 180cm and 190cm.
###assistant: SELECT player_api_id FROM Player WHERE height >= 180 AND height <= 190 INTERSECT SELECT player_api_id FROM Player_Attributes WHERE preferred_foot = "left" |
###context:CREATE TABLE Player (player_name VARCHAR, player_api_id VARCHAR); CREATE TABLE Player_Attributes (player_api_id VARCHAR)
###human: Who are the top 3 players in terms of overall rating?
###assistant: 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 |
###context:CREATE TABLE Player_Attributes (player_api_id VARCHAR); CREATE TABLE Player (player_name VARCHAR, birthday VARCHAR, player_api_id VARCHAR)
###human: List the names and birthdays of the top five players in terms of potential.
###assistant: 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 |
###context:CREATE TABLE performance (Id VARCHAR)
###human: How many performances are there?
###assistant: SELECT COUNT(*) FROM performance |
###context:CREATE TABLE performance (HOST VARCHAR, Attendance VARCHAR)
###human: List the hosts of performances in ascending order of attendance.
###assistant: SELECT HOST FROM performance ORDER BY Attendance |
###context:CREATE TABLE performance (Date VARCHAR, LOCATION VARCHAR)
###human: What are the dates and locations of performances?
###assistant: SELECT Date, LOCATION FROM performance |
###context:CREATE TABLE performance (Attendance VARCHAR, LOCATION VARCHAR)
###human: Show the attendances of the performances at location "TD Garden" or "Bell Centre"
###assistant: SELECT Attendance FROM performance WHERE LOCATION = "TD Garden" OR LOCATION = "Bell Centre" |
###context:CREATE TABLE performance (Attendance INTEGER)
###human: What is the average number of attendees for performances?
###assistant: SELECT AVG(Attendance) FROM performance |
###context:CREATE TABLE performance (Date VARCHAR, Attendance VARCHAR)
###human: What is the date of the performance with the highest number of attendees?
###assistant: SELECT Date FROM performance ORDER BY Attendance DESC LIMIT 1 |
###context:CREATE TABLE performance (LOCATION VARCHAR)
###human: Show different locations and the number of performances at each location.
###assistant: SELECT LOCATION, COUNT(*) FROM performance GROUP BY LOCATION |
###context:CREATE TABLE performance (LOCATION VARCHAR)
###human: Show the most common location of performances.
###assistant: SELECT LOCATION FROM performance GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE performance (LOCATION VARCHAR)
###human: Show the locations that have at least two performances.
###assistant: SELECT LOCATION FROM performance GROUP BY LOCATION HAVING COUNT(*) >= 2 |
###context:CREATE TABLE performance (LOCATION VARCHAR, Attendance INTEGER)
###human: Show the locations that have both performances with more than 2000 attendees and performances with less than 1000 attendees.
###assistant: SELECT LOCATION FROM performance WHERE Attendance > 2000 INTERSECT SELECT LOCATION FROM performance WHERE Attendance < 1000 |
###context:CREATE TABLE performance (Location VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)
###human: Show the names of members and the location of the performances they attended.
###assistant: 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 |
###context:CREATE TABLE performance (Location VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)
###human: Show the names of members and the location of performances they attended in ascending alphabetical order of their names.
###assistant: 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 |
###context:CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Member_ID VARCHAR, Role VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)
###human: Show the dates of performances with attending members whose roles are "Violin".
###assistant: 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" |
###context:CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR, Attendance VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)
###human: Show the names of members and the dates of performances they attended in descending order of attendance of the performances.
###assistant: 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 |
###context:CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Name VARCHAR, Member_ID VARCHAR)
###human: List the names of members who did not attend any performance.
###assistant: SELECT Name FROM member WHERE NOT Member_ID IN (SELECT Member_ID FROM member_attendance) |
###context:CREATE TABLE classroom (building VARCHAR, capacity INTEGER)
###human: Find the buildings which have rooms with capacity more than 50.
###assistant: SELECT DISTINCT building FROM classroom WHERE capacity > 50 |
###context:CREATE TABLE classroom (building VARCHAR)
###human: Count the number of rooms that are not in the Lamberton building.
###assistant: SELECT COUNT(*) FROM classroom WHERE building <> 'Lamberton' |
###context:CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget INTEGER)
###human: What is the name and building of the departments whose budget is more than the average budget?
###assistant: SELECT dept_name, building FROM department WHERE budget > (SELECT AVG(budget) FROM department) |
###context:CREATE TABLE classroom (building VARCHAR, room_number VARCHAR, capacity INTEGER)
###human: Find the room number of the rooms which can sit 50 to 100 students and their buildings.
###assistant: SELECT building, room_number FROM classroom WHERE capacity BETWEEN 50 AND 100 |
###context:CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget VARCHAR)
###human: Find the name and building of the department with the highest budget.
###assistant: SELECT dept_name, building FROM department ORDER BY budget DESC LIMIT 1 |
###context:CREATE TABLE student (name VARCHAR, dept_name VARCHAR, tot_cred VARCHAR)
###human: What is the name of the student who has the highest total credits in the History department.
###assistant: SELECT name FROM student WHERE dept_name = 'History' ORDER BY tot_cred DESC LIMIT 1 |
###context:CREATE TABLE classroom (building VARCHAR)
###human: How many rooms does the Lamberton building have?
###assistant: SELECT COUNT(*) FROM classroom WHERE building = 'Lamberton' |
###context:CREATE TABLE advisor (s_id VARCHAR)
###human: How many students have advisors?
###assistant: SELECT COUNT(DISTINCT s_id) FROM advisor |
###context:CREATE TABLE course (dept_name VARCHAR)
###human: How many departments offer courses?
###assistant: SELECT COUNT(DISTINCT dept_name) FROM course |
###context:CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR)
###human: How many different courses offered by Physics department?
###assistant: SELECT COUNT(DISTINCT course_id) FROM course WHERE dept_name = 'Physics' |
###context:CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR)
###human: Find the title of courses that have two prerequisites?
###assistant: 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 |
###context:CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (title VARCHAR, credits VARCHAR, dept_name VARCHAR, course_id VARCHAR)
###human: Find the title, credit, and department name of courses that have more than one prerequisites?
###assistant: 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 |
###context:CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (course_id VARCHAR)
###human: How many courses that do not have prerequisite?
###assistant: SELECT COUNT(*) FROM course WHERE NOT course_id IN (SELECT course_id FROM prereq) |
###context:CREATE TABLE prereq (title VARCHAR, course_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR)
###human: Find the name of the courses that do not have any prerequisite?
###assistant: SELECT title FROM course WHERE NOT course_id IN (SELECT course_id FROM prereq) |
###context:CREATE TABLE teaches (id VARCHAR)
###human: How many different instructors have taught some course?
###assistant: SELECT COUNT(DISTINCT id) FROM teaches |
###context:CREATE TABLE department (budget INTEGER, dept_name VARCHAR)
###human: Find the total budgets of the Marketing or Finance department.
###assistant: SELECT SUM(budget) FROM department WHERE dept_name = 'Marketing' OR dept_name = 'Finance' |
###context:CREATE TABLE instructor (dept_name VARCHAR, name VARCHAR)
###human: Find the department name of the instructor whose name contains 'Soisalon'.
###assistant: SELECT dept_name FROM instructor WHERE name LIKE '%Soisalon%' |
###context:CREATE TABLE classroom (building VARCHAR, capacity VARCHAR)
###human: How many rooms whose capacity is less than 50 does the Lamberton building have?
###assistant: SELECT COUNT(*) FROM classroom WHERE building = 'Lamberton' AND capacity < 50 |
###context:CREATE TABLE department (dept_name VARCHAR, budget INTEGER)
###human: Find the name and budget of departments whose budgets are more than the average budget.
###assistant: SELECT dept_name, budget FROM department WHERE budget > (SELECT AVG(budget) FROM department) |
###context:CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR, salary VARCHAR)
###human: what is the name of the instructor who is in Statistics department and earns the lowest salary?
###assistant: SELECT name FROM instructor WHERE dept_name = 'Statistics' ORDER BY salary LIMIT 1 |
###context:CREATE TABLE course (title VARCHAR, dept_name VARCHAR)
###human: Find the title of course that is provided by both Statistics and Psychology departments.
###assistant: SELECT title FROM course WHERE dept_name = 'Statistics' INTERSECT SELECT title FROM course WHERE dept_name = 'Psychology' |
###context:CREATE TABLE course (title VARCHAR, dept_name VARCHAR)
###human: Find the title of course that is provided by Statistics but not Psychology departments.
###assistant: SELECT title FROM course WHERE dept_name = 'Statistics' EXCEPT SELECT title FROM course WHERE dept_name = 'Psychology' |
###context:CREATE TABLE teaches (id VARCHAR, semester VARCHAR, YEAR VARCHAR)
###human: Find the id of instructors who taught a class in Fall 2009 but not in Spring 2010.
###assistant: SELECT id FROM teaches WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT id FROM teaches WHERE semester = 'Spring' AND YEAR = 2010 |
###context:CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE takes (id VARCHAR)
###human: Find the name of students who took any class in the years of 2009 and 2010.
###assistant: SELECT DISTINCT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE YEAR = 2009 OR YEAR = 2010 |
###context:CREATE TABLE course (dept_name VARCHAR)
###human: Find the names of the top 3 departments that provide the largest amount of courses?
###assistant: SELECT dept_name FROM course GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 3 |
###context:CREATE TABLE course (dept_name VARCHAR, credits INTEGER)
###human: Find the name of the department that offers the highest total credits?
###assistant: SELECT dept_name FROM course GROUP BY dept_name ORDER BY SUM(credits) DESC LIMIT 1 |
###context:CREATE TABLE course (title VARCHAR, credits VARCHAR)
###human: List the names of all courses ordered by their titles and credits.
###assistant: SELECT title FROM course ORDER BY title, credits |
###context:CREATE TABLE department (dept_name VARCHAR, budget VARCHAR)
###human: Which department has the lowest budget?
###assistant: SELECT dept_name FROM department ORDER BY budget LIMIT 1 |
###context:CREATE TABLE department (dept_name VARCHAR, building VARCHAR, budget VARCHAR)
###human: List the names and buildings of all departments sorted by the budget from large to small.
###assistant: SELECT dept_name, building FROM department ORDER BY budget DESC |
###context:CREATE TABLE instructor (name VARCHAR, salary VARCHAR)
###human: Who is the instructor with the highest salary?
###assistant: SELECT name FROM instructor ORDER BY salary DESC LIMIT 1 |
###context:CREATE TABLE instructor (salary VARCHAR)
###human: List the information of all instructors ordered by their salary in ascending order.
###assistant: SELECT * FROM instructor ORDER BY salary |
###context:CREATE TABLE student (name VARCHAR, dept_name VARCHAR, tot_cred VARCHAR)
###human: Find the name of the students and their department names sorted by their total credits in ascending order.
###assistant: SELECT name, dept_name FROM student ORDER BY tot_cred |
###context:CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE teaches (course_id VARCHAR, id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
###human: list in alphabetic order all course names and their instructors' names in year 2008.
###assistant: 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 |
Subsets and Splits