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