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