question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Matches of 127 has how many total number of inns?
CREATE TABLE table_name_56 (inns VARCHAR, matches VARCHAR)
SELECT COUNT(inns) FROM table_name_56 WHERE matches = 127
### Context: CREATE TABLE table_name_56 (inns VARCHAR, matches VARCHAR) ### Question: Matches of 127 has how many total number of inns? ### Answer: SELECT COUNT(inns) FROM table_name_56 WHERE matches = 127
Name of clem hill, and Inns larger than 126 has the lowest runs?
CREATE TABLE table_name_83 (runs INTEGER, name VARCHAR, inns VARCHAR)
SELECT MIN(runs) FROM table_name_83 WHERE name = "clem hill" AND inns > 126
### Context: CREATE TABLE table_name_83 (runs INTEGER, name VARCHAR, inns VARCHAR) ### Question: Name of clem hill, and Inns larger than 126 has the lowest runs? ### Answer: SELECT MIN(runs) FROM table_name_83 WHERE name = "clem hill" AND inns > 126
Runs smaller than 6106, and Inns smaller than 146 has what total number of matches?
CREATE TABLE table_name_24 (matches VARCHAR, runs VARCHAR, inns VARCHAR)
SELECT COUNT(matches) FROM table_name_24 WHERE runs < 6106 AND inns < 146
### Context: CREATE TABLE table_name_24 (matches VARCHAR, runs VARCHAR, inns VARCHAR) ### Question: Runs smaller than 6106, and Inns smaller than 146 has what total number of matches? ### Answer: SELECT COUNT(matches) FROM table_name_24 WHERE runs < 6106 AND inns < 146
Seasons of 1987–2007, and a Runs larger than 11622 is the highest inns?
CREATE TABLE table_name_64 (inns INTEGER, seasons VARCHAR, runs VARCHAR)
SELECT MAX(inns) FROM table_name_64 WHERE seasons = "1987–2007" AND runs > 11622
### Context: CREATE TABLE table_name_64 (inns INTEGER, seasons VARCHAR, runs VARCHAR) ### Question: Seasons of 1987–2007, and a Runs larger than 11622 is the highest inns? ### Answer: SELECT MAX(inns) FROM table_name_64 WHERE seasons = "1987–2007" AND runs > 11622
Name the partner for opponents of františek čermák michal mertiňák
CREATE TABLE table_name_46 (partner VARCHAR, opponents_in_the_final VARCHAR)
SELECT partner FROM table_name_46 WHERE opponents_in_the_final = "františek čermák michal mertiňák"
### Context: CREATE TABLE table_name_46 (partner VARCHAR, opponents_in_the_final VARCHAR) ### Question: Name the partner for opponents of františek čermák michal mertiňák ### Answer: SELECT partner FROM table_name_46 WHERE opponents_in_the_final = "františek čermák michal mertiňák"
Name the score in the final for january 12, 2013
CREATE TABLE table_name_63 (score_in_the_final VARCHAR, date VARCHAR)
SELECT score_in_the_final FROM table_name_63 WHERE date = "january 12, 2013"
### Context: CREATE TABLE table_name_63 (score_in_the_final VARCHAR, date VARCHAR) ### Question: Name the score in the final for january 12, 2013 ### Answer: SELECT score_in_the_final FROM table_name_63 WHERE date = "january 12, 2013"
Name the opponents for outcome of runner-up and date of august 7, 2011
CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT opponents_in_the_final FROM table_name_19 WHERE outcome = "runner-up" AND date = "august 7, 2011"
### Context: CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: Name the opponents for outcome of runner-up and date of august 7, 2011 ### Answer: SELECT opponents_in_the_final FROM table_name_19 WHERE outcome = "runner-up" AND date = "august 7, 2011"
Name the partner for surface of grass and opponents of jürgen melzer philipp petzschner
CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR)
SELECT partner FROM table_name_22 WHERE surface = "grass" AND opponents_in_the_final = "jürgen melzer philipp petzschner"
### Context: CREATE TABLE table_name_22 (partner VARCHAR, surface VARCHAR, opponents_in_the_final VARCHAR) ### Question: Name the partner for surface of grass and opponents of jürgen melzer philipp petzschner ### Answer: SELECT partner FROM table_name_22 WHERE surface = "grass" AND opponents_in_the_final = "jürgen melzer philipp petzschner"
Name the score in the final for runner-up and hard surface with opponents being michaël llodra nenad zimonjić
CREATE TABLE table_name_1 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT score_in_the_final FROM table_name_1 WHERE outcome = "runner-up" AND surface = "hard" AND opponents_in_the_final = "michaël llodra nenad zimonjić"
### Context: CREATE TABLE table_name_1 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: Name the score in the final for runner-up and hard surface with opponents being michaël llodra nenad zimonjić ### Answer: SELECT score_in_the_final FROM table_name_1 WHERE outcome = "runner-up" AND surface = "hard" AND opponents_in_the_final = "michaël llodra nenad zimonjić"
What date was the ship 'Wyandotte' launched?
CREATE TABLE table_name_45 (launched VARCHAR, ship VARCHAR)
SELECT launched FROM table_name_45 WHERE ship = "wyandotte"
### Context: CREATE TABLE table_name_45 (launched VARCHAR, ship VARCHAR) ### Question: What date was the ship 'Wyandotte' launched? ### Answer: SELECT launched FROM table_name_45 WHERE ship = "wyandotte"
What was the original name of the ship 'Ajax'?
CREATE TABLE table_name_58 (renamed VARCHAR, ship VARCHAR)
SELECT renamed FROM table_name_58 WHERE ship = "ajax"
### Context: CREATE TABLE table_name_58 (renamed VARCHAR, ship VARCHAR) ### Question: What was the original name of the ship 'Ajax'? ### Answer: SELECT renamed FROM table_name_58 WHERE ship = "ajax"
What date was the ship named Manhattan completed?
CREATE TABLE table_name_60 (commissioned_or_completed_ VARCHAR, _ VARCHAR, ship VARCHAR)
SELECT commissioned_or_completed_ * _ FROM table_name_60 WHERE ship = "manhattan"
### Context: CREATE TABLE table_name_60 (commissioned_or_completed_ VARCHAR, _ VARCHAR, ship VARCHAR) ### Question: What date was the ship named Manhattan completed? ### Answer: SELECT commissioned_or_completed_ * _ FROM table_name_60 WHERE ship = "manhattan"
What class had fewer than 336 laps in 2004?
CREATE TABLE table_name_77 (class VARCHAR, laps VARCHAR, year VARCHAR)
SELECT class FROM table_name_77 WHERE laps < 336 AND year = 2004
### Context: CREATE TABLE table_name_77 (class VARCHAR, laps VARCHAR, year VARCHAR) ### Question: What class had fewer than 336 laps in 2004? ### Answer: SELECT class FROM table_name_77 WHERE laps < 336 AND year = 2004
What is the average attendance of game 1?
CREATE TABLE table_name_72 (attendance INTEGER, game INTEGER)
SELECT AVG(attendance) FROM table_name_72 WHERE game < 1
### Context: CREATE TABLE table_name_72 (attendance INTEGER, game INTEGER) ### Question: What is the average attendance of game 1? ### Answer: SELECT AVG(attendance) FROM table_name_72 WHERE game < 1
What is the attendance amount of the race with a time of 2:07?
CREATE TABLE table_name_38 (attendance INTEGER, time VARCHAR)
SELECT MAX(attendance) FROM table_name_38 WHERE time = "2:07"
### Context: CREATE TABLE table_name_38 (attendance INTEGER, time VARCHAR) ### Question: What is the attendance amount of the race with a time of 2:07? ### Answer: SELECT MAX(attendance) FROM table_name_38 WHERE time = "2:07"
What club has less than 61 goals for and 55 goals against?
CREATE TABLE table_name_33 (club VARCHAR, goals_for VARCHAR, goals_against VARCHAR)
SELECT club FROM table_name_33 WHERE goals_for < 61 AND goals_against = 55
### Context: CREATE TABLE table_name_33 (club VARCHAR, goals_for VARCHAR, goals_against VARCHAR) ### Question: What club has less than 61 goals for and 55 goals against? ### Answer: SELECT club FROM table_name_33 WHERE goals_for < 61 AND goals_against = 55
What is the amount of Draws for the game that had a score of 45+7 and a position below 3?
CREATE TABLE table_name_29 (draws VARCHAR, points VARCHAR, position VARCHAR)
SELECT COUNT(draws) FROM table_name_29 WHERE points = "45+7" AND position < 3
### Context: CREATE TABLE table_name_29 (draws VARCHAR, points VARCHAR, position VARCHAR) ### Question: What is the amount of Draws for the game that had a score of 45+7 and a position below 3? ### Answer: SELECT COUNT(draws) FROM table_name_29 WHERE points = "45+7" AND position < 3
What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?
CREATE TABLE table_name_86 (draws INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
SELECT MIN(draws) FROM table_name_86 WHERE goal_difference > -16 AND club = "elche cf" AND played > 38
### Context: CREATE TABLE table_name_86 (draws INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR) ### Question: What was the number of draws when the Elche CF club played 38 and had a goal difference of -16? ### Answer: SELECT MIN(draws) FROM table_name_86 WHERE goal_difference > -16 AND club = "elche cf" AND played > 38
Who was the recipient for Outstanding actress television series prior to 2008?
CREATE TABLE table_name_7 (recipient VARCHAR, year INTEGER)
SELECT recipient FROM table_name_7 WHERE year < 2008
### Context: CREATE TABLE table_name_7 (recipient VARCHAR, year INTEGER) ### Question: Who was the recipient for Outstanding actress television series prior to 2008? ### Answer: SELECT recipient FROM table_name_7 WHERE year < 2008
Who was the opponent at the game when the record was 71-78?
CREATE TABLE table_name_67 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_67 WHERE record = "71-78"
### Context: CREATE TABLE table_name_67 (opponent VARCHAR, record VARCHAR) ### Question: Who was the opponent at the game when the record was 71-78? ### Answer: SELECT opponent FROM table_name_67 WHERE record = "71-78"
What was the date of the game that had a loss of Risley (0-1)?
CREATE TABLE table_name_2 (date VARCHAR, loss VARCHAR)
SELECT date FROM table_name_2 WHERE loss = "risley (0-1)"
### Context: CREATE TABLE table_name_2 (date VARCHAR, loss VARCHAR) ### Question: What was the date of the game that had a loss of Risley (0-1)? ### Answer: SELECT date FROM table_name_2 WHERE loss = "risley (0-1)"
What was the date of the game when the record was 70-74?
CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_86 WHERE record = "70-74"
### Context: CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR) ### Question: What was the date of the game when the record was 70-74? ### Answer: SELECT date FROM table_name_86 WHERE record = "70-74"
What player was moving from manchester united?
CREATE TABLE table_name_78 (name VARCHAR, moving_from VARCHAR)
SELECT name FROM table_name_78 WHERE moving_from = "manchester united"
### Context: CREATE TABLE table_name_78 (name VARCHAR, moving_from VARCHAR) ### Question: What player was moving from manchester united? ### Answer: SELECT name FROM table_name_78 WHERE moving_from = "manchester united"
What player costs £210k to transfer?
CREATE TABLE table_name_92 (name VARCHAR, transfer_fee VARCHAR)
SELECT name FROM table_name_92 WHERE transfer_fee = "£210k"
### Context: CREATE TABLE table_name_92 (name VARCHAR, transfer_fee VARCHAR) ### Question: What player costs £210k to transfer? ### Answer: SELECT name FROM table_name_92 WHERE transfer_fee = "£210k"
Who is moving during winter from wal?
CREATE TABLE table_name_28 (moving_from VARCHAR, transfer_window VARCHAR, country VARCHAR)
SELECT moving_from FROM table_name_28 WHERE transfer_window = "winter" AND country = "wal"
### Context: CREATE TABLE table_name_28 (moving_from VARCHAR, transfer_window VARCHAR, country VARCHAR) ### Question: Who is moving during winter from wal? ### Answer: SELECT moving_from FROM table_name_28 WHERE transfer_window = "winter" AND country = "wal"
Which original artist has a Episode of workshop #1?
CREATE TABLE table_name_32 (original_artist VARCHAR, episode VARCHAR)
SELECT original_artist FROM table_name_32 WHERE episode = "workshop #1"
### Context: CREATE TABLE table_name_32 (original_artist VARCHAR, episode VARCHAR) ### Question: Which original artist has a Episode of workshop #1? ### Answer: SELECT original_artist FROM table_name_32 WHERE episode = "workshop #1"
Which theme has a Episode of top 6?
CREATE TABLE table_name_79 (theme VARCHAR, episode VARCHAR)
SELECT theme FROM table_name_79 WHERE episode = "top 6"
### Context: CREATE TABLE table_name_79 (theme VARCHAR, episode VARCHAR) ### Question: Which theme has a Episode of top 6? ### Answer: SELECT theme FROM table_name_79 WHERE episode = "top 6"
Which Theme has a Order # of 9?
CREATE TABLE table_name_5 (theme VARCHAR, order__number VARCHAR)
SELECT theme FROM table_name_5 WHERE order__number = "9"
### Context: CREATE TABLE table_name_5 (theme VARCHAR, order__number VARCHAR) ### Question: Which Theme has a Order # of 9? ### Answer: SELECT theme FROM table_name_5 WHERE order__number = "9"
What was the score on August 19?
CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_65 WHERE date = "august 19"
### Context: CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR) ### Question: What was the score on August 19? ### Answer: SELECT score FROM table_name_65 WHERE date = "august 19"
Where the time is 2:46, what is the record?
CREATE TABLE table_name_83 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_83 WHERE time = "2:46"
### Context: CREATE TABLE table_name_83 (record VARCHAR, time VARCHAR) ### Question: Where the time is 2:46, what is the record? ### Answer: SELECT record FROM table_name_83 WHERE time = "2:46"
What is the Date, when the home team is the NY Rangers?
CREATE TABLE table_name_22 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_22 WHERE home = "ny rangers"
### Context: CREATE TABLE table_name_22 (date VARCHAR, home VARCHAR) ### Question: What is the Date, when the home team is the NY Rangers? ### Answer: SELECT date FROM table_name_22 WHERE home = "ny rangers"
Power of 220kw (299hp) @ 4000 has what torque?
CREATE TABLE table_name_38 (torque VARCHAR, power VARCHAR)
SELECT torque FROM table_name_38 WHERE power = "220kw (299hp) @ 4000"
### Context: CREATE TABLE table_name_38 (torque VARCHAR, power VARCHAR) ### Question: Power of 220kw (299hp) @ 4000 has what torque? ### Answer: SELECT torque FROM table_name_38 WHERE power = "220kw (299hp) @ 4000"
What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002?
CREATE TABLE table_name_95 (displacement VARCHAR, year VARCHAR, power VARCHAR)
SELECT displacement FROM table_name_95 WHERE year > 2002 AND power = "220kw (299hp) @ 4000"
### Context: CREATE TABLE table_name_95 (displacement VARCHAR, year VARCHAR, power VARCHAR) ### Question: What is the Displacement that has Power of 220kw (299hp) @ 4000, and a year larger than 2002? ### Answer: SELECT displacement FROM table_name_95 WHERE year > 2002 AND power = "220kw (299hp) @ 4000"
Displacement of 4.4l (4423cc/269in³) and a Power of 220kw (299hp) @ 4000 belongs to what engine?
CREATE TABLE table_name_21 (engine VARCHAR, displacement VARCHAR, power VARCHAR)
SELECT engine FROM table_name_21 WHERE displacement = "4.4l (4423cc/269in³)" AND power = "220kw (299hp) @ 4000"
### Context: CREATE TABLE table_name_21 (engine VARCHAR, displacement VARCHAR, power VARCHAR) ### Question: Displacement of 4.4l (4423cc/269in³) and a Power of 220kw (299hp) @ 4000 belongs to what engine? ### Answer: SELECT engine FROM table_name_21 WHERE displacement = "4.4l (4423cc/269in³)" AND power = "220kw (299hp) @ 4000"
What week was the Original artist, the police ?
CREATE TABLE table_name_5 (week VARCHAR, original_artist VARCHAR)
SELECT week FROM table_name_5 WHERE original_artist = "the police"
### Context: CREATE TABLE table_name_5 (week VARCHAR, original_artist VARCHAR) ### Question: What week was the Original artist, the police ? ### Answer: SELECT week FROM table_name_5 WHERE original_artist = "the police"
Which song garnered an advanced result during top 20 week ?
CREATE TABLE table_name_38 (song_choice VARCHAR, result VARCHAR, week VARCHAR)
SELECT song_choice FROM table_name_38 WHERE result = "advanced" AND week = "top 20"
### Context: CREATE TABLE table_name_38 (song_choice VARCHAR, result VARCHAR, week VARCHAR) ### Question: Which song garnered an advanced result during top 20 week ? ### Answer: SELECT song_choice FROM table_name_38 WHERE result = "advanced" AND week = "top 20"
Which Malaysia Satellite tournaments were played after 1998?
CREATE TABLE table_name_52 (outcome VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_52 WHERE year > 1998 AND tournament = "malaysia satellite"
### Context: CREATE TABLE table_name_52 (outcome VARCHAR, year VARCHAR, tournament VARCHAR) ### Question: Which Malaysia Satellite tournaments were played after 1998? ### Answer: SELECT outcome FROM table_name_52 WHERE year > 1998 AND tournament = "malaysia satellite"
Who was the runner-up for the Bulgaria Open, before 2007?
CREATE TABLE table_name_40 (score VARCHAR, tournament VARCHAR, year VARCHAR, outcome VARCHAR)
SELECT score FROM table_name_40 WHERE year < 2007 AND outcome = "runner-up" AND tournament = "bulgaria open"
### Context: CREATE TABLE table_name_40 (score VARCHAR, tournament VARCHAR, year VARCHAR, outcome VARCHAR) ### Question: Who was the runner-up for the Bulgaria Open, before 2007? ### Answer: SELECT score FROM table_name_40 WHERE year < 2007 AND outcome = "runner-up" AND tournament = "bulgaria open"
What was the score of the player who played against Wong Choong Hann in the Dutch Open?
CREATE TABLE table_name_47 (score VARCHAR, tournament VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_47 WHERE tournament = "dutch open" AND opponent = "wong choong hann"
### Context: CREATE TABLE table_name_47 (score VARCHAR, tournament VARCHAR, opponent VARCHAR) ### Question: What was the score of the player who played against Wong Choong Hann in the Dutch Open? ### Answer: SELECT score FROM table_name_47 WHERE tournament = "dutch open" AND opponent = "wong choong hann"
What was the outcome of the match against Nguyen Tien Minh in the Bulgaria Open?
CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_51 WHERE opponent = "nguyen tien minh" AND tournament = "bulgaria open"
### Context: CREATE TABLE table_name_51 (outcome VARCHAR, opponent VARCHAR, tournament VARCHAR) ### Question: What was the outcome of the match against Nguyen Tien Minh in the Bulgaria Open? ### Answer: SELECT outcome FROM table_name_51 WHERE opponent = "nguyen tien minh" AND tournament = "bulgaria open"
What was the final score when the New York Jets were the Visiting Team?
CREATE TABLE table_name_86 (final_score VARCHAR, visiting_team VARCHAR)
SELECT final_score FROM table_name_86 WHERE visiting_team = "new york jets"
### Context: CREATE TABLE table_name_86 (final_score VARCHAR, visiting_team VARCHAR) ### Question: What was the final score when the New York Jets were the Visiting Team? ### Answer: SELECT final_score FROM table_name_86 WHERE visiting_team = "new york jets"
When were the Cleveland Browns the visiting team?
CREATE TABLE table_name_62 (date VARCHAR, visiting_team VARCHAR)
SELECT date FROM table_name_62 WHERE visiting_team = "cleveland browns"
### Context: CREATE TABLE table_name_62 (date VARCHAR, visiting_team VARCHAR) ### Question: When were the Cleveland Browns the visiting team? ### Answer: SELECT date FROM table_name_62 WHERE visiting_team = "cleveland browns"
Where were the New York Jets visiting?
CREATE TABLE table_name_65 (stadium VARCHAR, visiting_team VARCHAR)
SELECT stadium FROM table_name_65 WHERE visiting_team = "new york jets"
### Context: CREATE TABLE table_name_65 (stadium VARCHAR, visiting_team VARCHAR) ### Question: Where were the New York Jets visiting? ### Answer: SELECT stadium FROM table_name_65 WHERE visiting_team = "new york jets"
What was the final score in Robert F. Kennedy Memorial Stadium?
CREATE TABLE table_name_26 (final_score VARCHAR, stadium VARCHAR)
SELECT final_score FROM table_name_26 WHERE stadium = "robert f. kennedy memorial stadium"
### Context: CREATE TABLE table_name_26 (final_score VARCHAR, stadium VARCHAR) ### Question: What was the final score in Robert F. Kennedy Memorial Stadium? ### Answer: SELECT final_score FROM table_name_26 WHERE stadium = "robert f. kennedy memorial stadium"
What was the visiting team on November 12?
CREATE TABLE table_name_12 (visiting_team VARCHAR, date VARCHAR)
SELECT visiting_team FROM table_name_12 WHERE date = "november 12"
### Context: CREATE TABLE table_name_12 (visiting_team VARCHAR, date VARCHAR) ### Question: What was the visiting team on November 12? ### Answer: SELECT visiting_team FROM table_name_12 WHERE date = "november 12"
In what stadium were the New England Patriots the visiting team?
CREATE TABLE table_name_13 (stadium VARCHAR, visiting_team VARCHAR)
SELECT stadium FROM table_name_13 WHERE visiting_team = "new england patriots"
### Context: CREATE TABLE table_name_13 (stadium VARCHAR, visiting_team VARCHAR) ### Question: In what stadium were the New England Patriots the visiting team? ### Answer: SELECT stadium FROM table_name_13 WHERE visiting_team = "new england patriots"
If the games played are smaller than 18, what are the lowest goals conceded?
CREATE TABLE table_name_72 (goals_conceded INTEGER, played INTEGER)
SELECT MIN(goals_conceded) FROM table_name_72 WHERE played < 18
### Context: CREATE TABLE table_name_72 (goals_conceded INTEGER, played INTEGER) ### Question: If the games played are smaller than 18, what are the lowest goals conceded? ### Answer: SELECT MIN(goals_conceded) FROM table_name_72 WHERE played < 18
If the place is smaller than 8 and they played more than 18, what is the total number of goals conceded?
CREATE TABLE table_name_54 (goals_conceded VARCHAR, place VARCHAR, played VARCHAR)
SELECT COUNT(goals_conceded) FROM table_name_54 WHERE place < 8 AND played > 18
### Context: CREATE TABLE table_name_54 (goals_conceded VARCHAR, place VARCHAR, played VARCHAR) ### Question: If the place is smaller than 8 and they played more than 18, what is the total number of goals conceded? ### Answer: SELECT COUNT(goals_conceded) FROM table_name_54 WHERE place < 8 AND played > 18
What is the sum of the place that has less than 2 losses?
CREATE TABLE table_name_60 (place INTEGER, lost INTEGER)
SELECT SUM(place) FROM table_name_60 WHERE lost < 2
### Context: CREATE TABLE table_name_60 (place INTEGER, lost INTEGER) ### Question: What is the sum of the place that has less than 2 losses? ### Answer: SELECT SUM(place) FROM table_name_60 WHERE lost < 2
What is the smallest width for a frame size of 5k and a height shorter than 2700?
CREATE TABLE table_name_18 (width INTEGER, frame_size VARCHAR, height VARCHAR)
SELECT MIN(width) FROM table_name_18 WHERE frame_size = "5k" AND height < 2700
### Context: CREATE TABLE table_name_18 (width INTEGER, frame_size VARCHAR, height VARCHAR) ### Question: What is the smallest width for a frame size of 5k and a height shorter than 2700? ### Answer: SELECT MIN(width) FROM table_name_18 WHERE frame_size = "5k" AND height < 2700
What was the opponent on August 29?
CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_57 WHERE date = "august 29"
### Context: CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR) ### Question: What was the opponent on August 29? ### Answer: SELECT opponent FROM table_name_57 WHERE date = "august 29"
Which team had the attendance of 16,468 and lost?
CREATE TABLE table_name_61 (loss VARCHAR, attendance VARCHAR)
SELECT loss FROM table_name_61 WHERE attendance = "16,468"
### Context: CREATE TABLE table_name_61 (loss VARCHAR, attendance VARCHAR) ### Question: Which team had the attendance of 16,468 and lost? ### Answer: SELECT loss FROM table_name_61 WHERE attendance = "16,468"
What opponent has a loss of Trachsel (10-11)?
CREATE TABLE table_name_12 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_12 WHERE loss = "trachsel (10-11)"
### Context: CREATE TABLE table_name_12 (opponent VARCHAR, loss VARCHAR) ### Question: What opponent has a loss of Trachsel (10-11)? ### Answer: SELECT opponent FROM table_name_12 WHERE loss = "trachsel (10-11)"
What was the attendance on August 8?
CREATE TABLE table_name_47 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_47 WHERE date = "august 8"
### Context: CREATE TABLE table_name_47 (attendance VARCHAR, date VARCHAR) ### Question: What was the attendance on August 8? ### Answer: SELECT attendance FROM table_name_47 WHERE date = "august 8"
Which rapid has a distance in km smaller than 14.2, and a Station of kōmyōji?
CREATE TABLE table_name_91 (rapid VARCHAR, distance__km_ VARCHAR, station VARCHAR)
SELECT rapid FROM table_name_91 WHERE distance__km_ < 14.2 AND station = "kōmyōji"
### Context: CREATE TABLE table_name_91 (rapid VARCHAR, distance__km_ VARCHAR, station VARCHAR) ### Question: Which rapid has a distance in km smaller than 14.2, and a Station of kōmyōji? ### Answer: SELECT rapid FROM table_name_91 WHERE distance__km_ < 14.2 AND station = "kōmyōji"
What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?
CREATE TABLE table_name_14 (other INTEGER, name VARCHAR, total VARCHAR)
SELECT SUM(other) FROM table_name_14 WHERE name = "simon gillett category:articles with hcards" AND total < 34
### Context: CREATE TABLE table_name_14 (other INTEGER, name VARCHAR, total VARCHAR) ### Question: What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34? ### Answer: SELECT SUM(other) FROM table_name_14 WHERE name = "simon gillett category:articles with hcards" AND total < 34
What is the sum of the value "League Cup", when the Total is less than 1, and when the League is less than 0?
CREATE TABLE table_name_7 (league INTEGER, total VARCHAR)
SELECT SUM(league) AS Cup FROM table_name_7 WHERE total < 1 AND league < 0
### Context: CREATE TABLE table_name_7 (league INTEGER, total VARCHAR) ### Question: What is the sum of the value "League Cup", when the Total is less than 1, and when the League is less than 0? ### Answer: SELECT SUM(league) AS Cup FROM table_name_7 WHERE total < 1 AND league < 0
What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3?
CREATE TABLE table_name_60 (total INTEGER, name VARCHAR, other VARCHAR)
SELECT AVG(total) FROM table_name_60 WHERE name = "simon gillett category:articles with hcards" AND other > 3
### Context: CREATE TABLE table_name_60 (total INTEGER, name VARCHAR, other VARCHAR) ### Question: What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3? ### Answer: SELECT AVG(total) FROM table_name_60 WHERE name = "simon gillett category:articles with hcards" AND other > 3
What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1?
CREATE TABLE table_name_68 (league INTEGER, other VARCHAR, name VARCHAR)
SELECT SUM(league) AS Cup FROM table_name_68 WHERE other < 1 AND name = "gareth farrelly category:articles with hcards" AND league > 1
### Context: CREATE TABLE table_name_68 (league INTEGER, other VARCHAR, name VARCHAR) ### Question: What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1? ### Answer: SELECT SUM(league) AS Cup FROM table_name_68 WHERE other < 1 AND name = "gareth farrelly category:articles with hcards" AND league > 1
Name the champion for christopher miles runner-up
CREATE TABLE table_name_52 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_name_52 WHERE runner_up = "christopher miles"
### Context: CREATE TABLE table_name_52 (champion VARCHAR, runner_up VARCHAR) ### Question: Name the champion for christopher miles runner-up ### Answer: SELECT champion FROM table_name_52 WHERE runner_up = "christopher miles"
Name the champion for 2000
CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR)
SELECT champion FROM table_name_52 WHERE year = "2000"
### Context: CREATE TABLE table_name_52 (champion VARCHAR, year VARCHAR) ### Question: Name the champion for 2000 ### Answer: SELECT champion FROM table_name_52 WHERE year = "2000"
Name the location for 1998
CREATE TABLE table_name_26 (location VARCHAR, year VARCHAR)
SELECT location FROM table_name_26 WHERE year = "1998"
### Context: CREATE TABLE table_name_26 (location VARCHAR, year VARCHAR) ### Question: Name the location for 1998 ### Answer: SELECT location FROM table_name_26 WHERE year = "1998"
How many gold medals correspond with a total over 4?
CREATE TABLE table_name_42 (gold VARCHAR, total INTEGER)
SELECT gold FROM table_name_42 WHERE total > 4
### Context: CREATE TABLE table_name_42 (gold VARCHAR, total INTEGER) ### Question: How many gold medals correspond with a total over 4? ### Answer: SELECT gold FROM table_name_42 WHERE total > 4
What is the sum of gold medals with a total of 12 medals and less than 4 bronze medals?
CREATE TABLE table_name_72 (gold INTEGER, total VARCHAR, bronze VARCHAR)
SELECT SUM(gold) FROM table_name_72 WHERE total = 12 AND bronze < 4
### Context: CREATE TABLE table_name_72 (gold INTEGER, total VARCHAR, bronze VARCHAR) ### Question: What is the sum of gold medals with a total of 12 medals and less than 4 bronze medals? ### Answer: SELECT SUM(gold) FROM table_name_72 WHERE total = 12 AND bronze < 4
What is the smallest number of gold medals corresponding to the total rank with more than 4 bronze medals?
CREATE TABLE table_name_7 (gold INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT MIN(gold) FROM table_name_7 WHERE rank = "total" AND bronze > 4
### Context: CREATE TABLE table_name_7 (gold INTEGER, rank VARCHAR, bronze VARCHAR) ### Question: What is the smallest number of gold medals corresponding to the total rank with more than 4 bronze medals? ### Answer: SELECT MIN(gold) FROM table_name_7 WHERE rank = "total" AND bronze > 4
What is the smallest number of bronze medals with more than 4 gold medals?
CREATE TABLE table_name_7 (bronze INTEGER, gold INTEGER)
SELECT MIN(bronze) FROM table_name_7 WHERE gold > 4
### Context: CREATE TABLE table_name_7 (bronze INTEGER, gold INTEGER) ### Question: What is the smallest number of bronze medals with more than 4 gold medals? ### Answer: SELECT MIN(bronze) FROM table_name_7 WHERE gold > 4
The candidate with Riding of st. john's south—mount pearl is what gender?
CREATE TABLE table_name_3 (gender VARCHAR, riding VARCHAR)
SELECT gender FROM table_name_3 WHERE riding = "st. john's south—mount pearl"
### Context: CREATE TABLE table_name_3 (gender VARCHAR, riding VARCHAR) ### Question: The candidate with Riding of st. john's south—mount pearl is what gender? ### Answer: SELECT gender FROM table_name_3 WHERE riding = "st. john's south—mount pearl"
Which number has a 0.35 percentage?
CREATE TABLE table_name_26 (number VARCHAR, percentage___percentage_ VARCHAR)
SELECT number FROM table_name_26 WHERE percentage___percentage_ = "0.35"
### Context: CREATE TABLE table_name_26 (number VARCHAR, percentage___percentage_ VARCHAR) ### Question: Which number has a 0.35 percentage? ### Answer: SELECT number FROM table_name_26 WHERE percentage___percentage_ = "0.35"
What is the percentage for Russian?
CREATE TABLE table_name_90 (percentage___percentage_ VARCHAR, language VARCHAR)
SELECT percentage___percentage_ FROM table_name_90 WHERE language = "russian"
### Context: CREATE TABLE table_name_90 (percentage___percentage_ VARCHAR, language VARCHAR) ### Question: What is the percentage for Russian? ### Answer: SELECT percentage___percentage_ FROM table_name_90 WHERE language = "russian"
How many males speak Russian?
CREATE TABLE table_name_3 (males VARCHAR, language VARCHAR)
SELECT males FROM table_name_3 WHERE language = "russian"
### Context: CREATE TABLE table_name_3 (males VARCHAR, language VARCHAR) ### Question: How many males speak Russian? ### Answer: SELECT males FROM table_name_3 WHERE language = "russian"
Who is the writer for Red Rose Chain LTD?
CREATE TABLE table_name_4 (writer_s_ VARCHAR, recipient VARCHAR)
SELECT writer_s_ FROM table_name_4 WHERE recipient = "red rose chain ltd"
### Context: CREATE TABLE table_name_4 (writer_s_ VARCHAR, recipient VARCHAR) ### Question: Who is the writer for Red Rose Chain LTD? ### Answer: SELECT writer_s_ FROM table_name_4 WHERE recipient = "red rose chain ltd"
Which producer did Daniel Cormack direct?
CREATE TABLE table_name_50 (producer_s_ VARCHAR, director_s_ VARCHAR)
SELECT producer_s_ FROM table_name_50 WHERE director_s_ = "daniel cormack"
### Context: CREATE TABLE table_name_50 (producer_s_ VARCHAR, director_s_ VARCHAR) ### Question: Which producer did Daniel Cormack direct? ### Answer: SELECT producer_s_ FROM table_name_50 WHERE director_s_ = "daniel cormack"
Who produced Laura Tunstall?
CREATE TABLE table_name_91 (producer_s_ VARCHAR, recipient VARCHAR)
SELECT producer_s_ FROM table_name_91 WHERE recipient = "laura tunstall"
### Context: CREATE TABLE table_name_91 (producer_s_ VARCHAR, recipient VARCHAR) ### Question: Who produced Laura Tunstall? ### Answer: SELECT producer_s_ FROM table_name_91 WHERE recipient = "laura tunstall"
Who wrote the film Jehovah's Witness?
CREATE TABLE table_name_5 (writer_s_ VARCHAR, film VARCHAR)
SELECT writer_s_ FROM table_name_5 WHERE film = "jehovah's witness"
### Context: CREATE TABLE table_name_5 (writer_s_ VARCHAR, film VARCHAR) ### Question: Who wrote the film Jehovah's Witness? ### Answer: SELECT writer_s_ FROM table_name_5 WHERE film = "jehovah's witness"
When did Hein Vergeer have a distance of 5,000m?
CREATE TABLE table_name_7 (date VARCHAR, distance VARCHAR)
SELECT date FROM table_name_7 WHERE distance = "5,000m"
### Context: CREATE TABLE table_name_7 (date VARCHAR, distance VARCHAR) ### Question: When did Hein Vergeer have a distance of 5,000m? ### Answer: SELECT date FROM table_name_7 WHERE distance = "5,000m"
What were the notes during the distance of Men's Speed Skating?
CREATE TABLE table_name_57 (notes VARCHAR, distance VARCHAR)
SELECT notes FROM table_name_57 WHERE distance = "men's speed skating"
### Context: CREATE TABLE table_name_57 (notes VARCHAR, distance VARCHAR) ### Question: What were the notes during the distance of Men's Speed Skating? ### Answer: SELECT notes FROM table_name_57 WHERE distance = "men's speed skating"
What date has the competition of uefa euro 2012 qualifying?
CREATE TABLE table_name_77 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_77 WHERE competition = "uefa euro 2012 qualifying"
### Context: CREATE TABLE table_name_77 (date VARCHAR, competition VARCHAR) ### Question: What date has the competition of uefa euro 2012 qualifying? ### Answer: SELECT date FROM table_name_77 WHERE competition = "uefa euro 2012 qualifying"
What is the Grade that has Turf 1600m?
CREATE TABLE table_name_27 (grade VARCHAR, priority_entry_rights_to_derby VARCHAR)
SELECT grade FROM table_name_27 WHERE priority_entry_rights_to_derby = "turf 1600m"
### Context: CREATE TABLE table_name_27 (grade VARCHAR, priority_entry_rights_to_derby VARCHAR) ### Question: What is the Grade that has Turf 1600m? ### Answer: SELECT grade FROM table_name_27 WHERE priority_entry_rights_to_derby = "turf 1600m"
What is the Priority-entry-rights to Derby in rank 4?
CREATE TABLE table_name_51 (priority_entry_rights_to_derby VARCHAR, race_name VARCHAR)
SELECT priority_entry_rights_to_derby FROM table_name_51 WHERE NOT race_name = 4
### Context: CREATE TABLE table_name_51 (priority_entry_rights_to_derby VARCHAR, race_name VARCHAR) ### Question: What is the Priority-entry-rights to Derby in rank 4? ### Answer: SELECT priority_entry_rights_to_derby FROM table_name_51 WHERE NOT race_name = 4
How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737?
CREATE TABLE table_name_59 (baia_mare VARCHAR, zalau VARCHAR, electrica_north_transylvania VARCHAR, bistrita VARCHAR)
SELECT COUNT(baia_mare) FROM table_name_59 WHERE electrica_north_transylvania < 14.476 AND bistrita = 643 AND zalau < 737
### Context: CREATE TABLE table_name_59 (baia_mare VARCHAR, zalau VARCHAR, electrica_north_transylvania VARCHAR, bistrita VARCHAR) ### Question: How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737? ### Answer: SELECT COUNT(baia_mare) FROM table_name_59 WHERE electrica_north_transylvania < 14.476 AND bistrita = 643 AND zalau < 737
What is the smallest Satu Mare value associated with Baia Mare over 523?
CREATE TABLE table_name_37 (satu_mare INTEGER, baia_mare INTEGER)
SELECT MIN(satu_mare) FROM table_name_37 WHERE baia_mare > 523
### Context: CREATE TABLE table_name_37 (satu_mare INTEGER, baia_mare INTEGER) ### Question: What is the smallest Satu Mare value associated with Baia Mare over 523? ### Answer: SELECT MIN(satu_mare) FROM table_name_37 WHERE baia_mare > 523
Which Word wrap support has a Format of mobipocket?
CREATE TABLE table_name_65 (word_wrap_support VARCHAR, format VARCHAR)
SELECT word_wrap_support FROM table_name_65 WHERE format = "mobipocket"
### Context: CREATE TABLE table_name_65 (word_wrap_support VARCHAR, format VARCHAR) ### Question: Which Word wrap support has a Format of mobipocket? ### Answer: SELECT word_wrap_support FROM table_name_65 WHERE format = "mobipocket"
Which Interactivity support has a Format of fictionbook?
CREATE TABLE table_name_75 (interactivity_support VARCHAR, format VARCHAR)
SELECT interactivity_support FROM table_name_75 WHERE format = "fictionbook"
### Context: CREATE TABLE table_name_75 (interactivity_support VARCHAR, format VARCHAR) ### Question: Which Interactivity support has a Format of fictionbook? ### Answer: SELECT interactivity_support FROM table_name_75 WHERE format = "fictionbook"
Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no?
CREATE TABLE table_name_64 (filename_extension VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, open_standard VARCHAR)
SELECT filename_extension FROM table_name_64 WHERE interactivity_support = "no" AND open_standard = "yes" AND image_support = "no"
### Context: CREATE TABLE table_name_64 (filename_extension VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, open_standard VARCHAR) ### Question: Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no? ### Answer: SELECT filename_extension FROM table_name_64 WHERE interactivity_support = "no" AND open_standard = "yes" AND image_support = "no"
Which Filename extension has a Word wrap support of yes, an Open standard of no, and an Interactivity support of yes?
CREATE TABLE table_name_26 (filename_extension VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR, open_standard VARCHAR)
SELECT filename_extension FROM table_name_26 WHERE word_wrap_support = "yes" AND open_standard = "no" AND interactivity_support = "yes"
### Context: CREATE TABLE table_name_26 (filename_extension VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR, open_standard VARCHAR) ### Question: Which Filename extension has a Word wrap support of yes, an Open standard of no, and an Interactivity support of yes? ### Answer: SELECT filename_extension FROM table_name_26 WHERE word_wrap_support = "yes" AND open_standard = "no" AND interactivity_support = "yes"
Which Format has an Interactivity support of no, a Word wrap support of yes, an Image support of yes, and an Open standard of yes?
CREATE TABLE table_name_22 (format VARCHAR, open_standard VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR)
SELECT format FROM table_name_22 WHERE interactivity_support = "no" AND word_wrap_support = "yes" AND image_support = "yes" AND open_standard = "yes"
### Context: CREATE TABLE table_name_22 (format VARCHAR, open_standard VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR) ### Question: Which Format has an Interactivity support of no, a Word wrap support of yes, an Image support of yes, and an Open standard of yes? ### Answer: SELECT format FROM table_name_22 WHERE interactivity_support = "no" AND word_wrap_support = "yes" AND image_support = "yes" AND open_standard = "yes"
Position of guard, and a Pick # larger than 9 is what highest round?
CREATE TABLE table_name_67 (round INTEGER, position VARCHAR, pick__number VARCHAR)
SELECT MAX(round) FROM table_name_67 WHERE position = "guard" AND pick__number > 9
### Context: CREATE TABLE table_name_67 (round INTEGER, position VARCHAR, pick__number VARCHAR) ### Question: Position of guard, and a Pick # larger than 9 is what highest round? ### Answer: SELECT MAX(round) FROM table_name_67 WHERE position = "guard" AND pick__number > 9
Pick # smaller than 11, and a Name of von hutchins belongs to what college?
CREATE TABLE table_name_55 (college VARCHAR, pick__number VARCHAR, name VARCHAR)
SELECT college FROM table_name_55 WHERE pick__number < 11 AND name = "von hutchins"
### Context: CREATE TABLE table_name_55 (college VARCHAR, pick__number VARCHAR, name VARCHAR) ### Question: Pick # smaller than 11, and a Name of von hutchins belongs to what college? ### Answer: SELECT college FROM table_name_55 WHERE pick__number < 11 AND name = "von hutchins"
College of idaho, and an Overall smaller than 141 is what average round?
CREATE TABLE table_name_60 (round INTEGER, college VARCHAR, overall VARCHAR)
SELECT AVG(round) FROM table_name_60 WHERE college = "idaho" AND overall < 141
### Context: CREATE TABLE table_name_60 (round INTEGER, college VARCHAR, overall VARCHAR) ### Question: College of idaho, and an Overall smaller than 141 is what average round? ### Answer: SELECT AVG(round) FROM table_name_60 WHERE college = "idaho" AND overall < 141
Name of David Kimball, and an Overall smaller than 229 is what highest round?
CREATE TABLE table_name_51 (round INTEGER, name VARCHAR, overall VARCHAR)
SELECT MAX(round) FROM table_name_51 WHERE name = "david kimball" AND overall < 229
### Context: CREATE TABLE table_name_51 (round INTEGER, name VARCHAR, overall VARCHAR) ### Question: Name of David Kimball, and an Overall smaller than 229 is what highest round? ### Answer: SELECT MAX(round) FROM table_name_51 WHERE name = "david kimball" AND overall < 229
How many points did the car with the brm v8 engine have?
CREATE TABLE table_name_70 (points VARCHAR, engine VARCHAR)
SELECT COUNT(points) FROM table_name_70 WHERE engine = "brm v8"
### Context: CREATE TABLE table_name_70 (points VARCHAR, engine VARCHAR) ### Question: How many points did the car with the brm v8 engine have? ### Answer: SELECT COUNT(points) FROM table_name_70 WHERE engine = "brm v8"
Which chassis has more than 0 points and was before 1966?
CREATE TABLE table_name_59 (chassis VARCHAR, year VARCHAR, points VARCHAR)
SELECT chassis FROM table_name_59 WHERE year < 1966 AND points > 0
### Context: CREATE TABLE table_name_59 (chassis VARCHAR, year VARCHAR, points VARCHAR) ### Question: Which chassis has more than 0 points and was before 1966? ### Answer: SELECT chassis FROM table_name_59 WHERE year < 1966 AND points > 0
How many points did he average in 1964?
CREATE TABLE table_name_10 (points INTEGER, year VARCHAR)
SELECT AVG(points) FROM table_name_10 WHERE year = 1964
### Context: CREATE TABLE table_name_10 (points INTEGER, year VARCHAR) ### Question: How many points did he average in 1964? ### Answer: SELECT AVG(points) FROM table_name_10 WHERE year = 1964
Before the year 1963 what was the fewest points the climax v8 engine had?
CREATE TABLE table_name_22 (points INTEGER, engine VARCHAR, year VARCHAR)
SELECT MIN(points) FROM table_name_22 WHERE engine = "climax v8" AND year < 1963
### Context: CREATE TABLE table_name_22 (points INTEGER, engine VARCHAR, year VARCHAR) ### Question: Before the year 1963 what was the fewest points the climax v8 engine had? ### Answer: SELECT MIN(points) FROM table_name_22 WHERE engine = "climax v8" AND year < 1963
What was the earliest year that had less than 1 point?
CREATE TABLE table_name_85 (year INTEGER, points INTEGER)
SELECT MIN(year) FROM table_name_85 WHERE points < 1
### Context: CREATE TABLE table_name_85 (year INTEGER, points INTEGER) ### Question: What was the earliest year that had less than 1 point? ### Answer: SELECT MIN(year) FROM table_name_85 WHERE points < 1
How many were in attendance on October 27, 1963?
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
SELECT MAX(attendance) FROM table_name_33 WHERE date = "october 27, 1963"
### Context: CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR) ### Question: How many were in attendance on October 27, 1963? ### Answer: SELECT MAX(attendance) FROM table_name_33 WHERE date = "october 27, 1963"
which # / county is correct for year less than 1981 and chalmers as location?
CREATE TABLE table_name_90 (_number___county VARCHAR, year_joined VARCHAR, location VARCHAR)
SELECT _number___county FROM table_name_90 WHERE year_joined < 1981 AND location = "chalmers"
### Context: CREATE TABLE table_name_90 (_number___county VARCHAR, year_joined VARCHAR, location VARCHAR) ### Question: which # / county is correct for year less than 1981 and chalmers as location? ### Answer: SELECT _number___county FROM table_name_90 WHERE year_joined < 1981 AND location = "chalmers"
what is the correct year for # / county of 09 cass?
CREATE TABLE table_name_65 (year_joined VARCHAR, _number___county VARCHAR)
SELECT year_joined FROM table_name_65 WHERE _number___county = "09 cass"
### Context: CREATE TABLE table_name_65 (year_joined VARCHAR, _number___county VARCHAR) ### Question: what is the correct year for # / county of 09 cass? ### Answer: SELECT year_joined FROM table_name_65 WHERE _number___county = "09 cass"
what's the mascot for 66 pulaski 2?
CREATE TABLE table_name_39 (mascot VARCHAR, _number___county VARCHAR)
SELECT mascot FROM table_name_39 WHERE _number___county = "66 pulaski 2"
### Context: CREATE TABLE table_name_39 (mascot VARCHAR, _number___county VARCHAR) ### Question: what's the mascot for 66 pulaski 2? ### Answer: SELECT mascot FROM table_name_39 WHERE _number___county = "66 pulaski 2"
What is the total bronze with a Silver of 2, and a Gold smaller than 0?
CREATE TABLE table_name_85 (bronze INTEGER, silver VARCHAR, gold VARCHAR)
SELECT SUM(bronze) FROM table_name_85 WHERE silver = 2 AND gold < 0
### Context: CREATE TABLE table_name_85 (bronze INTEGER, silver VARCHAR, gold VARCHAR) ### Question: What is the total bronze with a Silver of 2, and a Gold smaller than 0? ### Answer: SELECT SUM(bronze) FROM table_name_85 WHERE silver = 2 AND gold < 0