question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What week had a game that was played on November 11, 1962? | CREATE TABLE table_name_86 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_86 WHERE date = "november 11, 1962" | ### Context: CREATE TABLE table_name_86 (week INTEGER, date VARCHAR) ### Question: What week had a game that was played on November 11, 1962? ### Answer: SELECT AVG(week) FROM table_name_86 WHERE date = "november 11, 1962" |
Who is the author of Bludgeoning Angel Dokuro-Chan? | CREATE TABLE table_name_49 (author VARCHAR, title VARCHAR) | SELECT author FROM table_name_49 WHERE title = "bludgeoning angel dokuro-chan" | ### Context: CREATE TABLE table_name_49 (author VARCHAR, title VARCHAR) ### Question: Who is the author of Bludgeoning Angel Dokuro-Chan? ### Answer: SELECT author FROM table_name_49 WHERE title = "bludgeoning angel dokuro-chan" |
What was the manner of departure for the outgoing manager, miguel brindisi? | CREATE TABLE table_name_24 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT manner_of_departure FROM table_name_24 WHERE outgoing_manager = "miguel brindisi" | ### Context: CREATE TABLE table_name_24 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) ### Question: What was the manner of departure for the outgoing manager, miguel brindisi? ### Answer: SELECT manner_of_departure FROM table_name_24 WHERE outgoing_manager = "miguel brindisi" |
Who was the outgoing manager for the team, necaxa? | CREATE TABLE table_name_28 (outgoing_manager VARCHAR, team VARCHAR) | SELECT outgoing_manager FROM table_name_28 WHERE team = "necaxa" | ### Context: CREATE TABLE table_name_28 (outgoing_manager VARCHAR, team VARCHAR) ### Question: Who was the outgoing manager for the team, necaxa? ### Answer: SELECT outgoing_manager FROM table_name_28 WHERE team = "necaxa" |
Who was the winner when the finalist was fsv frankfurt? | CREATE TABLE table_name_31 (winner VARCHAR, finalist VARCHAR) | SELECT winner FROM table_name_31 WHERE finalist = "fsv frankfurt" | ### Context: CREATE TABLE table_name_31 (winner VARCHAR, finalist VARCHAR) ### Question: Who was the winner when the finalist was fsv frankfurt? ### Answer: SELECT winner FROM table_name_31 WHERE finalist = "fsv frankfurt" |
Who was the finalist when the winner was First Vienna FC? | CREATE TABLE table_name_83 (finalist VARCHAR, winner VARCHAR) | SELECT finalist FROM table_name_83 WHERE winner = "first vienna fc" | ### Context: CREATE TABLE table_name_83 (finalist VARCHAR, winner VARCHAR) ### Question: Who was the finalist when the winner was First Vienna FC? ### Answer: SELECT finalist FROM table_name_83 WHERE winner = "first vienna fc" |
How did the manager replaced by Wolfgang Frank depart? | CREATE TABLE table_name_93 (manner_of_departure VARCHAR, replaced_by VARCHAR) | SELECT manner_of_departure FROM table_name_93 WHERE replaced_by = "wolfgang frank" | ### Context: CREATE TABLE table_name_93 (manner_of_departure VARCHAR, replaced_by VARCHAR) ### Question: How did the manager replaced by Wolfgang Frank depart? ### Answer: SELECT manner_of_departure FROM table_name_93 WHERE replaced_by = "wolfgang frank" |
Who was hired to fill the spot that became vacant on 3 March 2009? | CREATE TABLE table_name_11 (replaced_by VARCHAR, date_of_vacancy VARCHAR) | SELECT replaced_by FROM table_name_11 WHERE date_of_vacancy = "3 march 2009" | ### Context: CREATE TABLE table_name_11 (replaced_by VARCHAR, date_of_vacancy VARCHAR) ### Question: Who was hired to fill the spot that became vacant on 3 March 2009? ### Answer: SELECT replaced_by FROM table_name_11 WHERE date_of_vacancy = "3 march 2009" |
What is the name of the person that was appointed on 13 May 2009? | CREATE TABLE table_name_74 (replaced_by VARCHAR, date_of_appointment VARCHAR) | SELECT replaced_by FROM table_name_74 WHERE date_of_appointment = "13 may 2009" | ### Context: CREATE TABLE table_name_74 (replaced_by VARCHAR, date_of_appointment VARCHAR) ### Question: What is the name of the person that was appointed on 13 May 2009? ### Answer: SELECT replaced_by FROM table_name_74 WHERE date_of_appointment = "13 may 2009" |
How did the manager replaced by Michael Oenning depart? | CREATE TABLE table_name_56 (manner_of_departure VARCHAR, replaced_by VARCHAR) | SELECT manner_of_departure FROM table_name_56 WHERE replaced_by = "michael oenning" | ### Context: CREATE TABLE table_name_56 (manner_of_departure VARCHAR, replaced_by VARCHAR) ### Question: How did the manager replaced by Michael Oenning depart? ### Answer: SELECT manner_of_departure FROM table_name_56 WHERE replaced_by = "michael oenning" |
What is the name of the manager that was replaced by Michael Oenning? | CREATE TABLE table_name_62 (outgoing_manager VARCHAR, replaced_by VARCHAR) | SELECT outgoing_manager FROM table_name_62 WHERE replaced_by = "michael oenning" | ### Context: CREATE TABLE table_name_62 (outgoing_manager VARCHAR, replaced_by VARCHAR) ### Question: What is the name of the manager that was replaced by Michael Oenning? ### Answer: SELECT outgoing_manager FROM table_name_62 WHERE replaced_by = "michael oenning" |
Which Home Team has a Game of game 1? | CREATE TABLE table_name_24 (home_team VARCHAR, game VARCHAR) | SELECT home_team FROM table_name_24 WHERE game = "game 1" | ### Context: CREATE TABLE table_name_24 (home_team VARCHAR, game VARCHAR) ### Question: Which Home Team has a Game of game 1? ### Answer: SELECT home_team FROM table_name_24 WHERE game = "game 1" |
Which Game has a Home Team of san francisco, and a Date of april 22? | CREATE TABLE table_name_80 (game VARCHAR, home_team VARCHAR, date VARCHAR) | SELECT game FROM table_name_80 WHERE home_team = "san francisco" AND date = "april 22" | ### Context: CREATE TABLE table_name_80 (game VARCHAR, home_team VARCHAR, date VARCHAR) ### Question: Which Game has a Home Team of san francisco, and a Date of april 22? ### Answer: SELECT game FROM table_name_80 WHERE home_team = "san francisco" AND date = "april 22" |
Which Road Team has a Home Team of boston, and a Result of 124-101? | CREATE TABLE table_name_91 (road_team VARCHAR, home_team VARCHAR, result VARCHAR) | SELECT road_team FROM table_name_91 WHERE home_team = "boston" AND result = "124-101" | ### Context: CREATE TABLE table_name_91 (road_team VARCHAR, home_team VARCHAR, result VARCHAR) ### Question: Which Road Team has a Home Team of boston, and a Result of 124-101? ### Answer: SELECT road_team FROM table_name_91 WHERE home_team = "boston" AND result = "124-101" |
Which Game has a Home Team of san francisco, and a Date of april 22? | CREATE TABLE table_name_22 (game VARCHAR, home_team VARCHAR, date VARCHAR) | SELECT game FROM table_name_22 WHERE home_team = "san francisco" AND date = "april 22" | ### Context: CREATE TABLE table_name_22 (game VARCHAR, home_team VARCHAR, date VARCHAR) ### Question: Which Game has a Home Team of san francisco, and a Date of april 22? ### Answer: SELECT game FROM table_name_22 WHERE home_team = "san francisco" AND date = "april 22" |
Which Result has a Road Team of san francisco, and a Game of game 2? | CREATE TABLE table_name_77 (result VARCHAR, road_team VARCHAR, game VARCHAR) | SELECT result FROM table_name_77 WHERE road_team = "san francisco" AND game = "game 2" | ### Context: CREATE TABLE table_name_77 (result VARCHAR, road_team VARCHAR, game VARCHAR) ### Question: Which Result has a Road Team of san francisco, and a Game of game 2? ### Answer: SELECT result FROM table_name_77 WHERE road_team = "san francisco" AND game = "game 2" |
Which Home Team has a Result of 124-101? | CREATE TABLE table_name_10 (home_team VARCHAR, result VARCHAR) | SELECT home_team FROM table_name_10 WHERE result = "124-101" | ### Context: CREATE TABLE table_name_10 (home_team VARCHAR, result VARCHAR) ### Question: Which Home Team has a Result of 124-101? ### Answer: SELECT home_team FROM table_name_10 WHERE result = "124-101" |
What is the total attendance in a week less than 5 when the result was l 24-20? | CREATE TABLE table_name_16 (attendance VARCHAR, result VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_16 WHERE result = "l 24-20" AND week < 5 | ### Context: CREATE TABLE table_name_16 (attendance VARCHAR, result VARCHAR, week VARCHAR) ### Question: What is the total attendance in a week less than 5 when the result was l 24-20? ### Answer: SELECT COUNT(attendance) FROM table_name_16 WHERE result = "l 24-20" AND week < 5 |
What is the largest week with the Atlanta Falcons as the opponent? | CREATE TABLE table_name_90 (week INTEGER, opponent VARCHAR) | SELECT MAX(week) FROM table_name_90 WHERE opponent = "atlanta falcons" | ### Context: CREATE TABLE table_name_90 (week INTEGER, opponent VARCHAR) ### Question: What is the largest week with the Atlanta Falcons as the opponent? ### Answer: SELECT MAX(week) FROM table_name_90 WHERE opponent = "atlanta falcons" |
What is the total attendance in a week greater than 1 with an opponent of Philadelphia Eagles? | CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT COUNT(attendance) FROM table_name_92 WHERE week > 1 AND opponent = "philadelphia eagles" | ### Context: CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: What is the total attendance in a week greater than 1 with an opponent of Philadelphia Eagles? ### Answer: SELECT COUNT(attendance) FROM table_name_92 WHERE week > 1 AND opponent = "philadelphia eagles" |
Which Score has an Opponent of washington capitals, and a Record of 24-34-17? | CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR, record VARCHAR) | SELECT score FROM table_name_7 WHERE opponent = "washington capitals" AND record = "24-34-17" | ### Context: CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: Which Score has an Opponent of washington capitals, and a Record of 24-34-17? ### Answer: SELECT score FROM table_name_7 WHERE opponent = "washington capitals" AND record = "24-34-17" |
Which Joined has a Nickname of knights, and an Enrollment larger than 2,960? | CREATE TABLE table_name_61 (joined INTEGER, nickname VARCHAR, enrollment VARCHAR) | SELECT SUM(joined) FROM table_name_61 WHERE nickname = "knights" AND enrollment > 2 OFFSET 960 | ### Context: CREATE TABLE table_name_61 (joined INTEGER, nickname VARCHAR, enrollment VARCHAR) ### Question: Which Joined has a Nickname of knights, and an Enrollment larger than 2,960? ### Answer: SELECT SUM(joined) FROM table_name_61 WHERE nickname = "knights" AND enrollment > 2 OFFSET 960 |
Which Nickname has an Enrollment smaller than 501, and a Location of clarkesville? | CREATE TABLE table_name_37 (nickname VARCHAR, enrollment VARCHAR, location VARCHAR) | SELECT nickname FROM table_name_37 WHERE enrollment < 501 AND location = "clarkesville" | ### Context: CREATE TABLE table_name_37 (nickname VARCHAR, enrollment VARCHAR, location VARCHAR) ### Question: Which Nickname has an Enrollment smaller than 501, and a Location of clarkesville? ### Answer: SELECT nickname FROM table_name_37 WHERE enrollment < 501 AND location = "clarkesville" |
Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284? | CREATE TABLE table_name_96 (joined INTEGER, institution VARCHAR, enrollment VARCHAR) | SELECT MAX(joined) FROM table_name_96 WHERE institution = "abraham baldwin agricultural college" AND enrollment < 3 OFFSET 284 | ### Context: CREATE TABLE table_name_96 (joined INTEGER, institution VARCHAR, enrollment VARCHAR) ### Question: Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284? ### Answer: SELECT MAX(joined) FROM table_name_96 WHERE institution = "abraham baldwin agricultural college" AND enrollment < 3 OFFSET 284 |
What is Away Team Score, when Ground is Optus Oval, and when Away Team is Fremantle? | CREATE TABLE table_name_65 (away_team VARCHAR, ground VARCHAR) | SELECT away_team AS score FROM table_name_65 WHERE ground = "optus oval" AND away_team = "fremantle" | ### Context: CREATE TABLE table_name_65 (away_team VARCHAR, ground VARCHAR) ### Question: What is Away Team Score, when Ground is Optus Oval, and when Away Team is Fremantle? ### Answer: SELECT away_team AS score FROM table_name_65 WHERE ground = "optus oval" AND away_team = "fremantle" |
What is Away Team, when Ground is Colonial Stadium? | CREATE TABLE table_name_19 (away_team VARCHAR, ground VARCHAR) | SELECT away_team FROM table_name_19 WHERE ground = "colonial stadium" | ### Context: CREATE TABLE table_name_19 (away_team VARCHAR, ground VARCHAR) ### Question: What is Away Team, when Ground is Colonial Stadium? ### Answer: SELECT away_team FROM table_name_19 WHERE ground = "colonial stadium" |
A score of 71-71=142 earned what place? | CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_11 WHERE score = 71 - 71 = 142 | ### Context: CREATE TABLE table_name_11 (place VARCHAR, score VARCHAR) ### Question: A score of 71-71=142 earned what place? ### Answer: SELECT place FROM table_name_11 WHERE score = 71 - 71 = 142 |
What was José María Olazábal's score? | CREATE TABLE table_name_68 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_68 WHERE player = "josé maría olazábal" | ### Context: CREATE TABLE table_name_68 (to_par VARCHAR, player VARCHAR) ### Question: What was José María Olazábal's score? ### Answer: SELECT to_par FROM table_name_68 WHERE player = "josé maría olazábal" |
What team was the opponent on October 15, 1967? | CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_66 WHERE date = "october 15, 1967" | ### Context: CREATE TABLE table_name_66 (opponent VARCHAR, date VARCHAR) ### Question: What team was the opponent on October 15, 1967? ### Answer: SELECT opponent FROM table_name_66 WHERE date = "october 15, 1967" |
What was the lowest attendance when the Green Bay Packers played? | CREATE TABLE table_name_31 (attendance INTEGER, opponent VARCHAR) | SELECT MIN(attendance) FROM table_name_31 WHERE opponent = "green bay packers" | ### Context: CREATE TABLE table_name_31 (attendance INTEGER, opponent VARCHAR) ### Question: What was the lowest attendance when the Green Bay Packers played? ### Answer: SELECT MIN(attendance) FROM table_name_31 WHERE opponent = "green bay packers" |
What was the week number when a game was played on November 19, 1967? | CREATE TABLE table_name_15 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_15 WHERE date = "november 19, 1967" | ### Context: CREATE TABLE table_name_15 (week INTEGER, date VARCHAR) ### Question: What was the week number when a game was played on November 19, 1967? ### Answer: SELECT MIN(week) FROM table_name_15 WHERE date = "november 19, 1967" |
If a team has a grid of over 8 with less than 4 points, what's the team name? | CREATE TABLE table_name_31 (team VARCHAR, grid VARCHAR, points VARCHAR) | SELECT team FROM table_name_31 WHERE grid > 8 AND points < 4 | ### Context: CREATE TABLE table_name_31 (team VARCHAR, grid VARCHAR, points VARCHAR) ### Question: If a team has a grid of over 8 with less than 4 points, what's the team name? ### Answer: SELECT team FROM table_name_31 WHERE grid > 8 AND points < 4 |
When Patrick Carpentier is driving and has less than 19 points with 90 laps, what team is racing? | CREATE TABLE table_name_43 (team VARCHAR, driver VARCHAR, laps VARCHAR, points VARCHAR) | SELECT team FROM table_name_43 WHERE laps = 90 AND points < 19 AND driver = "patrick carpentier" | ### Context: CREATE TABLE table_name_43 (team VARCHAR, driver VARCHAR, laps VARCHAR, points VARCHAR) ### Question: When Patrick Carpentier is driving and has less than 19 points with 90 laps, what team is racing? ### Answer: SELECT team FROM table_name_43 WHERE laps = 90 AND points < 19 AND driver = "patrick carpentier" |
What was the score where the total points was 50? | CREATE TABLE table_name_34 (score VARCHAR, total_points VARCHAR) | SELECT score FROM table_name_34 WHERE total_points = 50 | ### Context: CREATE TABLE table_name_34 (score VARCHAR, total_points VARCHAR) ### Question: What was the score where the total points was 50? ### Answer: SELECT score FROM table_name_34 WHERE total_points = 50 |
For the match that had detail of 2001 nrl grand final, what was the lowest total points? | CREATE TABLE table_name_73 (total_points INTEGER, details VARCHAR) | SELECT MIN(total_points) FROM table_name_73 WHERE details = "2001 nrl grand final" | ### Context: CREATE TABLE table_name_73 (total_points INTEGER, details VARCHAR) ### Question: For the match that had detail of 2001 nrl grand final, what was the lowest total points? ### Answer: SELECT MIN(total_points) FROM table_name_73 WHERE details = "2001 nrl grand final" |
Which average Game has a High points of wilson chandler (16)? | CREATE TABLE table_name_7 (game INTEGER, high_points VARCHAR) | SELECT AVG(game) FROM table_name_7 WHERE high_points = "wilson chandler (16)" | ### Context: CREATE TABLE table_name_7 (game INTEGER, high_points VARCHAR) ### Question: Which average Game has a High points of wilson chandler (16)? ### Answer: SELECT AVG(game) FROM table_name_7 WHERE high_points = "wilson chandler (16)" |
Which Score has a Game larger than 76, a Location Attendance of madison square garden 19,763, and a High rebounds of wilson chandler (8)? | CREATE TABLE table_name_71 (score VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR) | SELECT score FROM table_name_71 WHERE game > 76 AND location_attendance = "madison square garden 19,763" AND high_rebounds = "wilson chandler (8)" | ### Context: CREATE TABLE table_name_71 (score VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR) ### Question: Which Score has a Game larger than 76, a Location Attendance of madison square garden 19,763, and a High rebounds of wilson chandler (8)? ### Answer: SELECT score FROM table_name_71 WHERE game > 76 AND location_attendance = "madison square garden 19,763" AND high_rebounds = "wilson chandler (8)" |
Which Team has a Record of 32–50? | CREATE TABLE table_name_24 (team VARCHAR, record VARCHAR) | SELECT team FROM table_name_24 WHERE record = "32–50" | ### Context: CREATE TABLE table_name_24 (team VARCHAR, record VARCHAR) ### Question: Which Team has a Record of 32–50? ### Answer: SELECT team FROM table_name_24 WHERE record = "32–50" |
Which Date has a Record of 29–47? | CREATE TABLE table_name_4 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_4 WHERE record = "29–47" | ### Context: CREATE TABLE table_name_4 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 29–47? ### Answer: SELECT date FROM table_name_4 WHERE record = "29–47" |
Which Date has a Location Attendance of madison square garden 19,763, and a High rebounds of david lee (12)? | CREATE TABLE table_name_99 (date VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR) | SELECT date FROM table_name_99 WHERE location_attendance = "madison square garden 19,763" AND high_rebounds = "david lee (12)" | ### Context: CREATE TABLE table_name_99 (date VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR) ### Question: Which Date has a Location Attendance of madison square garden 19,763, and a High rebounds of david lee (12)? ### Answer: SELECT date FROM table_name_99 WHERE location_attendance = "madison square garden 19,763" AND high_rebounds = "david lee (12)" |
Which Record has a Score of w 107–102 (ot)? | CREATE TABLE table_name_3 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_3 WHERE score = "w 107–102 (ot)" | ### Context: CREATE TABLE table_name_3 (record VARCHAR, score VARCHAR) ### Question: Which Record has a Score of w 107–102 (ot)? ### Answer: SELECT record FROM table_name_3 WHERE score = "w 107–102 (ot)" |
Which Team has a Location Attendance of fedexforum 11,731? | CREATE TABLE table_name_4 (team VARCHAR, location_attendance VARCHAR) | SELECT team FROM table_name_4 WHERE location_attendance = "fedexforum 11,731" | ### Context: CREATE TABLE table_name_4 (team VARCHAR, location_attendance VARCHAR) ### Question: Which Team has a Location Attendance of fedexforum 11,731? ### Answer: SELECT team FROM table_name_4 WHERE location_attendance = "fedexforum 11,731" |
Which Record has a Score of l 97–99 (ot)? | CREATE TABLE table_name_88 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_88 WHERE score = "l 97–99 (ot)" | ### Context: CREATE TABLE table_name_88 (record VARCHAR, score VARCHAR) ### Question: Which Record has a Score of l 97–99 (ot)? ### Answer: SELECT record FROM table_name_88 WHERE score = "l 97–99 (ot)" |
What is game 34's record? | CREATE TABLE table_name_11 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_11 WHERE game = 34 | ### Context: CREATE TABLE table_name_11 (record VARCHAR, game VARCHAR) ### Question: What is game 34's record? ### Answer: SELECT record FROM table_name_11 WHERE game = 34 |
What were the high assist on january 2? | CREATE TABLE table_name_61 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_name_61 WHERE date = "january 2" | ### Context: CREATE TABLE table_name_61 (high_assists VARCHAR, date VARCHAR) ### Question: What were the high assist on january 2? ### Answer: SELECT high_assists FROM table_name_61 WHERE date = "january 2" |
Who was the director that had a film titled "Floating Life"? | CREATE TABLE table_name_5 (director VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT director FROM table_name_5 WHERE film_title_used_in_nomination = "floating life" | ### Context: CREATE TABLE table_name_5 (director VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: Who was the director that had a film titled "Floating Life"? ### Answer: SELECT director FROM table_name_5 WHERE film_title_used_in_nomination = "floating life" |
Can you tell me the total number of Played that has the Position larger than 5, and the Points of 11, and the Drawn smaller than 1? | CREATE TABLE table_name_60 (played VARCHAR, drawn VARCHAR, position VARCHAR, points VARCHAR) | SELECT COUNT(played) FROM table_name_60 WHERE position > 5 AND points = 11 AND drawn < 1 | ### Context: CREATE TABLE table_name_60 (played VARCHAR, drawn VARCHAR, position VARCHAR, points VARCHAR) ### Question: Can you tell me the total number of Played that has the Position larger than 5, and the Points of 11, and the Drawn smaller than 1? ### Answer: SELECT COUNT(played) FROM table_name_60 WHERE position > 5 AND points = 11 AND drawn < 1 |
Can you tell me the highest Played that has the Points larger than 11, and the Lost larger than 7? | CREATE TABLE table_name_36 (played INTEGER, points VARCHAR, lost VARCHAR) | SELECT MAX(played) FROM table_name_36 WHERE points > 11 AND lost > 7 | ### Context: CREATE TABLE table_name_36 (played INTEGER, points VARCHAR, lost VARCHAR) ### Question: Can you tell me the highest Played that has the Points larger than 11, and the Lost larger than 7? ### Answer: SELECT MAX(played) FROM table_name_36 WHERE points > 11 AND lost > 7 |
What was Dave Hill's score? | CREATE TABLE table_name_85 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_85 WHERE player = "dave hill" | ### Context: CREATE TABLE table_name_85 (score VARCHAR, player VARCHAR) ### Question: What was Dave Hill's score? ### Answer: SELECT score FROM table_name_85 WHERE player = "dave hill" |
What is the to par of Al Mengert of the United States? | CREATE TABLE table_name_73 (to_par VARCHAR, country VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_73 WHERE country = "united states" AND player = "al mengert" | ### Context: CREATE TABLE table_name_73 (to_par VARCHAR, country VARCHAR, player VARCHAR) ### Question: What is the to par of Al Mengert of the United States? ### Answer: SELECT to_par FROM table_name_73 WHERE country = "united states" AND player = "al mengert" |
What is the score of T5 place in the United States? | CREATE TABLE table_name_67 (score VARCHAR, country VARCHAR, place VARCHAR) | SELECT score FROM table_name_67 WHERE country = "united states" AND place = "t5" | ### Context: CREATE TABLE table_name_67 (score VARCHAR, country VARCHAR, place VARCHAR) ### Question: What is the score of T5 place in the United States? ### Answer: SELECT score FROM table_name_67 WHERE country = "united states" AND place = "t5" |
Who was the player from the United States in T10 place with a score of 67-77=144? | CREATE TABLE table_name_1 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR) | SELECT player FROM table_name_1 WHERE country = "united states" AND place = "t10" AND score = 67 - 77 = 144 | ### Context: CREATE TABLE table_name_1 (player VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR) ### Question: Who was the player from the United States in T10 place with a score of 67-77=144? ### Answer: SELECT player FROM table_name_1 WHERE country = "united states" AND place = "t10" AND score = 67 - 77 = 144 |
What was Billy Casper's to par? | CREATE TABLE table_name_51 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_51 WHERE player = "billy casper" | ### Context: CREATE TABLE table_name_51 (to_par VARCHAR, player VARCHAR) ### Question: What was Billy Casper's to par? ### Answer: SELECT to_par FROM table_name_51 WHERE player = "billy casper" |
What is the sum of Wins, when Played is less than 5? | CREATE TABLE table_name_42 (wins INTEGER, played INTEGER) | SELECT SUM(wins) FROM table_name_42 WHERE played < 5 | ### Context: CREATE TABLE table_name_42 (wins INTEGER, played INTEGER) ### Question: What is the sum of Wins, when Played is less than 5? ### Answer: SELECT SUM(wins) FROM table_name_42 WHERE played < 5 |
What is the highest Wins, when Rank is greater than 2, and when Played is less than 5? | CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, played VARCHAR) | SELECT MAX(wins) FROM table_name_75 WHERE rank > 2 AND played < 5 | ### Context: CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, played VARCHAR) ### Question: What is the highest Wins, when Rank is greater than 2, and when Played is less than 5? ### Answer: SELECT MAX(wins) FROM table_name_75 WHERE rank > 2 AND played < 5 |
What is the sum of Wins, when Team is Sweden, and when Played is less than 5? | CREATE TABLE table_name_79 (wins INTEGER, team VARCHAR, played VARCHAR) | SELECT SUM(wins) FROM table_name_79 WHERE team = "sweden" AND played < 5 | ### Context: CREATE TABLE table_name_79 (wins INTEGER, team VARCHAR, played VARCHAR) ### Question: What is the sum of Wins, when Team is Sweden, and when Played is less than 5? ### Answer: SELECT SUM(wins) FROM table_name_79 WHERE team = "sweden" AND played < 5 |
What is the highest Points, when Played is greater than 5? | CREATE TABLE table_name_30 (points INTEGER, played INTEGER) | SELECT MAX(points) FROM table_name_30 WHERE played > 5 | ### Context: CREATE TABLE table_name_30 (points INTEGER, played INTEGER) ### Question: What is the highest Points, when Played is greater than 5? ### Answer: SELECT MAX(points) FROM table_name_30 WHERE played > 5 |
What is the average Ties, when Played is greater than 5? | CREATE TABLE table_name_68 (ties INTEGER, played INTEGER) | SELECT AVG(ties) FROM table_name_68 WHERE played > 5 | ### Context: CREATE TABLE table_name_68 (ties INTEGER, played INTEGER) ### Question: What is the average Ties, when Played is greater than 5? ### Answer: SELECT AVG(ties) FROM table_name_68 WHERE played > 5 |
What is Date, when Runner(s)-Up is Oliver Wilson? | CREATE TABLE table_name_71 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_71 WHERE runner_s__up = "oliver wilson" | ### Context: CREATE TABLE table_name_71 (date VARCHAR, runner_s__up VARCHAR) ### Question: What is Date, when Runner(s)-Up is Oliver Wilson? ### Answer: SELECT date FROM table_name_71 WHERE runner_s__up = "oliver wilson" |
What is Date, when Margin Of Victory is 4 Strokes? | CREATE TABLE table_name_1 (date VARCHAR, margin_of_victory VARCHAR) | SELECT date FROM table_name_1 WHERE margin_of_victory = "4 strokes" | ### Context: CREATE TABLE table_name_1 (date VARCHAR, margin_of_victory VARCHAR) ### Question: What is Date, when Margin Of Victory is 4 Strokes? ### Answer: SELECT date FROM table_name_1 WHERE margin_of_victory = "4 strokes" |
What is Runner(s)-up, when Date is 21 Jan 2007? | CREATE TABLE table_name_47 (runner_s__up VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_47 WHERE date = "21 jan 2007" | ### Context: CREATE TABLE table_name_47 (runner_s__up VARCHAR, date VARCHAR) ### Question: What is Runner(s)-up, when Date is 21 Jan 2007? ### Answer: SELECT runner_s__up FROM table_name_47 WHERE date = "21 jan 2007" |
What is Tournament, when Margin Of Victory is 1 Stroke, and when Date is 18 Jan 2009? | CREATE TABLE table_name_5 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND date = "18 jan 2009" | ### Context: CREATE TABLE table_name_5 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR) ### Question: What is Tournament, when Margin Of Victory is 1 Stroke, and when Date is 18 Jan 2009? ### Answer: SELECT tournament FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND date = "18 jan 2009" |
what is the U.S. senate when the year is after 2002 and the party is working families? | CREATE TABLE table_name_80 (us_senate VARCHAR, year VARCHAR, party VARCHAR) | SELECT us_senate FROM table_name_80 WHERE year > 2002 AND party = "working families" | ### Context: CREATE TABLE table_name_80 (us_senate VARCHAR, year VARCHAR, party VARCHAR) ### Question: what is the U.S. senate when the year is after 2002 and the party is working families? ### Answer: SELECT us_senate FROM table_name_80 WHERE year > 2002 AND party = "working families" |
How many times what the comptroller alan hevesi and the party working families? | CREATE TABLE table_name_78 (year VARCHAR, comptroller VARCHAR, party VARCHAR) | SELECT COUNT(year) FROM table_name_78 WHERE comptroller = "alan hevesi" AND party = "working families" | ### Context: CREATE TABLE table_name_78 (year VARCHAR, comptroller VARCHAR, party VARCHAR) ### Question: How many times what the comptroller alan hevesi and the party working families? ### Answer: SELECT COUNT(year) FROM table_name_78 WHERE comptroller = "alan hevesi" AND party = "working families" |
What is the highest number of points of the game in Conseco fieldhouse 7,134? | CREATE TABLE table_name_79 (high_points VARCHAR, location_attendance VARCHAR) | SELECT high_points FROM table_name_79 WHERE location_attendance = "conseco fieldhouse 7,134" | ### Context: CREATE TABLE table_name_79 (high_points VARCHAR, location_attendance VARCHAR) ### Question: What is the highest number of points of the game in Conseco fieldhouse 7,134? ### Answer: SELECT high_points FROM table_name_79 WHERE location_attendance = "conseco fieldhouse 7,134" |
What is the highest number of rebounds of the game with a 6-14 record? | CREATE TABLE table_name_53 (high_rebounds VARCHAR, record VARCHAR) | SELECT high_rebounds FROM table_name_53 WHERE record = "6-14" | ### Context: CREATE TABLE table_name_53 (high_rebounds VARCHAR, record VARCHAR) ### Question: What is the highest number of rebounds of the game with a 6-14 record? ### Answer: SELECT high_rebounds FROM table_name_53 WHERE record = "6-14" |
Can you tell me the Record that has the Visitor of pittsburgh, and the Points smaller than 27, and the Home of boston? | CREATE TABLE table_name_21 (record VARCHAR, home VARCHAR, visitor VARCHAR, points VARCHAR) | SELECT record FROM table_name_21 WHERE visitor = "pittsburgh" AND points < 27 AND home = "boston" | ### Context: CREATE TABLE table_name_21 (record VARCHAR, home VARCHAR, visitor VARCHAR, points VARCHAR) ### Question: Can you tell me the Record that has the Visitor of pittsburgh, and the Points smaller than 27, and the Home of boston? ### Answer: SELECT record FROM table_name_21 WHERE visitor = "pittsburgh" AND points < 27 AND home = "boston" |
Can you tell me the average Points that has the Attendance of 3,806? | CREATE TABLE table_name_42 (points INTEGER, attendance VARCHAR) | SELECT AVG(points) FROM table_name_42 WHERE attendance = 3 OFFSET 806 | ### Context: CREATE TABLE table_name_42 (points INTEGER, attendance VARCHAR) ### Question: Can you tell me the average Points that has the Attendance of 3,806? ### Answer: SELECT AVG(points) FROM table_name_42 WHERE attendance = 3 OFFSET 806 |
Which opponent had 38,642 attendance? | CREATE TABLE table_name_69 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_69 WHERE attendance = "38,642" | ### Context: CREATE TABLE table_name_69 (opponent VARCHAR, attendance VARCHAR) ### Question: Which opponent had 38,642 attendance? ### Answer: SELECT opponent FROM table_name_69 WHERE attendance = "38,642" |
What date had 51,265 attendance? | CREATE TABLE table_name_84 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_84 WHERE attendance = "51,265" | ### Context: CREATE TABLE table_name_84 (date VARCHAR, attendance VARCHAR) ### Question: What date had 51,265 attendance? ### Answer: SELECT date FROM table_name_84 WHERE attendance = "51,265" |
When 7th place, what is the date? | CREATE TABLE table_name_45 (date VARCHAR, place VARCHAR) | SELECT date FROM table_name_45 WHERE place = "7th" | ### Context: CREATE TABLE table_name_45 (date VARCHAR, place VARCHAR) ### Question: When 7th place, what is the date? ### Answer: SELECT date FROM table_name_45 WHERE place = "7th" |
What is the score of game 34? | CREATE TABLE table_name_3 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_3 WHERE game = 34 | ### Context: CREATE TABLE table_name_3 (score VARCHAR, game VARCHAR) ### Question: What is the score of game 34? ### Answer: SELECT score FROM table_name_3 WHERE game = 34 |
What is the record of game 33? | CREATE TABLE table_name_97 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_97 WHERE game = 33 | ### Context: CREATE TABLE table_name_97 (record VARCHAR, game VARCHAR) ### Question: What is the record of game 33? ### Answer: SELECT record FROM table_name_97 WHERE game = 33 |
What is the Country, when Place is "T4", and when Player is "Scott Simpson"? | CREATE TABLE table_name_64 (country VARCHAR, place VARCHAR, player VARCHAR) | SELECT country FROM table_name_64 WHERE place = "t4" AND player = "scott simpson" | ### Context: CREATE TABLE table_name_64 (country VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is the Country, when Place is "T4", and when Player is "Scott Simpson"? ### Answer: SELECT country FROM table_name_64 WHERE place = "t4" AND player = "scott simpson" |
What is To Par, when Score is 70, and when Player is "Craig Stadler"? | CREATE TABLE table_name_98 (to_par VARCHAR, score VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_98 WHERE score = 70 AND player = "craig stadler" | ### Context: CREATE TABLE table_name_98 (to_par VARCHAR, score VARCHAR, player VARCHAR) ### Question: What is To Par, when Score is 70, and when Player is "Craig Stadler"? ### Answer: SELECT to_par FROM table_name_98 WHERE score = 70 AND player = "craig stadler" |
What is Player, when Score is less than 69, and when Country is "United States"? | CREATE TABLE table_name_70 (player VARCHAR, score VARCHAR, country VARCHAR) | SELECT player FROM table_name_70 WHERE score < 69 AND country = "united states" | ### Context: CREATE TABLE table_name_70 (player VARCHAR, score VARCHAR, country VARCHAR) ### Question: What is Player, when Score is less than 69, and when Country is "United States"? ### Answer: SELECT player FROM table_name_70 WHERE score < 69 AND country = "united states" |
Who was the writer that the director was Alice Troughton and the producer was Phil Collinson? | CREATE TABLE table_name_89 (writer VARCHAR, producer VARCHAR, director VARCHAR) | SELECT writer FROM table_name_89 WHERE producer = "phil collinson" AND director = "alice troughton" | ### Context: CREATE TABLE table_name_89 (writer VARCHAR, producer VARCHAR, director VARCHAR) ### Question: Who was the writer that the director was Alice Troughton and the producer was Phil Collinson? ### Answer: SELECT writer FROM table_name_89 WHERE producer = "phil collinson" AND director = "alice troughton" |
What is the location and attendance after game 2, and the team New Orleans? | CREATE TABLE table_name_99 (location_attendance VARCHAR, game VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_name_99 WHERE game > 2 AND team = "new orleans" | ### Context: CREATE TABLE table_name_99 (location_attendance VARCHAR, game VARCHAR, team VARCHAR) ### Question: What is the location and attendance after game 2, and the team New Orleans? ### Answer: SELECT location_attendance FROM table_name_99 WHERE game > 2 AND team = "new orleans" |
What is Teleplay, when Season is greater than 1.1, and when First Broadcast is "February 20, 1981"? | CREATE TABLE table_name_37 (teleplay VARCHAR, season VARCHAR, first_broadcast VARCHAR) | SELECT teleplay FROM table_name_37 WHERE season > 1.1 AND first_broadcast = "february 20, 1981" | ### Context: CREATE TABLE table_name_37 (teleplay VARCHAR, season VARCHAR, first_broadcast VARCHAR) ### Question: What is Teleplay, when Season is greater than 1.1, and when First Broadcast is "February 20, 1981"? ### Answer: SELECT teleplay FROM table_name_37 WHERE season > 1.1 AND first_broadcast = "february 20, 1981" |
What is Title, when Season is less than 1.8, and when First Broadcast is March 6, 1981? | CREATE TABLE table_name_2 (title VARCHAR, season VARCHAR, first_broadcast VARCHAR) | SELECT title FROM table_name_2 WHERE season < 1.8 AND first_broadcast = "march 6, 1981" | ### Context: CREATE TABLE table_name_2 (title VARCHAR, season VARCHAR, first_broadcast VARCHAR) ### Question: What is Title, when Season is less than 1.8, and when First Broadcast is March 6, 1981? ### Answer: SELECT title FROM table_name_2 WHERE season < 1.8 AND first_broadcast = "march 6, 1981" |
What is Director, when Season is 1.4? | CREATE TABLE table_name_11 (director VARCHAR, season VARCHAR) | SELECT director FROM table_name_11 WHERE season = 1.4 | ### Context: CREATE TABLE table_name_11 (director VARCHAR, season VARCHAR) ### Question: What is Director, when Season is 1.4? ### Answer: SELECT director FROM table_name_11 WHERE season = 1.4 |
What is Teleplay, when Director is "George McCowan", when Season is less than 1.1400000000000001, and when First Broadcast is April 3, 1981? | CREATE TABLE table_name_24 (teleplay VARCHAR, first_broadcast VARCHAR, director VARCHAR, season VARCHAR) | SELECT teleplay FROM table_name_24 WHERE director = "george mccowan" AND season < 1.1400000000000001 AND first_broadcast = "april 3, 1981" | ### Context: CREATE TABLE table_name_24 (teleplay VARCHAR, first_broadcast VARCHAR, director VARCHAR, season VARCHAR) ### Question: What is Teleplay, when Director is "George McCowan", when Season is less than 1.1400000000000001, and when First Broadcast is April 3, 1981? ### Answer: SELECT teleplay FROM table_name_24 WHERE director = "george mccowan" AND season < 1.1400000000000001 AND first_broadcast = "april 3, 1981" |
What is the average Season, when First Broadcast is January 23, 1981? | CREATE TABLE table_name_14 (season INTEGER, first_broadcast VARCHAR) | SELECT AVG(season) FROM table_name_14 WHERE first_broadcast = "january 23, 1981" | ### Context: CREATE TABLE table_name_14 (season INTEGER, first_broadcast VARCHAR) ### Question: What is the average Season, when First Broadcast is January 23, 1981? ### Answer: SELECT AVG(season) FROM table_name_14 WHERE first_broadcast = "january 23, 1981" |
What is Teleplay, when First Broadcast is April 10, 1981? | CREATE TABLE table_name_57 (teleplay VARCHAR, first_broadcast VARCHAR) | SELECT teleplay FROM table_name_57 WHERE first_broadcast = "april 10, 1981" | ### Context: CREATE TABLE table_name_57 (teleplay VARCHAR, first_broadcast VARCHAR) ### Question: What is Teleplay, when First Broadcast is April 10, 1981? ### Answer: SELECT teleplay FROM table_name_57 WHERE first_broadcast = "april 10, 1981" |
What the H/A when the opponent is the Bohemians? | CREATE TABLE table_name_25 (h___a VARCHAR, opponents VARCHAR) | SELECT h___a FROM table_name_25 WHERE opponents = "bohemians" | ### Context: CREATE TABLE table_name_25 (h___a VARCHAR, opponents VARCHAR) ### Question: What the H/A when the opponent is the Bohemians? ### Answer: SELECT h___a FROM table_name_25 WHERE opponents = "bohemians" |
What is the attendance when Cork City is the opponent? | CREATE TABLE table_name_7 (attendance INTEGER, opponents VARCHAR) | SELECT AVG(attendance) FROM table_name_7 WHERE opponents = "cork city" | ### Context: CREATE TABLE table_name_7 (attendance INTEGER, opponents VARCHAR) ### Question: What is the attendance when Cork City is the opponent? ### Answer: SELECT AVG(attendance) FROM table_name_7 WHERE opponents = "cork city" |
What is the H/A when Cork City is the opponent? | CREATE TABLE table_name_53 (h___a VARCHAR, opponents VARCHAR) | SELECT h___a FROM table_name_53 WHERE opponents = "cork city" | ### Context: CREATE TABLE table_name_53 (h___a VARCHAR, opponents VARCHAR) ### Question: What is the H/A when Cork City is the opponent? ### Answer: SELECT h___a FROM table_name_53 WHERE opponents = "cork city" |
What is the H/A on 5 August 1990? | CREATE TABLE table_name_46 (h___a VARCHAR, date VARCHAR) | SELECT h___a FROM table_name_46 WHERE date = "5 august 1990" | ### Context: CREATE TABLE table_name_46 (h___a VARCHAR, date VARCHAR) ### Question: What is the H/A on 5 August 1990? ### Answer: SELECT h___a FROM table_name_46 WHERE date = "5 august 1990" |
What is the result F-A on 5 August 1990? | CREATE TABLE table_name_70 (result_f___a VARCHAR, date VARCHAR) | SELECT result_f___a FROM table_name_70 WHERE date = "5 august 1990" | ### Context: CREATE TABLE table_name_70 (result_f___a VARCHAR, date VARCHAR) ### Question: What is the result F-A on 5 August 1990? ### Answer: SELECT result_f___a FROM table_name_70 WHERE date = "5 august 1990" |
What is the value for internal floppy disk with s-100 slots greater than 8 introduced earlier than 1978? | CREATE TABLE table_name_19 (internal_floppy_disk VARCHAR, s_100_slots VARCHAR, year_introduced VARCHAR) | SELECT internal_floppy_disk FROM table_name_19 WHERE s_100_slots > 8 AND year_introduced < 1978 | ### Context: CREATE TABLE table_name_19 (internal_floppy_disk VARCHAR, s_100_slots VARCHAR, year_introduced VARCHAR) ### Question: What is the value for internal floppy disk with s-100 slots greater than 8 introduced earlier than 1978? ### Answer: SELECT internal_floppy_disk FROM table_name_19 WHERE s_100_slots > 8 AND year_introduced < 1978 |
Which system introduced earlier than 1981 has an internal hard disk of 11 megabytes and less than 21 s-100 slots? | CREATE TABLE table_name_47 (system VARCHAR, internal_hard_disk VARCHAR, s_100_slots VARCHAR, year_introduced VARCHAR) | SELECT system FROM table_name_47 WHERE s_100_slots < 21 AND year_introduced < 1981 AND internal_hard_disk = "11 megabytes" | ### Context: CREATE TABLE table_name_47 (system VARCHAR, internal_hard_disk VARCHAR, s_100_slots VARCHAR, year_introduced VARCHAR) ### Question: Which system introduced earlier than 1981 has an internal hard disk of 11 megabytes and less than 21 s-100 slots? ### Answer: SELECT system FROM table_name_47 WHERE s_100_slots < 21 AND year_introduced < 1981 AND internal_hard_disk = "11 megabytes" |
What college did Marcus Wilson attend? | CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR) | SELECT college FROM table_name_45 WHERE player = "marcus wilson" | ### Context: CREATE TABLE table_name_45 (college VARCHAR, player VARCHAR) ### Question: What college did Marcus Wilson attend? ### Answer: SELECT college FROM table_name_45 WHERE player = "marcus wilson" |
Who is the player that attended Notre Dame with a pick smaller than 304? | CREATE TABLE table_name_76 (player VARCHAR, pick__number VARCHAR, college VARCHAR) | SELECT player FROM table_name_76 WHERE pick__number < 304 AND college = "notre dame" | ### Context: CREATE TABLE table_name_76 (player VARCHAR, pick__number VARCHAR, college VARCHAR) ### Question: Who is the player that attended Notre Dame with a pick smaller than 304? ### Answer: SELECT player FROM table_name_76 WHERE pick__number < 304 AND college = "notre dame" |
What college did Leon Perry attend? | CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR) | SELECT college FROM table_name_93 WHERE player = "leon perry" | ### Context: CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR) ### Question: What college did Leon Perry attend? ### Answer: SELECT college FROM table_name_93 WHERE player = "leon perry" |
What NFL team did the Tight End position belong to? | CREATE TABLE table_name_62 (nfl_team VARCHAR, position VARCHAR) | SELECT nfl_team FROM table_name_62 WHERE position = "tight end" | ### Context: CREATE TABLE table_name_62 (nfl_team VARCHAR, position VARCHAR) ### Question: What NFL team did the Tight End position belong to? ### Answer: SELECT nfl_team FROM table_name_62 WHERE position = "tight end" |
What is the total number of weeks that the buffalo bills played against the San Diego Chargers? | CREATE TABLE table_name_49 (week INTEGER, opponent VARCHAR) | SELECT SUM(week) FROM table_name_49 WHERE opponent = "san diego chargers" | ### Context: CREATE TABLE table_name_49 (week INTEGER, opponent VARCHAR) ### Question: What is the total number of weeks that the buffalo bills played against the San Diego Chargers? ### Answer: SELECT SUM(week) FROM table_name_49 WHERE opponent = "san diego chargers" |
What is the attendance of the game that had a date listed as Bye? | CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_76 WHERE date = "bye" | ### Context: CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR) ### Question: What is the attendance of the game that had a date listed as Bye? ### Answer: SELECT attendance FROM table_name_76 WHERE date = "bye" |
How many weeks were there games with 41,384 fans in attendance? | CREATE TABLE table_name_48 (week INTEGER, attendance VARCHAR) | SELECT SUM(week) FROM table_name_48 WHERE attendance = "41,384" | ### Context: CREATE TABLE table_name_48 (week INTEGER, attendance VARCHAR) ### Question: How many weeks were there games with 41,384 fans in attendance? ### Answer: SELECT SUM(week) FROM table_name_48 WHERE attendance = "41,384" |
What is the lowest week number that had a game on December 3, 1967? | CREATE TABLE table_name_97 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_97 WHERE date = "december 3, 1967" | ### Context: CREATE TABLE table_name_97 (week INTEGER, date VARCHAR) ### Question: What is the lowest week number that had a game on December 3, 1967? ### Answer: SELECT MIN(week) FROM table_name_97 WHERE date = "december 3, 1967" |
What was the result of the game that had 20,627 fans in attendance? | CREATE TABLE table_name_79 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_79 WHERE attendance = "20,627" | ### Context: CREATE TABLE table_name_79 (result VARCHAR, attendance VARCHAR) ### Question: What was the result of the game that had 20,627 fans in attendance? ### Answer: SELECT result FROM table_name_79 WHERE attendance = "20,627" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.