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