Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
58,100 | <question>: What is the airport when the iata is tbj? <context>: CREATE TABLE table_name_77 (airport VARCHAR, iata VARCHAR) <answer>: SELECT airport FROM table_name_77 WHERE iata = "tbj" |
58,101 | <question>: what is the iata for malta international airport? <context>: CREATE TABLE table_name_89 (iata VARCHAR, airport VARCHAR) <answer>: SELECT iata FROM table_name_89 WHERE airport = "malta international airport" |
58,102 | <question>: what is the airport for the country tunisia with the icao dtaa? <context>: CREATE TABLE table_name_68 (airport VARCHAR, country VARCHAR, icao VARCHAR) <answer>: SELECT airport FROM table_name_68 WHERE country = "tunisia" AND icao = "dtaa" |
58,103 | <question>: what is the city when the country is libya and the iata is ben? <context>: CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, iata VARCHAR) <answer>: SELECT city FROM table_name_57 WHERE country = "libya" AND iata = "ben" |
58,104 | <question>: what is the country when the city is gafsa? <context>: CREATE TABLE table_name_1 (country VARCHAR, city VARCHAR) <answer>: SELECT country FROM table_name_1 WHERE city = "gafsa" |
58,105 | <question>: what is the iata when the city is tripoli? <context>: CREATE TABLE table_name_71 (iata VARCHAR, city VARCHAR) <answer>: SELECT iata FROM table_name_71 WHERE city = "tripoli" |
58,106 | <question>: Who is the 2nd round opponent when Team 2 is Red Star (D1)? <context>: CREATE TABLE table_name_91 (team_2 VARCHAR) <answer>: SELECT 2 AS nd_round FROM table_name_91 WHERE team_2 = "red star (d1)" |
58,107 | <question>: When Team 2 was USL Dunkerque (D2), what was the score <context>: CREATE TABLE table_name_75 (score VARCHAR, team_2 VARCHAR) <answer>: SELECT score FROM table_name_75 WHERE team_2 = "usl dunkerque (d2)" |
58,108 | <question>: What was the team 1 when Red Star (D1) was team 2? <context>: CREATE TABLE table_name_60 (team_1 VARCHAR, team_2 VARCHAR) <answer>: SELECT team_1 FROM table_name_60 WHERE team_2 = "red star (d1)" |
58,109 | <question>: Which team has home game with tie of 4? <context>: CREATE TABLE table_name_88 (home_team VARCHAR, tie_no VARCHAR) <answer>: SELECT home_team FROM table_name_88 WHERE tie_no = "4" |
58,110 | <question>: what is score of a team with tie of 4? <context>: CREATE TABLE table_name_38 (score VARCHAR, tie_no VARCHAR) <answer>: SELECT score FROM table_name_38 WHERE tie_no = "4" |
58,111 | <question>: What is the score of the game with 39,592 attendance? <context>: CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR) <answer>: SELECT score FROM table_name_19 WHERE attendance = "39,592" |
58,112 | <question>: How many attended the game when the score was tie at 4? <context>: CREATE TABLE table_name_65 (attendance VARCHAR, tie_no VARCHAR) <answer>: SELECT attendance FROM table_name_65 WHERE tie_no = "4" |
58,113 | <question>: Which player was defensive back after round 3? <context>: CREATE TABLE table_name_87 (player VARCHAR, position VARCHAR, round VARCHAR) <answer>: SELECT player FROM table_name_87 WHERE position = "defensive back" AND round > 3 |
58,114 | <question>: What was the pick for Bill Gramatica after round 2? <context>: CREATE TABLE table_name_53 (pick VARCHAR, round VARCHAR, player VARCHAR) <answer>: SELECT pick FROM table_name_53 WHERE round > 2 AND player = "bill gramatica" |
58,115 | <question>: What was the record on june 29? <context>: CREATE TABLE table_name_25 (record VARCHAR, date VARCHAR) <answer>: SELECT record FROM table_name_25 WHERE date = "june 29" |
58,116 | <question>: What were the high points on june 20? <context>: CREATE TABLE table_name_36 (high_points VARCHAR, date VARCHAR) <answer>: SELECT high_points FROM table_name_36 WHERE date = "june 20" |
58,117 | <question>: Which Record has a Location/Attendance of palace of auburn hills 8,108? <context>: CREATE TABLE table_name_22 (record VARCHAR, location_attendance VARCHAR) <answer>: SELECT record FROM table_name_22 WHERE location_attendance = "palace of auburn hills 8,108" |
58,118 | <question>: Which Game is the lowest one that has a Record of 11-4? <context>: CREATE TABLE table_name_30 (game INTEGER, record VARCHAR) <answer>: SELECT MIN(game) FROM table_name_30 WHERE record = "11-4" |
58,119 | <question>: Which Date has a Location/Attendance of verizon center 7,587? <context>: CREATE TABLE table_name_66 (date VARCHAR, location_attendance VARCHAR) <answer>: SELECT date FROM table_name_66 WHERE location_attendance = "verizon center 7,587" |
58,120 | <question>: Which High rebounds has a High points of douglas (23)? <context>: CREATE TABLE table_name_23 (high_rebounds VARCHAR, high_points VARCHAR) <answer>: SELECT high_rebounds FROM table_name_23 WHERE high_points = "douglas (23)" |
58,121 | <question>: Which Score has an Opponent of seattle? <context>: CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR) <answer>: SELECT score FROM table_name_62 WHERE opponent = "seattle" |
58,122 | <question>: Which Record has a High points of hoffman (16)? <context>: CREATE TABLE table_name_58 (record VARCHAR, high_points VARCHAR) <answer>: SELECT record FROM table_name_58 WHERE high_points = "hoffman (16)" |
58,123 | <question>: Which round has a record of 5-3 (1)? <context>: CREATE TABLE table_name_51 (round INTEGER, record VARCHAR) <answer>: SELECT MIN(round) FROM table_name_51 WHERE record = "5-3 (1)" |
58,124 | <question>: Who were the Djurgarden scorers when the venue was Idrottsparken? <context>: CREATE TABLE table_name_21 (djurgården_scorers VARCHAR, venue VARCHAR) <answer>: SELECT djurgården_scorers FROM table_name_21 WHERE venue = "idrottsparken" |
58,125 | <question>: what is the series when the team is gunbroker racing? <context>: CREATE TABLE table_name_95 (series VARCHAR, team VARCHAR) <answer>: SELECT series FROM table_name_95 WHERE team = "gunbroker racing" |
58,126 | <question>: what is the team when the make is dodge and the year is after 2008? <context>: CREATE TABLE table_name_18 (team VARCHAR, make VARCHAR, year VARCHAR) <answer>: SELECT team FROM table_name_18 WHERE make = "dodge" AND year > 2008 |
58,127 | <question>: what is the make for the year 2008? <context>: CREATE TABLE table_name_88 (make VARCHAR, year VARCHAR) <answer>: SELECT make FROM table_name_88 WHERE year = 2008 |
58,128 | <question>: what is the year when the driver was kevin lepage? <context>: CREATE TABLE table_name_87 (year INTEGER, driver VARCHAR) <answer>: SELECT SUM(year) FROM table_name_87 WHERE driver = "kevin lepage" |
58,129 | <question>: what is the team when the schedule is limited, year is earlier than 2007 and the driver is jason white? <context>: CREATE TABLE table_name_54 (team VARCHAR, driver VARCHAR, schedule VARCHAR, year VARCHAR) <answer>: SELECT team FROM table_name_54 WHERE schedule = "limited" AND year < 2007 AND driver = "jason white" |
58,130 | <question>: Which rank is the lowest with 37 games and more than 613 points? <context>: CREATE TABLE table_name_44 (rank INTEGER, games VARCHAR, points VARCHAR) <answer>: SELECT MIN(rank) FROM table_name_44 WHERE games = 37 AND points > 613 |
58,131 | <question>: What is Grupo Capitol Valladolid's highest rank with more than 34 games? <context>: CREATE TABLE table_name_99 (rank INTEGER, team VARCHAR, games VARCHAR) <answer>: SELECT MAX(rank) FROM table_name_99 WHERE team = "grupo capitol valladolid" AND games > 34 |
58,132 | <question>: How many points are there for rank 5 with more than 34 games? <context>: CREATE TABLE table_name_80 (points VARCHAR, rank VARCHAR, games VARCHAR) <answer>: SELECT COUNT(points) FROM table_name_80 WHERE rank = 5 AND games > 34 |
58,133 | <question>: Where is the kap shui mun bridge? <context>: CREATE TABLE table_name_35 (location VARCHAR, name VARCHAR) <answer>: SELECT location FROM table_name_35 WHERE name = "kap shui mun bridge" |
58,134 | <question>: What tournament shows 2013 as 2r, and a 2010 as 1r? <context>: CREATE TABLE table_name_32 (tournament VARCHAR) <answer>: SELECT tournament FROM table_name_32 WHERE 2013 = "2r" AND 2010 = "1r" |
58,135 | <question>: What shows for 2013 when the 2008 is 1r? <context>: CREATE TABLE table_name_77 (Id VARCHAR) <answer>: SELECT 2013 FROM table_name_77 WHERE 2008 = "1r" |
58,136 | <question>: What shows for 2011 when 2012 is q1, and a 2010 is 4r? <context>: CREATE TABLE table_name_49 (Id VARCHAR) <answer>: SELECT 2011 FROM table_name_49 WHERE 2012 = "q1" AND 2010 = "4r" |
58,137 | <question>: What tournament has a 2010 of 1r, and a 2008 of 1r? <context>: CREATE TABLE table_name_4 (tournament VARCHAR) <answer>: SELECT tournament FROM table_name_4 WHERE 2010 = "1r" AND 2008 = "1r" |
58,138 | <question>: What shows for 2011 at the French open? <context>: CREATE TABLE table_name_82 (tournament VARCHAR) <answer>: SELECT 2011 FROM table_name_82 WHERE tournament = "french open" |
58,139 | <question>: What shows for 2013 when 2012 is 2r? <context>: CREATE TABLE table_name_16 (Id VARCHAR) <answer>: SELECT 2013 FROM table_name_16 WHERE 2012 = "2r" |
58,140 | <question>: How many South Asians were there in 2011 in Quebec when there were fewer than 59,510 in 2001? <context>: CREATE TABLE table_name_19 (south_asians_2011 VARCHAR, province VARCHAR, south_asians_2001 VARCHAR) <answer>: SELECT COUNT(south_asians_2011) FROM table_name_19 WHERE province = "quebec" AND south_asians_2001 < 59 OFFSET 510 |
58,141 | <question>: Which province had fewer than 190 South Asians in 2001 and 115 South Asians in 2011? <context>: CREATE TABLE table_name_56 (province VARCHAR, south_asians_2001 VARCHAR, south_asians_2011 VARCHAR) <answer>: SELECT province FROM table_name_56 WHERE south_asians_2001 < 190 AND south_asians_2011 = 115 |
58,142 | <question>: How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055? <context>: CREATE TABLE table_name_86 (south_asians_2001 INTEGER, province VARCHAR, south_asians_2011 VARCHAR) <answer>: SELECT AVG(south_asians_2001) FROM table_name_86 WHERE province = "alberta" AND south_asians_2011 > 159 OFFSET 055 |
58,143 | <question>: What is Result, when Extra is "Heptathlon", and when Venue is "Götzis , Austria"? <context>: CREATE TABLE table_name_62 (result VARCHAR, extra VARCHAR, venue VARCHAR) <answer>: SELECT result FROM table_name_62 WHERE extra = "heptathlon" AND venue = "götzis , austria" |
58,144 | <question>: What is the total number of Year(s), when Tournament is "World Championships"? <context>: CREATE TABLE table_name_50 (year VARCHAR, tournament VARCHAR) <answer>: SELECT COUNT(year) FROM table_name_50 WHERE tournament = "world championships" |
58,145 | <question>: What is Venue, when Year is 2005, and when Result is 8th? <context>: CREATE TABLE table_name_63 (venue VARCHAR, year VARCHAR, result VARCHAR) <answer>: SELECT venue FROM table_name_63 WHERE year = 2005 AND result = "8th" |
58,146 | <question>: What is Tournament, when Result is 18th? <context>: CREATE TABLE table_name_50 (tournament VARCHAR, result VARCHAR) <answer>: SELECT tournament FROM table_name_50 WHERE result = "18th" |
58,147 | <question>: What is Venue, when Year is after 2003, and when Tournament is "Hypo-Meeting"? <context>: CREATE TABLE table_name_89 (venue VARCHAR, year VARCHAR, tournament VARCHAR) <answer>: SELECT venue FROM table_name_89 WHERE year > 2003 AND tournament = "hypo-meeting" |
58,148 | <question>: When the score was 71-71-70-70=282 what was the To par recorded? <context>: CREATE TABLE table_name_94 (to_par VARCHAR, score VARCHAR) <answer>: SELECT to_par FROM table_name_94 WHERE score = 71 - 71 - 70 - 70 = 282 |
58,149 | <question>: What was the score for Tom Lehman? <context>: CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_68 WHERE player = "tom lehman" |
58,150 | <question>: What is the sum of November, when Game is greater than 23? <context>: CREATE TABLE table_name_40 (november INTEGER, game INTEGER) <answer>: SELECT SUM(november) FROM table_name_40 WHERE game > 23 |
58,151 | <question>: What is the sum of November, when Game is "17"? <context>: CREATE TABLE table_name_55 (november INTEGER, game VARCHAR) <answer>: SELECT SUM(november) FROM table_name_55 WHERE game = 17 |
58,152 | <question>: What is the highest Game, when Opponent is "Chicago Black Hawks", and when November is less than 16? <context>: CREATE TABLE table_name_44 (game INTEGER, opponent VARCHAR, november VARCHAR) <answer>: SELECT MAX(game) FROM table_name_44 WHERE opponent = "chicago black hawks" AND november < 16 |
58,153 | <question>: What player has a total of 297? <context>: CREATE TABLE table_name_87 (player VARCHAR, total VARCHAR) <answer>: SELECT player FROM table_name_87 WHERE total = 297 |
58,154 | <question>: Which country has a total less than 289 and finished t2? <context>: CREATE TABLE table_name_22 (country VARCHAR, total VARCHAR, finish VARCHAR) <answer>: SELECT country FROM table_name_22 WHERE total < 289 AND finish = "t2" |
58,155 | <question>: Which player finished t35? <context>: CREATE TABLE table_name_89 (player VARCHAR, finish VARCHAR) <answer>: SELECT player FROM table_name_89 WHERE finish = "t35" |
58,156 | <question>: What finish has a total of more than 289 and won in 1979? <context>: CREATE TABLE table_name_54 (finish VARCHAR, total VARCHAR, year_s__won VARCHAR) <answer>: SELECT finish FROM table_name_54 WHERE total > 289 AND year_s__won = "1979" |
58,157 | <question>: What is Name, when Moving To is "NEC Nijmegen"? <context>: CREATE TABLE table_name_30 (name VARCHAR, moving_to VARCHAR) <answer>: SELECT name FROM table_name_30 WHERE moving_to = "nec nijmegen" |
58,158 | <question>: What is Date From, when Moving To is "Birmingham City"? <context>: CREATE TABLE table_name_46 (date_from VARCHAR, moving_to VARCHAR) <answer>: SELECT date_from FROM table_name_46 WHERE moving_to = "birmingham city" |
58,159 | <question>: What is Pos., when Date To is "30 June 2009", and when Name is "Eddie Johnson"? <context>: CREATE TABLE table_name_18 (pos VARCHAR, date_to VARCHAR, name VARCHAR) <answer>: SELECT pos FROM table_name_18 WHERE date_to = "30 june 2009" AND name = "eddie johnson" |
58,160 | <question>: What is Pos., when Date From is "28 August 2008"? <context>: CREATE TABLE table_name_8 (pos VARCHAR, date_from VARCHAR) <answer>: SELECT pos FROM table_name_8 WHERE date_from = "28 august 2008" |
58,161 | <question>: What is Moving To, when Name is "Leon Andreasen"? <context>: CREATE TABLE table_name_18 (moving_to VARCHAR, name VARCHAR) <answer>: SELECT moving_to FROM table_name_18 WHERE name = "leon andreasen" |
58,162 | <question>: What is Date To, when Name is "Lee Cook"? <context>: CREATE TABLE table_name_47 (date_to VARCHAR, name VARCHAR) <answer>: SELECT date_to FROM table_name_47 WHERE name = "lee cook" |
58,163 | <question>: When was the oakachoy covered bridge listed? <context>: CREATE TABLE table_name_34 (listed VARCHAR, name VARCHAR) <answer>: SELECT listed FROM table_name_34 WHERE name = "oakachoy covered bridge" |
58,164 | <question>: In which county is the swann covered bridge located? <context>: CREATE TABLE table_name_4 (county VARCHAR, name VARCHAR) <answer>: SELECT county FROM table_name_4 WHERE name = "swann covered bridge" |
58,165 | <question>: Which bridge is located in Nectar, in Blount County? <context>: CREATE TABLE table_name_17 (name VARCHAR, county VARCHAR, location VARCHAR) <answer>: SELECT name FROM table_name_17 WHERE county = "blount" AND location = "nectar" |
58,166 | <question>: Which county built a bridge in 1934? <context>: CREATE TABLE table_name_59 (county VARCHAR, built VARCHAR) <answer>: SELECT county FROM table_name_59 WHERE built = "1934" |
58,167 | <question>: In which year did Blount County build a bridge in Cleveland that was listed on 1981-08-20? <context>: CREATE TABLE table_name_78 (built VARCHAR, location VARCHAR, county VARCHAR, listed VARCHAR) <answer>: SELECT built FROM table_name_78 WHERE county = "blount" AND listed = "1981-08-20" AND location = "cleveland" |
58,168 | <question>: What is the score with a time at 18:00 and a score for set 3 of 13–25? <context>: CREATE TABLE table_name_12 (score VARCHAR, time VARCHAR, set_3 VARCHAR) <answer>: SELECT score FROM table_name_12 WHERE time = "18:00" AND set_3 = "13–25" |
58,169 | <question>: What is the score for set 2 when the score of set 1 is 19–25? <context>: CREATE TABLE table_name_70 (set_2 VARCHAR, set_1 VARCHAR) <answer>: SELECT set_2 FROM table_name_70 WHERE set_1 = "19–25" |
58,170 | <question>: How much is the total with a time at 16:00 and score for set 3 of 18–25? <context>: CREATE TABLE table_name_41 (total VARCHAR, time VARCHAR, set_3 VARCHAR) <answer>: SELECT total FROM table_name_41 WHERE time = "16:00" AND set_3 = "18–25" |
58,171 | <question>: What is the score for set 2 when the time is 18:00 and the score of set 1 is 18–25? <context>: CREATE TABLE table_name_48 (set_2 VARCHAR, time VARCHAR, set_1 VARCHAR) <answer>: SELECT set_2 FROM table_name_48 WHERE time = "18:00" AND set_1 = "18–25" |
58,172 | <question>: What was the total with a score in set 3 of 13–25? <context>: CREATE TABLE table_name_55 (total VARCHAR, set_3 VARCHAR) <answer>: SELECT total FROM table_name_55 WHERE set_3 = "13–25" |
58,173 | <question>: What was the Champion of the Tournament with a Score of 79–75 OT? <context>: CREATE TABLE table_name_1 (champion__seed_ VARCHAR, score VARCHAR) <answer>: SELECT champion__seed_ FROM table_name_1 WHERE score = "79–75 ot" |
58,174 | <question>: What was the Champion of the Game with a Score of 65–56? <context>: CREATE TABLE table_name_78 (champion__seed_ VARCHAR, score VARCHAR) <answer>: SELECT champion__seed_ FROM table_name_78 WHERE score = "65–56" |
58,175 | <question>: Which Manufacturer has a Laps of 21, a Grid larger than 16, and a Rider of akira ryō? <context>: CREATE TABLE table_name_89 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) <answer>: SELECT manufacturer FROM table_name_89 WHERE laps = 21 AND grid > 16 AND rider = "akira ryō" |
58,176 | <question>: Which Time/Retired has a Rider of daijiro kato? <context>: CREATE TABLE table_name_43 (time_retired VARCHAR, rider VARCHAR) <answer>: SELECT time_retired FROM table_name_43 WHERE rider = "daijiro kato" |
58,177 | <question>: Which Manufacturer has a Rider of daijiro kato? <context>: CREATE TABLE table_name_49 (manufacturer VARCHAR, rider VARCHAR) <answer>: SELECT manufacturer FROM table_name_49 WHERE rider = "daijiro kato" |
58,178 | <question>: Which Time/Retired has a Manufacturer of yamaha, and a Rider of garry mccoy? <context>: CREATE TABLE table_name_88 (time_retired VARCHAR, manufacturer VARCHAR, rider VARCHAR) <answer>: SELECT time_retired FROM table_name_88 WHERE manufacturer = "yamaha" AND rider = "garry mccoy" |
58,179 | <question>: What is the name of the team with round less than 2, and the nationality is the United States? <context>: CREATE TABLE table_name_25 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR) <answer>: SELECT college_junior_club_team__league_ FROM table_name_25 WHERE round < 2 AND nationality = "united states" |
58,180 | <question>: What position does John Carlson play? <context>: CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR) <answer>: SELECT position FROM table_name_15 WHERE player = "john carlson" |
58,181 | <question>: Who had the highest rebounds on game 5? <context>: CREATE TABLE table_name_33 (high_rebounds VARCHAR, game VARCHAR) <answer>: SELECT high_rebounds FROM table_name_33 WHERE game = 5 |
58,182 | <question>: How many Overall went in a round larger than 7 with a pick less than 7? <context>: CREATE TABLE table_name_39 (overall VARCHAR, round VARCHAR, pick VARCHAR) <answer>: SELECT COUNT(overall) FROM table_name_39 WHERE round > 7 AND pick < 7 |
58,183 | <question>: What is the rank for the player with events greater than 23 and prize money in excess of $823,783? <context>: CREATE TABLE table_name_33 (rank VARCHAR, events VARCHAR, prize_money__$__ VARCHAR) <answer>: SELECT COUNT(rank) FROM table_name_33 WHERE events > 23 AND prize_money__$__ > 823 OFFSET 783 |
58,184 | <question>: What is the prize money for the player ranked 1? <context>: CREATE TABLE table_name_16 (prize_money__ INTEGER, rank VARCHAR) <answer>: SELECT MAX(prize_money__) AS $__ FROM table_name_16 WHERE rank = 1 |
58,185 | <question>: What was the lowest round for the KOTC 25: Flaming Fury event? <context>: CREATE TABLE table_name_82 (round INTEGER, event VARCHAR) <answer>: SELECT MIN(round) FROM table_name_82 WHERE event = "kotc 25: flaming fury" |
58,186 | <question>: Who was the opponent for the KOTC 25: Flaming Fury event? <context>: CREATE TABLE table_name_82 (opponent VARCHAR, event VARCHAR) <answer>: SELECT opponent FROM table_name_82 WHERE event = "kotc 25: flaming fury" |
58,187 | <question>: Who was the opponent in the WMMA 1: McCorkle vs. Heden event that went more than 1 round? <context>: CREATE TABLE table_name_12 (opponent VARCHAR, round VARCHAR, event VARCHAR) <answer>: SELECT opponent FROM table_name_12 WHERE round > 1 AND event = "wmma 1: mccorkle vs. heden" |
58,188 | <question>: What was the result when his record was 25-15? <context>: CREATE TABLE table_name_83 (res VARCHAR, record VARCHAR) <answer>: SELECT res FROM table_name_83 WHERE record = "25-15" |
58,189 | <question>: What is Position, when Round is less than 6, and when Nationality is "Denmark"? <context>: CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, nationality VARCHAR) <answer>: SELECT position FROM table_name_22 WHERE round < 6 AND nationality = "denmark" |
58,190 | <question>: What is Position, when Nationality is "Canada", and when Round is greater than 3? <context>: CREATE TABLE table_name_31 (position VARCHAR, nationality VARCHAR, round VARCHAR) <answer>: SELECT position FROM table_name_31 WHERE nationality = "canada" AND round > 3 |
58,191 | <question>: What is the total number of Round, when College/Junior/Club Team (League) is "Kelowna Rockets ( WHL )"? <context>: CREATE TABLE table_name_83 (round VARCHAR, college_junior_club_team__league_ VARCHAR) <answer>: SELECT COUNT(round) FROM table_name_83 WHERE college_junior_club_team__league_ = "kelowna rockets ( whl )" |
58,192 | <question>: What round did the fight last when Mikhail Ilyukhin's record was 15-5? <context>: CREATE TABLE table_name_21 (round VARCHAR, record VARCHAR) <answer>: SELECT round FROM table_name_21 WHERE record = "15-5" |
58,193 | <question>: What method did Mikhail Ilyukhin win the fight in round 1 when his record was 13-5? <context>: CREATE TABLE table_name_10 (method VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR) <answer>: SELECT method FROM table_name_10 WHERE round = "1" AND res = "win" AND record = "13-5" |
58,194 | <question>: What was the method of resolution when Mikhail Ilyukhin's record was 4-0? <context>: CREATE TABLE table_name_92 (method VARCHAR, record VARCHAR) <answer>: SELECT method FROM table_name_92 WHERE record = "4-0" |
58,195 | <question>: When was the score 123-112? <context>: CREATE TABLE table_name_97 (date VARCHAR, score VARCHAR) <answer>: SELECT date FROM table_name_97 WHERE score = "123-112" |
58,196 | <question>: Who did they play when the score was 95-118? <context>: CREATE TABLE table_name_63 (opponent VARCHAR, score VARCHAR) <answer>: SELECT opponent FROM table_name_63 WHERE score = "95-118" |
58,197 | <question>: Who did they play when the score was 95-114? <context>: CREATE TABLE table_name_11 (opponent VARCHAR, score VARCHAR) <answer>: SELECT opponent FROM table_name_11 WHERE score = "95-114" |
58,198 | <question>: When was the score 92-134? <context>: CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR) <answer>: SELECT date FROM table_name_38 WHERE score = "92-134" |
58,199 | <question>: When they were 2-32 what did they score? <context>: CREATE TABLE table_name_71 (score VARCHAR, record VARCHAR) <answer>: SELECT score FROM table_name_71 WHERE record = "2-32" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.