combined_text
stringlengths
106
1.05k
###question:what is the date when the score is 115-93?###answer:SELECT date FROM table_name_68 WHERE score = "115-93"###context:CREATE TABLE table_name_68 (date VARCHAR, score VARCHAR)
###question:what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre?###answer:SELECT AVG(crowd) FROM table_name_64 WHERE away_team = "new zealand breakers" AND venue = "cairns convention centre"###context:CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR...
###question:how many times is the home team wollongong hawks?###answer:SELECT COUNT(crowd) FROM table_name_62 WHERE home_team = "wollongong hawks"###context:CREATE TABLE table_name_62 (crowd VARCHAR, home_team VARCHAR)
###question:what is the date when the venue is gold coast convention centre?###answer:SELECT date FROM table_name_70 WHERE venue = "gold coast convention centre"###context:CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)
###question:Which Score has Points smaller than 67, and a Home of calgary flames?###answer:SELECT score FROM table_name_45 WHERE points < 67 AND home = "calgary flames"###context:CREATE TABLE table_name_45 (score VARCHAR, points VARCHAR, home VARCHAR)
###question:Whic Date has a Score of 4–2?###answer:SELECT date FROM table_name_33 WHERE score = "4–2"###context:CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)
###question:Which Decision has a Record of 29–18–6?###answer:SELECT decision FROM table_name_53 WHERE record = "29–18–6"###context:CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR)
###question:Which Date has a Score of 4–2?###answer:SELECT date FROM table_name_14 WHERE score = "4–2"###context:CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR)
###question:How many losses did the coach who served under 1 season and in 1975 have?###answer:SELECT COUNT(lost) FROM table_name_93 WHERE years = "1975" AND seasons < 1###context:CREATE TABLE table_name_93 (lost VARCHAR, years VARCHAR, seasons VARCHAR)
###question:What is the number of seasons coached by Kathy Graham?###answer:SELECT MIN(seasons) FROM table_name_2 WHERE name = "kathy graham"###context:CREATE TABLE table_name_2 (seasons INTEGER, name VARCHAR)
###question:What is the result on September 25, 1966?###answer:SELECT result FROM table_name_80 WHERE date = "september 25, 1966"###context:CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)
###question:What is the attendance of the game on November 20, 1966 after week 10?###answer:SELECT attendance FROM table_name_54 WHERE week > 10 AND date = "november 20, 1966"###context:CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR)
###question:Who is the opponent on week 2?###answer:SELECT opponent FROM table_name_73 WHERE week = 2###context:CREATE TABLE table_name_73 (opponent VARCHAR, week VARCHAR)
###question:Who is the opponent on November 20, 1966?###answer:SELECT opponent FROM table_name_88 WHERE date = "november 20, 1966"###context:CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)
###question:What is the attendance of the game with the NY Islanders as home team?###answer:SELECT COUNT(attendance) FROM table_name_59 WHERE home = "ny islanders"###context:CREATE TABLE table_name_59 (attendance VARCHAR, home VARCHAR)
###question:What was the date of the game against seattle?###answer:SELECT date FROM table_name_52 WHERE opponent = "seattle"###context:CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR)
###question:Who were the opponents during game 30?###answer:SELECT opponent FROM table_name_82 WHERE game = 30###context:CREATE TABLE table_name_82 (opponent VARCHAR, game VARCHAR)
###question:What was the record during the game with a score of 78-59?###answer:SELECT record FROM table_name_52 WHERE score = "78-59"###context:CREATE TABLE table_name_52 (record VARCHAR, score VARCHAR)
###question:Which mlb team is located in maryland?###answer:SELECT team FROM table_name_95 WHERE state_province = "maryland" AND league = "mlb"###context:CREATE TABLE table_name_95 (team VARCHAR, state_province VARCHAR, league VARCHAR)
###question:What team is located in brooklyn?###answer:SELECT team FROM table_name_5 WHERE city = "brooklyn"###context:CREATE TABLE table_name_5 (team VARCHAR, city VARCHAR)
###question:In what year was the cfl team in edmonton, alberta established?###answer:SELECT est FROM table_name_6 WHERE state_province = "alberta" AND league = "cfl" AND city = "edmonton"###context:CREATE TABLE table_name_6 (est VARCHAR, city VARCHAR, state_province VARCHAR, league VARCHAR)
###question:In what year was the NFL team in chicago illinois established?###answer:SELECT est FROM table_name_96 WHERE state_province = "illinois" AND city = "chicago" AND league = "nfl"###context:CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR)
###question:Which team is located in missouri and was established in 1963?###answer:SELECT team FROM table_name_99 WHERE state_province = "missouri" AND est = "1963"###context:CREATE TABLE table_name_99 (team VARCHAR, state_province VARCHAR, est VARCHAR)
###question:Which event was Ye Shiwen in?###answer:SELECT event FROM table_name_23 WHERE name = "ye shiwen"###context:CREATE TABLE table_name_23 (event VARCHAR, name VARCHAR)
###question:Who had a time of 26.11?###answer:SELECT name FROM table_name_39 WHERE time = "26.11"###context:CREATE TABLE table_name_39 (name VARCHAR, time VARCHAR)
###question:What was the date in which the time was 2:16.08?###answer:SELECT date FROM table_name_31 WHERE time = "2:16.08"###context:CREATE TABLE table_name_31 (date VARCHAR, time VARCHAR)
###question:Who was in the women's 200m medley?###answer:SELECT name FROM table_name_22 WHERE event = "women's 200m medley"###context:CREATE TABLE table_name_22 (name VARCHAR, event VARCHAR)
###question:What was the nationality of the swimmer in the semifinal with a time of 29.51?###answer:SELECT nationality FROM table_name_62 WHERE round = "semifinal" AND time = "29.51"###context:CREATE TABLE table_name_62 (nationality VARCHAR, round VARCHAR, time VARCHAR)
###question:What country scored 67?###answer:SELECT country FROM table_name_76 WHERE score = 67###context:CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
###question:What was the to par for Tino Schuster?###answer:SELECT to_par FROM table_name_7 WHERE player = "tino schuster"###context:CREATE TABLE table_name_7 (to_par VARCHAR, player VARCHAR)
###question:What country has player Scott Verplank?###answer:SELECT country FROM table_name_64 WHERE player = "scott verplank"###context:CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)
###question:What is the type of glycosylase that has an E. coli of Muty?###answer:SELECT type FROM table_name_11 WHERE e_coli = "muty"###context:CREATE TABLE table_name_11 (type VARCHAR, e_coli VARCHAR)
###question:Which E. coli has a human value of HNEIL1?###answer:SELECT e_coli FROM table_name_78 WHERE human = "hneil1"###context:CREATE TABLE table_name_78 (e_coli VARCHAR, human VARCHAR)
###question:Which E. coli has a substrate of uracil?###answer:SELECT e_coli FROM table_name_22 WHERE substrates = "uracil"###context:CREATE TABLE table_name_22 (e_coli VARCHAR, substrates VARCHAR)
###question:The tko (doctor stoppage) method was used in a loss against which opponent?###answer:SELECT opponent FROM table_name_11 WHERE method = "tko (doctor stoppage)" AND res = "loss"###context:CREATE TABLE table_name_11 (opponent VARCHAR, method VARCHAR, res VARCHAR)
###question:How many total rounds used the submission (choke) method?###answer:SELECT SUM(round) FROM table_name_21 WHERE method = "submission (choke)"###context:CREATE TABLE table_name_21 (round INTEGER, method VARCHAR)
###question:What was the time of the match with a record of 9-0 and used the tko (doctor stoppage) method?###answer:SELECT time FROM table_name_75 WHERE method = "tko (doctor stoppage)" AND record = "9-0"###context:CREATE TABLE table_name_75 (time VARCHAR, method VARCHAR, record VARCHAR)
###question:What was the lowest round number at the UFC 16 event with a record of 19-1-1?###answer:SELECT MIN(round) FROM table_name_64 WHERE event = "ufc 16" AND record = "19-1-1"###context:CREATE TABLE table_name_64 (round INTEGER, event VARCHAR, record VARCHAR)
###question:What was the highest number of oppenents points recorded for game 9 when the attendance was less than 60,091?###answer:SELECT MAX(opponents) FROM table_name_85 WHERE game = 9 AND attendance < 60 OFFSET 091###context:CREATE TABLE table_name_85 (opponents INTEGER, game VARCHAR, attendance VARCHAR)
###question:What event did tedd williams fight bill parker?###answer:SELECT event FROM table_name_94 WHERE opponent = "bill parker"###context:CREATE TABLE table_name_94 (event VARCHAR, opponent VARCHAR)
###question:What round did the fight against travis fulton last?###answer:SELECT round FROM table_name_10 WHERE opponent = "travis fulton"###context:CREATE TABLE table_name_10 (round VARCHAR, opponent VARCHAR)
###question:How many times is the player scott deibert?###answer:SELECT COUNT(pick__number) FROM table_name_72 WHERE player = "scott deibert"###context:CREATE TABLE table_name_72 (pick__number VARCHAR, player VARCHAR)
###question:what is the pick # for william loftus?###answer:SELECT pick__number FROM table_name_68 WHERE player = "william loftus"###context:CREATE TABLE table_name_68 (pick__number VARCHAR, player VARCHAR)
###question:what is the cfl team for position d?###answer:SELECT cfl_team FROM table_name_68 WHERE position = "d"###context:CREATE TABLE table_name_68 (cfl_team VARCHAR, position VARCHAR)
###question:what was the total for the Wolverhampton Wanderers?###answer:SELECT league_goals FROM table_name_61 WHERE club = "wolverhampton wanderers"###context:CREATE TABLE table_name_61 (league_goals VARCHAR, club VARCHAR)
###question:How many were in attendance when the result was l 20-17?###answer:SELECT attendance FROM table_name_42 WHERE result = "l 20-17"###context:CREATE TABLE table_name_42 (attendance VARCHAR, result VARCHAR)
###question:Which Third/Vice skip has a Second of Γ©ric sylvain?###answer:SELECT third_vice_skip FROM table_name_13 WHERE second = "Γ©ric sylvain"###context:CREATE TABLE table_name_13 (third_vice_skip VARCHAR, second VARCHAR)
###question:Which Lead has a Skip of mike mcewen?###answer:SELECT lead FROM table_name_73 WHERE skip = "mike mcewen"###context:CREATE TABLE table_name_73 (lead VARCHAR, skip VARCHAR)
###question:Which City has a Lead of steve gould?###answer:SELECT city FROM table_name_52 WHERE lead = "steve gould"###context:CREATE TABLE table_name_52 (city VARCHAR, lead VARCHAR)
###question:Which Lead has a City of winnipeg, and a Third/Vice skip of kevin park?###answer:SELECT lead FROM table_name_17 WHERE city = "winnipeg" AND third_vice_skip = "kevin park"###context:CREATE TABLE table_name_17 (lead VARCHAR, city VARCHAR, third_vice_skip VARCHAR)
###question:Which City has a Lead of tyler forrest?###answer:SELECT city FROM table_name_95 WHERE lead = "tyler forrest"###context:CREATE TABLE table_name_95 (city VARCHAR, lead VARCHAR)
###question:Which Lead has a Skip of ted appelman?###answer:SELECT lead FROM table_name_95 WHERE skip = "ted appelman"###context:CREATE TABLE table_name_95 (lead VARCHAR, skip VARCHAR)
###question:Which album is #10?###answer:SELECT album FROM table_name_66 WHERE number = 10###context:CREATE TABLE table_name_66 (album VARCHAR, number VARCHAR)
###question:What is Ben Hogan's Place?###answer:SELECT place FROM table_name_21 WHERE player = "ben hogan"###context:CREATE TABLE table_name_21 (place VARCHAR, player VARCHAR)
###question:What is Jerry Barber's To par?###answer:SELECT to_par FROM table_name_74 WHERE player = "jerry barber"###context:CREATE TABLE table_name_74 (to_par VARCHAR, player VARCHAR)
###question:What is the Score of T2 Place Player Dow Finsterwald?###answer:SELECT score FROM table_name_12 WHERE place = "t2" AND player = "dow finsterwald"###context:CREATE TABLE table_name_12 (score VARCHAR, place VARCHAR, player VARCHAR)
###question:What's the to par of the United States with the score of 71-71=142?###answer:SELECT to_par FROM table_name_1 WHERE country = "united states" AND score = 71 - 71 = 142###context:CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, score VARCHAR)
###question:What place had a score of 71-70=141?###answer:SELECT place FROM table_name_8 WHERE score = 71 - 70 = 141###context:CREATE TABLE table_name_8 (place VARCHAR, score VARCHAR)
###question:Which player had a score of 72-69=141?###answer:SELECT player FROM table_name_75 WHERE score = 72 - 69 = 141###context:CREATE TABLE table_name_75 (player VARCHAR, score VARCHAR)
###question:What is the score of T7 place?###answer:SELECT score FROM table_name_69 WHERE place = "t7"###context:CREATE TABLE table_name_69 (score VARCHAR, place VARCHAR)
###question:What place is Ben Hogan?###answer:SELECT place FROM table_name_49 WHERE player = "ben hogan"###context:CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)
###question:What place has a to par of E?###answer:SELECT place FROM table_name_46 WHERE to_par = "e"###context:CREATE TABLE table_name_46 (place VARCHAR, to_par VARCHAR)
###question:What pick was J.D. Hill?###answer:SELECT MIN(pick) FROM table_name_52 WHERE player = "j.d. hill"###context:CREATE TABLE table_name_52 (pick INTEGER, player VARCHAR)
###question:What pick was used to select a Defensive End in round 8?###answer:SELECT SUM(pick) FROM table_name_70 WHERE position = "defensive end" AND round = 8###context:CREATE TABLE table_name_70 (pick INTEGER, position VARCHAR, round VARCHAR)
###question:which winner has a jockery containing jerry bailey and the owner of overbrook farm?###answer:SELECT winner FROM table_name_28 WHERE jockey = "jerry bailey" AND owner = "overbrook farm"###context:CREATE TABLE table_name_28 (winner VARCHAR, jockey VARCHAR, owner VARCHAR)
###question:What time contains the owner of maine chance farm?###answer:SELECT time FROM table_name_55 WHERE owner = "maine chance farm"###context:CREATE TABLE table_name_55 (time VARCHAR, owner VARCHAR)
###question:Which time contains the jockery of isaac murphy as well as the winner of kingman?###answer:SELECT time FROM table_name_39 WHERE jockey = "isaac murphy" AND winner = "kingman"###context:CREATE TABLE table_name_39 (time VARCHAR, jockey VARCHAR, winner VARCHAR)
###question:Which owner has the time of 2:02.20 and the year of 1957?###answer:SELECT owner FROM table_name_86 WHERE time = "2:02.20" AND year = "1957"###context:CREATE TABLE table_name_86 (owner VARCHAR, time VARCHAR, year VARCHAR)
###question:Which owner has the time 2:03.00 and the year of 1991 kd?###answer:SELECT owner FROM table_name_49 WHERE time = "2:03.00" AND year = "1991 kd"###context:CREATE TABLE table_name_49 (owner VARCHAR, time VARCHAR, year VARCHAR)
###question:What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8?###answer:SELECT SUM(played) FROM table_name_13 WHERE lost > 5 AND position < 8 AND drawn > 1###context:CREATE TABLE table_name_13 (played INTEGER, drawn VARCHAR, lost VARCHAR, position VARCHAR)
###question:What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich?###answer:SELECT AVG(points) FROM table_name_86 WHERE drawn < 1 AND name = "ev aich" AND lost > 11###context:CREATE TABLE table_name_86 (points INTEGER, lost VARCHAR, drawn VARCHAR, name VARCHAR)
###question:What is the sum of points for a position over 5 with more than 2 draws?###answer:SELECT SUM(points) FROM table_name_79 WHERE drawn > 2 AND position > 5###context:CREATE TABLE table_name_79 (points INTEGER, drawn VARCHAR, position VARCHAR)
###question:Which nation won no bronze medals and a 1 medal total?###answer:SELECT nation FROM table_name_54 WHERE total = 1 AND bronze < 1###context:CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)
###question:What was the result of the game in week 4?###answer:SELECT result FROM table_name_32 WHERE week = 4###context:CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR)
###question:What party has more than 241,310 inhabitants after 2012?###answer:SELECT party FROM table_name_20 WHERE election > 2012 AND inhabitants > 241 OFFSET 310###context:CREATE TABLE table_name_20 (party VARCHAR, election VARCHAR, inhabitants VARCHAR)
###question:Highest inhabitants from gela?###answer:SELECT MAX(inhabitants) FROM table_name_86 WHERE municipality = "gela"###context:CREATE TABLE table_name_86 (inhabitants INTEGER, municipality VARCHAR)
###question:What is the average number of casualties for the convoy with a number of U-844?###answer:SELECT AVG(casualties) FROM table_name_5 WHERE number = "u-844"###context:CREATE TABLE table_name_5 (casualties INTEGER, number VARCHAR)
###question:On what Surface was the match against Ilija Bozoljac played?###answer:SELECT surface FROM table_name_9 WHERE opponent = "ilija bozoljac"###context:CREATE TABLE table_name_9 (surface VARCHAR, opponent VARCHAR)
###question:What Tournament was against Daniel Elsner?###answer:SELECT tournament FROM table_name_63 WHERE opponent = "daniel elsner"###context:CREATE TABLE table_name_63 (tournament VARCHAR, opponent VARCHAR)
###question:What is the Date of the Tournament with a Score of 3–6, 7–6(6), 5–7?###answer:SELECT date FROM table_name_72 WHERE score = "3–6, 7–6(6), 5–7"###context:CREATE TABLE table_name_72 (date VARCHAR, score VARCHAR)
###question:What is the Opponent of the Banja Luka Tournament with a Score of 4–6, 4–6?###answer:SELECT opponent FROM table_name_57 WHERE score = "4–6, 4–6" AND tournament = "banja luka"###context:CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR, tournament VARCHAR)
###question:On what date was the record set with a time of 1:07.18?###answer:SELECT date FROM table_name_44 WHERE time = "1:07.18"###context:CREATE TABLE table_name_44 (date VARCHAR, time VARCHAR)
###question:On what date was a record set in the team pursuit (8 laps) event?###answer:SELECT date FROM table_name_75 WHERE event = "team pursuit (8 laps)"###context:CREATE TABLE table_name_75 (date VARCHAR, event VARCHAR)
###question:What nation did the speed skater that set a record in the 1000 metres event represent?###answer:SELECT nation FROM table_name_23 WHERE event = "1000 metres"###context:CREATE TABLE table_name_23 (nation VARCHAR, event VARCHAR)
###question:What was the record setting time in the team pursuit (8 laps) event?###answer:SELECT time FROM table_name_5 WHERE event = "team pursuit (8 laps)"###context:CREATE TABLE table_name_5 (time VARCHAR, event VARCHAR)
###question:What is the total for the draw with 0 points, and less than 14 lost?###answer:SELECT SUM(draw) FROM table_name_15 WHERE points = 0 AND lost < 14###context:CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, lost VARCHAR)
###question:What date has @ new orleans as the team?###answer:SELECT date FROM table_name_47 WHERE team = "@ new orleans"###context:CREATE TABLE table_name_47 (date VARCHAR, team VARCHAR)
###question:What is the sum of the game with the boston bruins as the opponent?###answer:SELECT SUM(game) FROM table_name_84 WHERE opponent = "boston bruins"###context:CREATE TABLE table_name_84 (game INTEGER, opponent VARCHAR)
###question:What is the total number of games at Toronto with less than 31 points?###answer:SELECT COUNT(game) FROM table_name_87 WHERE location = "toronto" AND points < 31###context:CREATE TABLE table_name_87 (game VARCHAR, location VARCHAR, points VARCHAR)
###question:What years did jersey number 55 play?###answer:SELECT years FROM table_name_81 WHERE jersey_number_s_ = "55"###context:CREATE TABLE table_name_81 (years VARCHAR, jersey_number_s_ VARCHAR)
###question:Before 2007, what was the avg start that had a pole of 0 and in 65th position?###answer:SELECT AVG(starts) FROM table_name_81 WHERE poles = 0 AND position = "65th" AND year < 2007###context:CREATE TABLE table_name_81 (starts INTEGER, year VARCHAR, poles VARCHAR, position VARCHAR)
###question:How many starts had an avg start of less than 37 and won $1,636,827?###answer:SELECT SUM(starts) FROM table_name_66 WHERE winnings = "$1,636,827" AND avg_start < 37###context:CREATE TABLE table_name_66 (starts INTEGER, winnings VARCHAR, avg_start VARCHAR)
###question:in 1990, how many wins had an avg finish of 35 and a start less than 1?###answer:SELECT MAX(wins) FROM table_name_90 WHERE avg_finish = 35 AND year = 1990 AND starts < 1###context:CREATE TABLE table_name_90 (wins INTEGER, starts VARCHAR, avg_finish VARCHAR, year VARCHAR)
###question:What year had a pole smaller than 0 and in 77th position?###answer:SELECT MAX(year) FROM table_name_57 WHERE position = "77th" AND poles < 0###context:CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, poles VARCHAR)
###question:in 2007, what is the avg finish that had a start less than 1?###answer:SELECT SUM(avg_finish) FROM table_name_91 WHERE year = 2007 AND starts < 1###context:CREATE TABLE table_name_91 (avg_finish INTEGER, year VARCHAR, starts VARCHAR)
###question:What is Score, when Game is greater than 4?###answer:SELECT score FROM table_name_1 WHERE game > 4###context:CREATE TABLE table_name_1 (score VARCHAR, game INTEGER)
###question:What is High Points, when Game is "3"?###answer:SELECT high_points FROM table_name_81 WHERE game = 3###context:CREATE TABLE table_name_81 (high_points VARCHAR, game VARCHAR)
###question:What is Score, when Location Attendance is "Madison Square Garden Unknown", and when High Rebounds is "Sidney Green (10)"?###answer:SELECT score FROM table_name_9 WHERE location_attendance = "madison square garden unknown" AND high_rebounds = "sidney green (10)"###context:CREATE TABLE table_name_9 (score VA...
###question:What is High Rebounds, when Location Attendance is "Madison Square Garden Unknown", and when Date is "May 18"?###answer:SELECT high_rebounds FROM table_name_15 WHERE location_attendance = "madison square garden unknown" AND date = "may 18"###context:CREATE TABLE table_name_15 (high_rebounds VARCHAR, locatio...
###question:What is Team, when Location Attendance is "Madison Square Garden Unknown", and when High Points is "Alonzo Mourning (24)"?###answer:SELECT team FROM table_name_69 WHERE location_attendance = "madison square garden unknown" AND high_points = "alonzo mourning (24)"###context:CREATE TABLE table_name_69 (team V...