question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
WHAT ARE THE LAPS WITH POINTS LARGER THAN 5, WITH FORSYTHE RACING, AND GRID 5?
CREATE TABLE table_name_22 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR)
SELECT MIN(laps) FROM table_name_22 WHERE points > 5 AND team = "forsythe racing" AND grid = 5
### Context: CREATE TABLE table_name_22 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR) ### Question: WHAT ARE THE LAPS WITH POINTS LARGER THAN 5, WITH FORSYTHE RACING, AND GRID 5? ### Answer: SELECT MIN(laps) FROM table_name_22 WHERE points > 5 AND team = "forsythe racing" AND grid = 5
WHAT IS THE SCORE WHEN THE COMPETITION WAS 1978 world cup qualification?
CREATE TABLE table_name_2 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_2 WHERE competition = "1978 world cup qualification"
### Context: CREATE TABLE table_name_2 (score VARCHAR, competition VARCHAR) ### Question: WHAT IS THE SCORE WHEN THE COMPETITION WAS 1978 world cup qualification? ### Answer: SELECT score FROM table_name_2 WHERE competition = "1978 world cup qualification"
What is the average pick number for jerry hackenbruck who was overall pick less than 282?
CREATE TABLE table_name_78 (pick INTEGER, name VARCHAR, overall VARCHAR)
SELECT AVG(pick) FROM table_name_78 WHERE name = "jerry hackenbruck" AND overall < 282
### Context: CREATE TABLE table_name_78 (pick INTEGER, name VARCHAR, overall VARCHAR) ### Question: What is the average pick number for jerry hackenbruck who was overall pick less than 282? ### Answer: SELECT AVG(pick) FROM table_name_78 WHERE name = "jerry hackenbruck" AND overall < 282
What is the lowest draft pick number for mark doak who had an overall pick smaller than 147?
CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR)
SELECT MIN(pick) FROM table_name_30 WHERE name = "mark doak" AND overall < 147
### Context: CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR) ### Question: What is the lowest draft pick number for mark doak who had an overall pick smaller than 147? ### Answer: SELECT MIN(pick) FROM table_name_30 WHERE name = "mark doak" AND overall < 147
What position did the player have who was from the college of california?
CREATE TABLE table_name_55 (position VARCHAR, college VARCHAR)
SELECT position FROM table_name_55 WHERE college = "california"
### Context: CREATE TABLE table_name_55 (position VARCHAR, college VARCHAR) ### Question: What position did the player have who was from the college of california? ### Answer: SELECT position FROM table_name_55 WHERE college = "california"
What college did jerry hackenbruck come from who had an overall pick less than 344?
CREATE TABLE table_name_60 (college VARCHAR, overall VARCHAR, name VARCHAR)
SELECT college FROM table_name_60 WHERE overall < 344 AND name = "jerry hackenbruck"
### Context: CREATE TABLE table_name_60 (college VARCHAR, overall VARCHAR, name VARCHAR) ### Question: What college did jerry hackenbruck come from who had an overall pick less than 344? ### Answer: SELECT college FROM table_name_60 WHERE overall < 344 AND name = "jerry hackenbruck"
What team was the opponent on 03/18/08?
CREATE TABLE table_name_41 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_41 WHERE date = "03/18/08"
### Context: CREATE TABLE table_name_41 (opponent VARCHAR, date VARCHAR) ### Question: What team was the opponent on 03/18/08? ### Answer: SELECT opponent FROM table_name_41 WHERE date = "03/18/08"
What is the site where the game was held in the city of Delaware?
CREATE TABLE table_name_39 (site VARCHAR, city VARCHAR)
SELECT site FROM table_name_39 WHERE city = "delaware"
### Context: CREATE TABLE table_name_39 (site VARCHAR, city VARCHAR) ### Question: What is the site where the game was held in the city of Delaware? ### Answer: SELECT site FROM table_name_39 WHERE city = "delaware"
What city was the game held in when the opponent was Towson?
CREATE TABLE table_name_93 (city VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_93 WHERE opponent = "towson"
### Context: CREATE TABLE table_name_93 (city VARCHAR, opponent VARCHAR) ### Question: What city was the game held in when the opponent was Towson? ### Answer: SELECT city FROM table_name_93 WHERE opponent = "towson"
What team was opponen in baltimore, at 2:00pm, on 4/06/08?
CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR, city VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_11 WHERE city = "baltimore" AND time = "2:00pm" AND date = "4/06/08"
### Context: CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR, city VARCHAR, time VARCHAR) ### Question: What team was opponen in baltimore, at 2:00pm, on 4/06/08? ### Answer: SELECT opponent FROM table_name_11 WHERE city = "baltimore" AND time = "2:00pm" AND date = "4/06/08"
What date was the game held at UMBC Field?
CREATE TABLE table_name_47 (date VARCHAR, site VARCHAR)
SELECT date FROM table_name_47 WHERE site = "umbc field"
### Context: CREATE TABLE table_name_47 (date VARCHAR, site VARCHAR) ### Question: What date was the game held at UMBC Field? ### Answer: SELECT date FROM table_name_47 WHERE site = "umbc field"
What date was the game held in Towson?
CREATE TABLE table_name_76 (date VARCHAR, city VARCHAR)
SELECT date FROM table_name_76 WHERE city = "towson"
### Context: CREATE TABLE table_name_76 (date VARCHAR, city VARCHAR) ### Question: What date was the game held in Towson? ### Answer: SELECT date FROM table_name_76 WHERE city = "towson"
Which season premiered on 29 October 1990 and had more than 6 episodes?
CREATE TABLE table_name_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR)
SELECT MAX(series) FROM table_name_94 WHERE premiere = "29 october 1990" AND episodes > 6
### Context: CREATE TABLE table_name_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR) ### Question: Which season premiered on 29 October 1990 and had more than 6 episodes? ### Answer: SELECT MAX(series) FROM table_name_94 WHERE premiere = "29 october 1990" AND episodes > 6
WHAT DATE HAD A SCORE OF 71-64?
CREATE TABLE table_name_46 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_46 WHERE score = "71-64"
### Context: CREATE TABLE table_name_46 (date VARCHAR, score VARCHAR) ### Question: WHAT DATE HAD A SCORE OF 71-64? ### Answer: SELECT date FROM table_name_46 WHERE score = "71-64"
WHAT SCORE WAS ON SEPTEMBER 21?
CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_50 WHERE date = "september 21"
### Context: CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR) ### Question: WHAT SCORE WAS ON SEPTEMBER 21? ### Answer: SELECT score FROM table_name_50 WHERE date = "september 21"
WHAT SCORE HAD A RECORD OF 1-1?
CREATE TABLE table_name_42 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_42 WHERE record = "1-1"
### Context: CREATE TABLE table_name_42 (score VARCHAR, record VARCHAR) ### Question: WHAT SCORE HAD A RECORD OF 1-1? ### Answer: SELECT score FROM table_name_42 WHERE record = "1-1"
WHAT OPPONENT HAD A DATE OF SEPTEMBER 28?
CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_17 WHERE date = "september 28"
### Context: CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR) ### Question: WHAT OPPONENT HAD A DATE OF SEPTEMBER 28? ### Answer: SELECT opponent FROM table_name_17 WHERE date = "september 28"
WHAT SCORE HAD A LOSS AND RECORD OF 1-1?
CREATE TABLE table_name_75 (score VARCHAR, result VARCHAR, record VARCHAR)
SELECT score FROM table_name_75 WHERE result = "loss" AND record = "1-1"
### Context: CREATE TABLE table_name_75 (score VARCHAR, result VARCHAR, record VARCHAR) ### Question: WHAT SCORE HAD A LOSS AND RECORD OF 1-1? ### Answer: SELECT score FROM table_name_75 WHERE result = "loss" AND record = "1-1"
Who is the alternate for Andy Brown, and Nick Grady?
CREATE TABLE table_name_7 (alternate__2_ VARCHAR, coach VARCHAR, captain VARCHAR)
SELECT alternate__2_ FROM table_name_7 WHERE coach = "andy brown" AND captain = "nick grady"
### Context: CREATE TABLE table_name_7 (alternate__2_ VARCHAR, coach VARCHAR, captain VARCHAR) ### Question: Who is the alternate for Andy Brown, and Nick Grady? ### Answer: SELECT alternate__2_ FROM table_name_7 WHERE coach = "andy brown" AND captain = "nick grady"
Which captain has Gintare Karpaviciute as an alternate?
CREATE TABLE table_name_33 (captain VARCHAR, alternate__1_ VARCHAR)
SELECT captain FROM table_name_33 WHERE alternate__1_ = "gintare karpaviciute"
### Context: CREATE TABLE table_name_33 (captain VARCHAR, alternate__1_ VARCHAR) ### Question: Which captain has Gintare Karpaviciute as an alternate? ### Answer: SELECT captain FROM table_name_33 WHERE alternate__1_ = "gintare karpaviciute"
Which coach works with Robert Harvey?
CREATE TABLE table_name_1 (coach VARCHAR, captain VARCHAR)
SELECT coach FROM table_name_1 WHERE captain = "robert harvey"
### Context: CREATE TABLE table_name_1 (coach VARCHAR, captain VARCHAR) ### Question: Which coach works with Robert Harvey? ### Answer: SELECT coach FROM table_name_1 WHERE captain = "robert harvey"
Which Nickname has Founded of 1954?
CREATE TABLE table_name_66 (nickname VARCHAR, founded VARCHAR)
SELECT nickname FROM table_name_66 WHERE founded = 1954
### Context: CREATE TABLE table_name_66 (nickname VARCHAR, founded VARCHAR) ### Question: Which Nickname has Founded of 1954? ### Answer: SELECT nickname FROM table_name_66 WHERE founded = 1954
Which team played in the Boston Garden when the final score was L 118-130?
CREATE TABLE table_name_18 (team VARCHAR, location_attendance VARCHAR, score VARCHAR)
SELECT team FROM table_name_18 WHERE location_attendance = "boston garden" AND score = "l 118-130"
### Context: CREATE TABLE table_name_18 (team VARCHAR, location_attendance VARCHAR, score VARCHAR) ### Question: Which team played in the Boston Garden when the final score was L 118-130? ### Answer: SELECT team FROM table_name_18 WHERE location_attendance = "boston garden" AND score = "l 118-130"
What team played at the Boston Garden when the series was 1-0?
CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR, series VARCHAR)
SELECT team FROM table_name_55 WHERE location_attendance = "boston garden" AND series = "1-0"
### Context: CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR, series VARCHAR) ### Question: What team played at the Boston Garden when the series was 1-0? ### Answer: SELECT team FROM table_name_55 WHERE location_attendance = "boston garden" AND series = "1-0"
Which driver had a grid of 2?
CREATE TABLE table_name_63 (driver VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_63 WHERE grid = 2
### Context: CREATE TABLE table_name_63 (driver VARCHAR, grid VARCHAR) ### Question: Which driver had a grid of 2? ### Answer: SELECT driver FROM table_name_63 WHERE grid = 2
What is the smallest grid value that had 16 points and a team of Mi-Jack Conquest Racing?
CREATE TABLE table_name_79 (grid INTEGER, team VARCHAR, points VARCHAR)
SELECT MIN(grid) FROM table_name_79 WHERE team = "mi-jack conquest racing" AND points = "16"
### Context: CREATE TABLE table_name_79 (grid INTEGER, team VARCHAR, points VARCHAR) ### Question: What is the smallest grid value that had 16 points and a team of Mi-Jack Conquest Racing? ### Answer: SELECT MIN(grid) FROM table_name_79 WHERE team = "mi-jack conquest racing" AND points = "16"
What is the number of points associated with 165 laps?
CREATE TABLE table_name_12 (points VARCHAR, laps VARCHAR)
SELECT points FROM table_name_12 WHERE laps = 165
### Context: CREATE TABLE table_name_12 (points VARCHAR, laps VARCHAR) ### Question: What is the number of points associated with 165 laps? ### Answer: SELECT points FROM table_name_12 WHERE laps = 165
What is the total number of laps associated with 8 points and a grid under 8?
CREATE TABLE table_name_9 (laps VARCHAR, points VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_9 WHERE points = "8" AND grid < 8
### Context: CREATE TABLE table_name_9 (laps VARCHAR, points VARCHAR, grid VARCHAR) ### Question: What is the total number of laps associated with 8 points and a grid under 8? ### Answer: SELECT COUNT(laps) FROM table_name_9 WHERE points = "8" AND grid < 8
What is the lowest height in feet for the building located in platz der einheit 1, gallus, that was built after 1961 with a height less than 130 meters?
CREATE TABLE table_name_62 (height__ft_ INTEGER, height__m_ VARCHAR, year_built VARCHAR, location VARCHAR)
SELECT MIN(height__ft_) FROM table_name_62 WHERE year_built > 1961 AND location = "platz der einheit 1, gallus" AND height__m_ < 130
### Context: CREATE TABLE table_name_62 (height__ft_ INTEGER, height__m_ VARCHAR, year_built VARCHAR, location VARCHAR) ### Question: What is the lowest height in feet for the building located in platz der einheit 1, gallus, that was built after 1961 with a height less than 130 meters? ### Answer: SELECT MIN(height__ft_) FROM table_name_62 WHERE year_built > 1961 AND location = "platz der einheit 1, gallus" AND height__m_ < 130
What is the sum of the heights in meters for the commerzbank tower built after 1984?
CREATE TABLE table_name_70 (height__m_ INTEGER, year_built VARCHAR, name VARCHAR)
SELECT SUM(height__m_) FROM table_name_70 WHERE year_built > 1984 AND name = "commerzbank tower"
### Context: CREATE TABLE table_name_70 (height__m_ INTEGER, year_built VARCHAR, name VARCHAR) ### Question: What is the sum of the heights in meters for the commerzbank tower built after 1984? ### Answer: SELECT SUM(height__m_) FROM table_name_70 WHERE year_built > 1984 AND name = "commerzbank tower"
What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters?
CREATE TABLE table_name_26 (year_built INTEGER, location VARCHAR, height__m_ VARCHAR)
SELECT MIN(year_built) FROM table_name_26 WHERE location = "sonnemannstraße/rückertstraße, ostend" AND height__m_ > 185
### Context: CREATE TABLE table_name_26 (year_built INTEGER, location VARCHAR, height__m_ VARCHAR) ### Question: What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters? ### Answer: SELECT MIN(year_built) FROM table_name_26 WHERE location = "sonnemannstraße/rückertstraße, ostend" AND height__m_ > 185
What is the lowest height in meters for the building located in mailänder straße 1, sachsenhausen-süd, with a height shorter than 328.1 ft?
CREATE TABLE table_name_70 (height__m_ INTEGER, location VARCHAR, height__ft_ VARCHAR)
SELECT MIN(height__m_) FROM table_name_70 WHERE location = "mailänder straße 1, sachsenhausen-süd" AND height__ft_ < 328.1
### Context: CREATE TABLE table_name_70 (height__m_ INTEGER, location VARCHAR, height__ft_ VARCHAR) ### Question: What is the lowest height in meters for the building located in mailänder straße 1, sachsenhausen-süd, with a height shorter than 328.1 ft? ### Answer: SELECT MIN(height__m_) FROM table_name_70 WHERE location = "mailänder straße 1, sachsenhausen-süd" AND height__ft_ < 328.1
What is the average population vlue for an area smaller than 26.69 square km and has an official name of Rogersville?
CREATE TABLE table_name_71 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR)
SELECT AVG(population) FROM table_name_71 WHERE area_km_2 < 26.69 AND official_name = "rogersville"
### Context: CREATE TABLE table_name_71 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR) ### Question: What is the average population vlue for an area smaller than 26.69 square km and has an official name of Rogersville? ### Answer: SELECT AVG(population) FROM table_name_71 WHERE area_km_2 < 26.69 AND official_name = "rogersville"
What's the name of the album from 2012 with a Hammer Music / Nail Records label?
CREATE TABLE table_name_50 (album VARCHAR, label VARCHAR, year VARCHAR)
SELECT album FROM table_name_50 WHERE label = "hammer music / nail records" AND year = 2012
### Context: CREATE TABLE table_name_50 (album VARCHAR, label VARCHAR, year VARCHAR) ### Question: What's the name of the album from 2012 with a Hammer Music / Nail Records label? ### Answer: SELECT album FROM table_name_50 WHERE label = "hammer music / nail records" AND year = 2012
What year had the Hungarian top 40 album charts of 3?
CREATE TABLE table_name_69 (year VARCHAR, hungarian_top_40_album_charts VARCHAR)
SELECT year FROM table_name_69 WHERE hungarian_top_40_album_charts = "3"
### Context: CREATE TABLE table_name_69 (year VARCHAR, hungarian_top_40_album_charts VARCHAR) ### Question: What year had the Hungarian top 40 album charts of 3? ### Answer: SELECT year FROM table_name_69 WHERE hungarian_top_40_album_charts = "3"
What type of release was Napisten Hava?
CREATE TABLE table_name_81 (release_type VARCHAR, album VARCHAR)
SELECT release_type FROM table_name_81 WHERE album = "napisten hava"
### Context: CREATE TABLE table_name_81 (release_type VARCHAR, album VARCHAR) ### Question: What type of release was Napisten Hava? ### Answer: SELECT release_type FROM table_name_81 WHERE album = "napisten hava"
What was the name of the album that was a demo release?
CREATE TABLE table_name_44 (album VARCHAR, release_type VARCHAR)
SELECT album FROM table_name_44 WHERE release_type = "demo"
### Context: CREATE TABLE table_name_44 (album VARCHAR, release_type VARCHAR) ### Question: What was the name of the album that was a demo release? ### Answer: SELECT album FROM table_name_44 WHERE release_type = "demo"
What is the serials issued in 1982 with a format of ABC-123?
CREATE TABLE table_name_60 (serials_issued VARCHAR, serial_format VARCHAR, issued VARCHAR)
SELECT serials_issued FROM table_name_60 WHERE serial_format = "abc-123" AND issued = "1982"
### Context: CREATE TABLE table_name_60 (serials_issued VARCHAR, serial_format VARCHAR, issued VARCHAR) ### Question: What is the serials issued in 1982 with a format of ABC-123? ### Answer: SELECT serials_issued FROM table_name_60 WHERE serial_format = "abc-123" AND issued = "1982"
Which design has a serial format of AB-12-34?
CREATE TABLE table_name_46 (design VARCHAR, serial_format VARCHAR)
SELECT design FROM table_name_46 WHERE serial_format = "ab-12-34"
### Context: CREATE TABLE table_name_46 (design VARCHAR, serial_format VARCHAR) ### Question: Which design has a serial format of AB-12-34? ### Answer: SELECT design FROM table_name_46 WHERE serial_format = "ab-12-34"
Which serials were issued with a design of black on yellow?
CREATE TABLE table_name_78 (serials_issued VARCHAR, design VARCHAR)
SELECT serials_issued FROM table_name_78 WHERE design = "black on yellow"
### Context: CREATE TABLE table_name_78 (serials_issued VARCHAR, design VARCHAR) ### Question: Which serials were issued with a design of black on yellow? ### Answer: SELECT serials_issued FROM table_name_78 WHERE design = "black on yellow"
WHo was the outgoing manager for the team of fc carl zeiss jena?
CREATE TABLE table_name_36 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_name_36 WHERE team = "fc carl zeiss jena"
### Context: CREATE TABLE table_name_36 (outgoing_manager VARCHAR, team VARCHAR) ### Question: WHo was the outgoing manager for the team of fc carl zeiss jena? ### Answer: SELECT outgoing_manager FROM table_name_36 WHERE team = "fc carl zeiss jena"
What team did the manager come from who departed due to an end of tenure as caretaker?
CREATE TABLE table_name_56 (team VARCHAR, manner_of_departure VARCHAR)
SELECT team FROM table_name_56 WHERE manner_of_departure = "end of tenure as caretaker"
### Context: CREATE TABLE table_name_56 (team VARCHAR, manner_of_departure VARCHAR) ### Question: What team did the manager come from who departed due to an end of tenure as caretaker? ### Answer: SELECT team FROM table_name_56 WHERE manner_of_departure = "end of tenure as caretaker"
What was the date of appointment for the replaced manager, reiner geyer?
CREATE TABLE table_name_73 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT date_of_appointment FROM table_name_73 WHERE replaced_by = "reiner geyer"
### Context: CREATE TABLE table_name_73 (date_of_appointment VARCHAR, replaced_by VARCHAR) ### Question: What was the date of appointment for the replaced manager, reiner geyer? ### Answer: SELECT date_of_appointment FROM table_name_73 WHERE replaced_by = "reiner geyer"
What was the date of vacancy after the outgoing manager, ralf santelli departed?
CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_vacancy FROM table_name_2 WHERE outgoing_manager = "ralf santelli"
### Context: CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) ### Question: What was the date of vacancy after the outgoing manager, ralf santelli departed? ### Answer: SELECT date_of_vacancy FROM table_name_2 WHERE outgoing_manager = "ralf santelli"
Who was the outgoing manager who departed due to fc energie cottbus purchased rights?
CREATE TABLE table_name_80 (outgoing_manager VARCHAR, manner_of_departure VARCHAR)
SELECT outgoing_manager FROM table_name_80 WHERE manner_of_departure = "fc energie cottbus purchased rights"
### Context: CREATE TABLE table_name_80 (outgoing_manager VARCHAR, manner_of_departure VARCHAR) ### Question: Who was the outgoing manager who departed due to fc energie cottbus purchased rights? ### Answer: SELECT outgoing_manager FROM table_name_80 WHERE manner_of_departure = "fc energie cottbus purchased rights"
How many times is the position lb and the overall is less than 46?
CREATE TABLE table_name_25 (pick VARCHAR, position VARCHAR, overall VARCHAR)
SELECT COUNT(pick) FROM table_name_25 WHERE position = "lb" AND overall < 46
### Context: CREATE TABLE table_name_25 (pick VARCHAR, position VARCHAR, overall VARCHAR) ### Question: How many times is the position lb and the overall is less than 46? ### Answer: SELECT COUNT(pick) FROM table_name_25 WHERE position = "lb" AND overall < 46
what is the college when the overall is more than 76 for brian mitchell?
CREATE TABLE table_name_98 (college VARCHAR, overall VARCHAR, name VARCHAR)
SELECT college FROM table_name_98 WHERE overall > 76 AND name = "brian mitchell"
### Context: CREATE TABLE table_name_98 (college VARCHAR, overall VARCHAR, name VARCHAR) ### Question: what is the college when the overall is more than 76 for brian mitchell? ### Answer: SELECT college FROM table_name_98 WHERE overall > 76 AND name = "brian mitchell"
what is the pick when the overall is less than 297 and the college is alabama?
CREATE TABLE table_name_16 (pick VARCHAR, overall VARCHAR, college VARCHAR)
SELECT pick FROM table_name_16 WHERE overall < 297 AND college = "alabama"
### Context: CREATE TABLE table_name_16 (pick VARCHAR, overall VARCHAR, college VARCHAR) ### Question: what is the pick when the overall is less than 297 and the college is alabama? ### Answer: SELECT pick FROM table_name_16 WHERE overall < 297 AND college = "alabama"
what is the highest round when the college is penn state?
CREATE TABLE table_name_72 (round INTEGER, college VARCHAR)
SELECT MAX(round) FROM table_name_72 WHERE college = "penn state"
### Context: CREATE TABLE table_name_72 (round INTEGER, college VARCHAR) ### Question: what is the highest round when the college is penn state? ### Answer: SELECT MAX(round) FROM table_name_72 WHERE college = "penn state"
What is the 1989 number when the 200 number is less than 52.8 in Arizona, New Mexico, and Utah
CREATE TABLE table_name_41 (location VARCHAR)
SELECT SUM(1989) FROM table_name_41 WHERE 2000 < 52.8 AND location = "arizona, new mexico, and utah"
### Context: CREATE TABLE table_name_41 (location VARCHAR) ### Question: What is the 1989 number when the 200 number is less than 52.8 in Arizona, New Mexico, and Utah ### Answer: SELECT SUM(1989) FROM table_name_41 WHERE 2000 < 52.8 AND location = "arizona, new mexico, and utah"
What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8?
CREATE TABLE table_name_97 (location VARCHAR, reservation VARCHAR)
SELECT AVG(2000) FROM table_name_97 WHERE location = "montana" AND reservation = "fort peck indian reservation" AND 1979 < 26.8
### Context: CREATE TABLE table_name_97 (location VARCHAR, reservation VARCHAR) ### Question: What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8? ### Answer: SELECT AVG(2000) FROM table_name_97 WHERE location = "montana" AND reservation = "fort peck indian reservation" AND 1979 < 26.8
What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4?
CREATE TABLE table_name_88 (Id VARCHAR)
SELECT SUM(2000) FROM table_name_88 WHERE 1969 = 54.3 AND 1979 < 48.4
### Context: CREATE TABLE table_name_88 (Id VARCHAR) ### Question: What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4? ### Answer: SELECT SUM(2000) FROM table_name_88 WHERE 1969 = 54.3 AND 1979 < 48.4
What is the 2000 number when the 1989 is less than 54.9 in Arizona, New Mexico, and Utah?
CREATE TABLE table_name_94 (location VARCHAR)
SELECT SUM(2000) FROM table_name_94 WHERE 1989 < 54.9 AND location = "arizona, new mexico, and utah"
### Context: CREATE TABLE table_name_94 (location VARCHAR) ### Question: What is the 2000 number when the 1989 is less than 54.9 in Arizona, New Mexico, and Utah? ### Answer: SELECT SUM(2000) FROM table_name_94 WHERE 1989 < 54.9 AND location = "arizona, new mexico, and utah"
What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9?
CREATE TABLE table_name_51 (reservation VARCHAR)
SELECT SUM(1979) FROM table_name_51 WHERE reservation = "standing rock indian reservation" AND 1989 < 54.9
### Context: CREATE TABLE table_name_51 (reservation VARCHAR) ### Question: What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9? ### Answer: SELECT SUM(1979) FROM table_name_51 WHERE reservation = "standing rock indian reservation" AND 1989 < 54.9
What Kerry's percentage where 66 people voted for another candidate?
CREATE TABLE table_name_71 (kerry_percentage VARCHAR, others_number VARCHAR)
SELECT kerry_percentage FROM table_name_71 WHERE others_number = 66
### Context: CREATE TABLE table_name_71 (kerry_percentage VARCHAR, others_number VARCHAR) ### Question: What Kerry's percentage where 66 people voted for another candidate? ### Answer: SELECT kerry_percentage FROM table_name_71 WHERE others_number = 66
Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7?
CREATE TABLE table_name_16 (laps INTEGER, time VARCHAR, grid VARCHAR)
SELECT AVG(laps) FROM table_name_16 WHERE time = "+17.485" AND grid < 7
### Context: CREATE TABLE table_name_16 (laps INTEGER, time VARCHAR, grid VARCHAR) ### Question: Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7? ### Answer: SELECT AVG(laps) FROM table_name_16 WHERE time = "+17.485" AND grid < 7
Can you tell me the sum of Grid that has the Manufacturer of aprilia, and the sandro cortese?
CREATE TABLE table_name_96 (grid INTEGER, manufacturer VARCHAR, rider VARCHAR)
SELECT SUM(grid) FROM table_name_96 WHERE manufacturer = "aprilia" AND rider = "sandro cortese"
### Context: CREATE TABLE table_name_96 (grid INTEGER, manufacturer VARCHAR, rider VARCHAR) ### Question: Can you tell me the sum of Grid that has the Manufacturer of aprilia, and the sandro cortese? ### Answer: SELECT SUM(grid) FROM table_name_96 WHERE manufacturer = "aprilia" AND rider = "sandro cortese"
What was the date of game 21?
CREATE TABLE table_name_85 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_85 WHERE game = 21
### Context: CREATE TABLE table_name_85 (date VARCHAR, game VARCHAR) ### Question: What was the date of game 21? ### Answer: SELECT date FROM table_name_85 WHERE game = 21
What was the score of the game on June 10?
CREATE TABLE table_name_10 (score_time VARCHAR, date VARCHAR)
SELECT score_time FROM table_name_10 WHERE date = "june 10"
### Context: CREATE TABLE table_name_10 (score_time VARCHAR, date VARCHAR) ### Question: What was the score of the game on June 10? ### Answer: SELECT score_time FROM table_name_10 WHERE date = "june 10"
What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23?
CREATE TABLE table_name_40 (round INTEGER, pick VARCHAR, college_junior_club_team VARCHAR, player VARCHAR)
SELECT SUM(round) FROM table_name_40 WHERE college_junior_club_team = "brandon wheat kings ( whl )" AND player = "mike perovich (d)" AND pick < 23
### Context: CREATE TABLE table_name_40 (round INTEGER, pick VARCHAR, college_junior_club_team VARCHAR, player VARCHAR) ### Question: What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23? ### Answer: SELECT SUM(round) FROM table_name_40 WHERE college_junior_club_team = "brandon wheat kings ( whl )" AND player = "mike perovich (d)" AND pick < 23
What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54?
CREATE TABLE table_name_32 (round INTEGER, player VARCHAR, pick VARCHAR)
SELECT SUM(round) FROM table_name_32 WHERE player = "tim hunter (rw)" AND pick < 54
### Context: CREATE TABLE table_name_32 (round INTEGER, player VARCHAR, pick VARCHAR) ### Question: What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54? ### Answer: SELECT SUM(round) FROM table_name_32 WHERE player = "tim hunter (rw)" AND pick < 54
Who is the outgoing manager who was replaced by jürgen klopp?
CREATE TABLE table_name_64 (outgoing_manager VARCHAR, replaced_by VARCHAR)
SELECT outgoing_manager FROM table_name_64 WHERE replaced_by = "jürgen klopp"
### Context: CREATE TABLE table_name_64 (outgoing_manager VARCHAR, replaced_by VARCHAR) ### Question: Who is the outgoing manager who was replaced by jürgen klopp? ### Answer: SELECT outgoing_manager FROM table_name_64 WHERE replaced_by = "jürgen klopp"
What is the date of appointment of the manager who was replaced by markus babbel?
CREATE TABLE table_name_94 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT date_of_appointment FROM table_name_94 WHERE replaced_by = "markus babbel"
### Context: CREATE TABLE table_name_94 (date_of_appointment VARCHAR, replaced_by VARCHAR) ### Question: What is the date of appointment of the manager who was replaced by markus babbel? ### Answer: SELECT date_of_appointment FROM table_name_94 WHERE replaced_by = "markus babbel"
What was the manner of depature of the manager with a date of appointment on 23 November 2008?
CREATE TABLE table_name_9 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
SELECT manner_of_departure FROM table_name_9 WHERE date_of_appointment = "23 november 2008"
### Context: CREATE TABLE table_name_9 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) ### Question: What was the manner of depature of the manager with a date of appointment on 23 November 2008? ### Answer: SELECT manner_of_departure FROM table_name_9 WHERE date_of_appointment = "23 november 2008"
Who replaced the manager of team arminia bielefeld?
CREATE TABLE table_name_44 (replaced_by VARCHAR, team VARCHAR)
SELECT replaced_by FROM table_name_44 WHERE team = "arminia bielefeld"
### Context: CREATE TABLE table_name_44 (replaced_by VARCHAR, team VARCHAR) ### Question: Who replaced the manager of team arminia bielefeld? ### Answer: SELECT replaced_by FROM table_name_44 WHERE team = "arminia bielefeld"
What is the date of vacancy of team fc bayern munich, which had a date of appointment on 27 April 2009?
CREATE TABLE table_name_24 (date_of_vacancy VARCHAR, team VARCHAR, date_of_appointment VARCHAR)
SELECT date_of_vacancy FROM table_name_24 WHERE team = "fc bayern munich" AND date_of_appointment = "27 april 2009"
### Context: CREATE TABLE table_name_24 (date_of_vacancy VARCHAR, team VARCHAR, date_of_appointment VARCHAR) ### Question: What is the date of vacancy of team fc bayern munich, which had a date of appointment on 27 April 2009? ### Answer: SELECT date_of_vacancy FROM table_name_24 WHERE team = "fc bayern munich" AND date_of_appointment = "27 april 2009"
What is the date of appointment of outgoing manager fred rutten, who had a sacked manner of departure?
CREATE TABLE table_name_26 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_name_26 WHERE manner_of_departure = "sacked" AND outgoing_manager = "fred rutten"
### Context: CREATE TABLE table_name_26 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR) ### Question: What is the date of appointment of outgoing manager fred rutten, who had a sacked manner of departure? ### Answer: SELECT date_of_appointment FROM table_name_26 WHERE manner_of_departure = "sacked" AND outgoing_manager = "fred rutten"
What was the length when James Swallow had a release longer than 2.1?
CREATE TABLE table_name_36 (length VARCHAR, writer VARCHAR, release VARCHAR)
SELECT length FROM table_name_36 WHERE writer = "james swallow" AND release > 2.1
### Context: CREATE TABLE table_name_36 (length VARCHAR, writer VARCHAR, release VARCHAR) ### Question: What was the length when James Swallow had a release longer than 2.1? ### Answer: SELECT length FROM table_name_36 WHERE writer = "james swallow" AND release > 2.1
Who wrote Infiltration?
CREATE TABLE table_name_86 (writer VARCHAR, title VARCHAR)
SELECT writer FROM table_name_86 WHERE title = "infiltration"
### Context: CREATE TABLE table_name_86 (writer VARCHAR, title VARCHAR) ### Question: Who wrote Infiltration? ### Answer: SELECT writer FROM table_name_86 WHERE title = "infiltration"
What was the earliest release for Pathogen directed by Sharon Gosling?
CREATE TABLE table_name_81 (release INTEGER, director VARCHAR, title VARCHAR)
SELECT MIN(release) FROM table_name_81 WHERE director = "sharon gosling" AND title = "pathogen"
### Context: CREATE TABLE table_name_81 (release INTEGER, director VARCHAR, title VARCHAR) ### Question: What was the earliest release for Pathogen directed by Sharon Gosling? ### Answer: SELECT MIN(release) FROM table_name_81 WHERE director = "sharon gosling" AND title = "pathogen"
What was the length of release 3.6?
CREATE TABLE table_name_54 (length VARCHAR, release VARCHAR)
SELECT length FROM table_name_54 WHERE release = 3.6
### Context: CREATE TABLE table_name_54 (length VARCHAR, release VARCHAR) ### Question: What was the length of release 3.6? ### Answer: SELECT length FROM table_name_54 WHERE release = 3.6
What day was the score for tournament of alcobaça 6–3, 2–6, 7–5?
CREATE TABLE table_name_21 (date VARCHAR, tournament VARCHAR, score VARCHAR)
SELECT date FROM table_name_21 WHERE tournament = "alcobaça" AND score = "6–3, 2–6, 7–5"
### Context: CREATE TABLE table_name_21 (date VARCHAR, tournament VARCHAR, score VARCHAR) ### Question: What day was the score for tournament of alcobaça 6–3, 2–6, 7–5? ### Answer: SELECT date FROM table_name_21 WHERE tournament = "alcobaça" AND score = "6–3, 2–6, 7–5"
What was the score for alcobaça when the opponent was in the final of xinyun han?
CREATE TABLE table_name_27 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_27 WHERE tournament = "alcobaça" AND opponent_in_the_final = "xinyun han"
### Context: CREATE TABLE table_name_27 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the score for alcobaça when the opponent was in the final of xinyun han? ### Answer: SELECT score FROM table_name_27 WHERE tournament = "alcobaça" AND opponent_in_the_final = "xinyun han"
What was the score when the opponent was irena pavlovic and the surface was hard?
CREATE TABLE table_name_94 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_94 WHERE surface = "hard" AND opponent_in_the_final = "irena pavlovic"
### Context: CREATE TABLE table_name_94 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the score when the opponent was irena pavlovic and the surface was hard? ### Answer: SELECT score FROM table_name_94 WHERE surface = "hard" AND opponent_in_the_final = "irena pavlovic"
What was the opponent in the final when the score was 6–3, 2–6, 7–5?
CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, score VARCHAR)
SELECT opponent_in_the_final FROM table_name_69 WHERE score = "6–3, 2–6, 7–5"
### Context: CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, score VARCHAR) ### Question: What was the opponent in the final when the score was 6–3, 2–6, 7–5? ### Answer: SELECT opponent_in_the_final FROM table_name_69 WHERE score = "6–3, 2–6, 7–5"
What day was the surface clay and the score 6–1, 6–4?
CREATE TABLE table_name_23 (date VARCHAR, surface VARCHAR, score VARCHAR)
SELECT date FROM table_name_23 WHERE surface = "clay" AND score = "6–1, 6–4"
### Context: CREATE TABLE table_name_23 (date VARCHAR, surface VARCHAR, score VARCHAR) ### Question: What day was the surface clay and the score 6–1, 6–4? ### Answer: SELECT date FROM table_name_23 WHERE surface = "clay" AND score = "6–1, 6–4"
What is the Phoenician letter for the Hangul of ㄹ?
CREATE TABLE table_name_77 (phoenician VARCHAR, hangul VARCHAR)
SELECT phoenician FROM table_name_77 WHERE hangul = "ㄹ"
### Context: CREATE TABLE table_name_77 (phoenician VARCHAR, hangul VARCHAR) ### Question: What is the Phoenician letter for the Hangul of ㄹ? ### Answer: SELECT phoenician FROM table_name_77 WHERE hangul = "ㄹ"
What is the Latin letter for the Tibetan of ས?
CREATE TABLE table_name_13 (latin VARCHAR, tibetan VARCHAR)
SELECT latin FROM table_name_13 WHERE tibetan = "ས"
### Context: CREATE TABLE table_name_13 (latin VARCHAR, tibetan VARCHAR) ### Question: What is the Latin letter for the Tibetan of ས? ### Answer: SELECT latin FROM table_name_13 WHERE tibetan = "ས"
to the Latin of f, y, u/v/w?
CREATE TABLE table_name_63 (greek VARCHAR, latin VARCHAR)
SELECT greek FROM table_name_63 WHERE latin = "f, y, u/v/w"
### Context: CREATE TABLE table_name_63 (greek VARCHAR, latin VARCHAR) ### Question: to the Latin of f, y, u/v/w? ### Answer: SELECT greek FROM table_name_63 WHERE latin = "f, y, u/v/w"
What is the Hangul equivalent of the Greek ϝ, υ?
CREATE TABLE table_name_96 (hangul VARCHAR, greek VARCHAR)
SELECT hangul FROM table_name_96 WHERE greek = "ϝ, υ"
### Context: CREATE TABLE table_name_96 (hangul VARCHAR, greek VARCHAR) ### Question: What is the Hangul equivalent of the Greek ϝ, υ? ### Answer: SELECT hangul FROM table_name_96 WHERE greek = "ϝ, υ"
What is the Latin equivalent for the Phagspa of ꡙ?
CREATE TABLE table_name_72 (latin VARCHAR, ’phagspa VARCHAR)
SELECT latin FROM table_name_72 WHERE ’phagspa = "ꡙ"
### Context: CREATE TABLE table_name_72 (latin VARCHAR, ’phagspa VARCHAR) ### Question: What is the Latin equivalent for the Phagspa of ꡙ? ### Answer: SELECT latin FROM table_name_72 WHERE ’phagspa = "ꡙ"
What was the surface played on for the match than began before 1897?
CREATE TABLE table_name_93 (court_surface VARCHAR, began INTEGER)
SELECT court_surface FROM table_name_93 WHERE began < 1897
### Context: CREATE TABLE table_name_93 (court_surface VARCHAR, began INTEGER) ### Question: What was the surface played on for the match than began before 1897? ### Answer: SELECT court_surface FROM table_name_93 WHERE began < 1897
For the Indian Wells Masters tournament, what was the country?
CREATE TABLE table_name_96 (country VARCHAR, tournament VARCHAR)
SELECT country FROM table_name_96 WHERE tournament = "indian wells masters"
### Context: CREATE TABLE table_name_96 (country VARCHAR, tournament VARCHAR) ### Question: For the Indian Wells Masters tournament, what was the country? ### Answer: SELECT country FROM table_name_96 WHERE tournament = "indian wells masters"
Which location was in China, and played on a hard court?
CREATE TABLE table_name_69 (location VARCHAR, court_surface VARCHAR, country VARCHAR)
SELECT location FROM table_name_69 WHERE court_surface = "hard" AND country = "china"
### Context: CREATE TABLE table_name_69 (location VARCHAR, court_surface VARCHAR, country VARCHAR) ### Question: Which location was in China, and played on a hard court? ### Answer: SELECT location FROM table_name_69 WHERE court_surface = "hard" AND country = "china"
What country was the Paris Masters tournament played in?
CREATE TABLE table_name_83 (country VARCHAR, tournament VARCHAR)
SELECT country FROM table_name_83 WHERE tournament = "paris masters"
### Context: CREATE TABLE table_name_83 (country VARCHAR, tournament VARCHAR) ### Question: What country was the Paris Masters tournament played in? ### Answer: SELECT country FROM table_name_83 WHERE tournament = "paris masters"
Who was the opponent when the H/A was H and the scorer was Ferguson?
CREATE TABLE table_name_14 (opponents VARCHAR, h___a VARCHAR, scorers VARCHAR)
SELECT opponents FROM table_name_14 WHERE h___a = "h" AND scorers = "ferguson"
### Context: CREATE TABLE table_name_14 (opponents VARCHAR, h___a VARCHAR, scorers VARCHAR) ### Question: Who was the opponent when the H/A was H and the scorer was Ferguson? ### Answer: SELECT opponents FROM table_name_14 WHERE h___a = "h" AND scorers = "ferguson"
Who was the opponent on 11 August 1991 when the H/A was H?
CREATE TABLE table_name_96 (opponents VARCHAR, h___a VARCHAR, date VARCHAR)
SELECT opponents FROM table_name_96 WHERE h___a = "h" AND date = "11 august 1991"
### Context: CREATE TABLE table_name_96 (opponents VARCHAR, h___a VARCHAR, date VARCHAR) ### Question: Who was the opponent on 11 August 1991 when the H/A was H? ### Answer: SELECT opponents FROM table_name_96 WHERE h___a = "h" AND date = "11 august 1991"
What was the H/A when the scorer was Hughes?
CREATE TABLE table_name_50 (h___a VARCHAR, scorers VARCHAR)
SELECT h___a FROM table_name_50 WHERE scorers = "hughes"
### Context: CREATE TABLE table_name_50 (h___a VARCHAR, scorers VARCHAR) ### Question: What was the H/A when the scorer was Hughes? ### Answer: SELECT h___a FROM table_name_50 WHERE scorers = "hughes"
What was the film that grossed $26,010,864 ranked?
CREATE TABLE table_name_76 (rank INTEGER, gross VARCHAR)
SELECT MIN(rank) FROM table_name_76 WHERE gross = "$26,010,864"
### Context: CREATE TABLE table_name_76 (rank INTEGER, gross VARCHAR) ### Question: What was the film that grossed $26,010,864 ranked? ### Answer: SELECT MIN(rank) FROM table_name_76 WHERE gross = "$26,010,864"
How much did Universal Studio's film Xanadu gross?
CREATE TABLE table_name_79 (gross VARCHAR, studio VARCHAR, title VARCHAR)
SELECT gross FROM table_name_79 WHERE studio = "universal" AND title = "xanadu"
### Context: CREATE TABLE table_name_79 (gross VARCHAR, studio VARCHAR, title VARCHAR) ### Question: How much did Universal Studio's film Xanadu gross? ### Answer: SELECT gross FROM table_name_79 WHERE studio = "universal" AND title = "xanadu"
What is the rank of Bronco Billy?
CREATE TABLE table_name_21 (rank INTEGER, title VARCHAR)
SELECT AVG(rank) FROM table_name_21 WHERE title = "bronco billy"
### Context: CREATE TABLE table_name_21 (rank INTEGER, title VARCHAR) ### Question: What is the rank of Bronco Billy? ### Answer: SELECT AVG(rank) FROM table_name_21 WHERE title = "bronco billy"
Name the lowest Founded with the Name cougars?
CREATE TABLE table_name_42 (founded INTEGER, nickname VARCHAR)
SELECT MIN(founded) FROM table_name_42 WHERE nickname = "cougars"
### Context: CREATE TABLE table_name_42 (founded INTEGER, nickname VARCHAR) ### Question: Name the lowest Founded with the Name cougars? ### Answer: SELECT MIN(founded) FROM table_name_42 WHERE nickname = "cougars"
Which Affiliation has a Nickname of cougars?
CREATE TABLE table_name_47 (affiliation VARCHAR, nickname VARCHAR)
SELECT affiliation FROM table_name_47 WHERE nickname = "cougars"
### Context: CREATE TABLE table_name_47 (affiliation VARCHAR, nickname VARCHAR) ### Question: Which Affiliation has a Nickname of cougars? ### Answer: SELECT affiliation FROM table_name_47 WHERE nickname = "cougars"
Name the Founded which has a Affiliation of private/methodist?
CREATE TABLE table_name_6 (founded INTEGER, affiliation VARCHAR)
SELECT MAX(founded) FROM table_name_6 WHERE affiliation = "private/methodist"
### Context: CREATE TABLE table_name_6 (founded INTEGER, affiliation VARCHAR) ### Question: Name the Founded which has a Affiliation of private/methodist? ### Answer: SELECT MAX(founded) FROM table_name_6 WHERE affiliation = "private/methodist"
What is Label, when Date is 1987?
CREATE TABLE table_name_57 (label VARCHAR, date VARCHAR)
SELECT label FROM table_name_57 WHERE date = "1987"
### Context: CREATE TABLE table_name_57 (label VARCHAR, date VARCHAR) ### Question: What is Label, when Date is 1987? ### Answer: SELECT label FROM table_name_57 WHERE date = "1987"
What is Date, when Format is Vinyl, and when Label is Mercury?
CREATE TABLE table_name_65 (date VARCHAR, format VARCHAR, label VARCHAR)
SELECT date FROM table_name_65 WHERE format = "vinyl" AND label = "mercury"
### Context: CREATE TABLE table_name_65 (date VARCHAR, format VARCHAR, label VARCHAR) ### Question: What is Date, when Format is Vinyl, and when Label is Mercury? ### Answer: SELECT date FROM table_name_65 WHERE format = "vinyl" AND label = "mercury"
What is Date, when Region is Yugoslavia?
CREATE TABLE table_name_33 (date VARCHAR, region VARCHAR)
SELECT date FROM table_name_33 WHERE region = "yugoslavia"
### Context: CREATE TABLE table_name_33 (date VARCHAR, region VARCHAR) ### Question: What is Date, when Region is Yugoslavia? ### Answer: SELECT date FROM table_name_33 WHERE region = "yugoslavia"
What is Format, when Label is Bronze, when Date is 1982, and when Catalogue is 204 636?
CREATE TABLE table_name_12 (format VARCHAR, catalogue VARCHAR, label VARCHAR, date VARCHAR)
SELECT format FROM table_name_12 WHERE label = "bronze" AND date = "1982" AND catalogue = "204 636"
### Context: CREATE TABLE table_name_12 (format VARCHAR, catalogue VARCHAR, label VARCHAR, date VARCHAR) ### Question: What is Format, when Label is Bronze, when Date is 1982, and when Catalogue is 204 636? ### Answer: SELECT format FROM table_name_12 WHERE label = "bronze" AND date = "1982" AND catalogue = "204 636"
What is Date, when Label is Jugoton?
CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR)
SELECT date FROM table_name_48 WHERE label = "jugoton"
### Context: CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR) ### Question: What is Date, when Label is Jugoton? ### Answer: SELECT date FROM table_name_48 WHERE label = "jugoton"
What is Premier Date, when Cycle is less than 2?
CREATE TABLE table_name_53 (premiere_date VARCHAR, cycle INTEGER)
SELECT premiere_date FROM table_name_53 WHERE cycle < 2
### Context: CREATE TABLE table_name_53 (premiere_date VARCHAR, cycle INTEGER) ### Question: What is Premier Date, when Cycle is less than 2? ### Answer: SELECT premiere_date FROM table_name_53 WHERE cycle < 2