combined_text
stringlengths
106
1.05k
###question:Score of 2–3 ot on what date?###answer:SELECT date FROM table_name_76 WHERE score = "2–3 ot"###context:CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)
###question:Opponent of @ edmonton oilers, and a Game smaller than 7, and a Series of oilers lead 3–2 had what score?###answer:SELECT score FROM table_name_38 WHERE opponent = "@ edmonton oilers" AND game < 7 AND series = "oilers lead 3–2"###context:CREATE TABLE table_name_38 (score VARCHAR, series VARCHAR, opponent VA...
###question:Opponent of @ edmonton oilers, and a Game larger than 1, and a Series of oilers lead 3–2 had what score?###answer:SELECT score FROM table_name_30 WHERE opponent = "@ edmonton oilers" AND game > 1 AND series = "oilers lead 3–2"###context:CREATE TABLE table_name_30 (score VARCHAR, series VARCHAR, opponent VAR...
###question:Series of oilers win 4–3 had what highest game?###answer:SELECT MAX(game) FROM table_name_6 WHERE series = "oilers win 4–3"###context:CREATE TABLE table_name_6 (game INTEGER, series VARCHAR)
###question:Which December has a Record of 4-3-6?###answer:SELECT december FROM table_name_65 WHERE record = "4-3-6"###context:CREATE TABLE table_name_65 (december VARCHAR, record VARCHAR)
###question:Which Score has a December smaller than 14, and a Game of 12?###answer:SELECT score FROM table_name_93 WHERE december < 14 AND game = 12###context:CREATE TABLE table_name_93 (score VARCHAR, december VARCHAR, game VARCHAR)
###question:Which Game is the highest one that has a Record of 4-3-6?###answer:SELECT MAX(game) FROM table_name_83 WHERE record = "4-3-6"###context:CREATE TABLE table_name_83 (game INTEGER, record VARCHAR)
###question:Which Score has a Record of 18–11–5?###answer:SELECT score FROM table_name_85 WHERE record = "18–11–5"###context:CREATE TABLE table_name_85 (score VARCHAR, record VARCHAR)
###question:Which Score has a Game larger than 32, and Points smaller than 42, and a December larger than 19, and a Record of 18–12–5?###answer:SELECT score FROM table_name_28 WHERE game > 32 AND points < 42 AND december > 19 AND record = "18–12–5"###context:CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR, de...
###question:Which Score has Points of 36, and a Game of 30?###answer:SELECT score FROM table_name_6 WHERE points = 36 AND game = 30###context:CREATE TABLE table_name_6 (score VARCHAR, points VARCHAR, game VARCHAR)
###question:Which Game has a Record of 14–10–4, and Points smaller than 32?###answer:SELECT SUM(game) FROM table_name_50 WHERE record = "14–10–4" AND points < 32###context:CREATE TABLE table_name_50 (game INTEGER, record VARCHAR, points VARCHAR)
###question:Which Game has a Score of 4–1?###answer:SELECT SUM(game) FROM table_name_47 WHERE score = "4–1"###context:CREATE TABLE table_name_47 (game INTEGER, score VARCHAR)
###question:Which celebrity was famous for being a rapper?###answer:SELECT celebrity FROM table_name_23 WHERE famous_for = "rapper"###context:CREATE TABLE table_name_23 (celebrity VARCHAR, famous_for VARCHAR)
###question:What position did the celebrity finish that entered on day 1 and exited on day 19?###answer:SELECT finished FROM table_name_16 WHERE exited = "day 19" AND entered = "day 1"###context:CREATE TABLE table_name_16 (finished VARCHAR, exited VARCHAR, entered VARCHAR)
###question:What was Dom Joly famous for?###answer:SELECT famous_for FROM table_name_32 WHERE celebrity = "dom joly"###context:CREATE TABLE table_name_32 (famous_for VARCHAR, celebrity VARCHAR)
###question:What position did the celebrity finish that entered on day 1 and exited on day 15?###answer:SELECT finished FROM table_name_41 WHERE entered = "day 1" AND exited = "day 15"###context:CREATE TABLE table_name_41 (finished VARCHAR, entered VARCHAR, exited VARCHAR)
###question:What celebrity is famous for being an actor?###answer:SELECT celebrity FROM table_name_84 WHERE famous_for = "actor"###context:CREATE TABLE table_name_84 (celebrity VARCHAR, famous_for VARCHAR)
###question:Where did steve smith go to school?###answer:SELECT school_club_team FROM table_name_53 WHERE player = "steve smith"###context:CREATE TABLE table_name_53 (school_club_team VARCHAR, player VARCHAR)
###question:What was the result associated with the cinemaa awards, and gabbar singh film?###answer:SELECT result FROM table_name_93 WHERE award = "cinemaa awards" AND film = "gabbar singh"###context:CREATE TABLE table_name_93 (result VARCHAR, award VARCHAR, film VARCHAR)
###question:What was the award for the excellence in tamil category?###answer:SELECT award FROM table_name_96 WHERE category = "excellence in tamil"###context:CREATE TABLE table_name_96 (award VARCHAR, category VARCHAR)
###question:Who is the composer of the song with a length of 6:24?###answer:SELECT composer_s_ FROM table_name_85 WHERE length = "6:24"###context:CREATE TABLE table_name_85 (composer_s_ VARCHAR, length VARCHAR)
###question:What is the lengtho f track 16?###answer:SELECT length FROM table_name_88 WHERE track = "16"###context:CREATE TABLE table_name_88 (length VARCHAR, track VARCHAR)
###question:How many new entries this round have clubs 2 β†’ 1?###answer:SELECT new_entries_this_round FROM table_name_58 WHERE clubs = "2 β†’ 1"###context:CREATE TABLE table_name_58 (new_entries_this_round VARCHAR, clubs VARCHAR)
###question:What is the average for matches with a prize money amount of Β£3,000?###answer:SELECT AVG(matches) FROM table_name_56 WHERE prize_money = "Β£3,000"###context:CREATE TABLE table_name_56 (matches INTEGER, prize_money VARCHAR)
###question:How many new entries this round are there with more than 16 matches and a third round qualifying?###answer:SELECT new_entries_this_round FROM table_name_90 WHERE matches > 16 AND round = "third round qualifying"###context:CREATE TABLE table_name_90 (new_entries_this_round VARCHAR, matches VARCHAR, round VAR...
###question:What are the clubs with 46 matches?###answer:SELECT clubs FROM table_name_57 WHERE matches = 46###context:CREATE TABLE table_name_57 (clubs VARCHAR, matches VARCHAR)
###question:What High School with a nickname of S Eagle has a Division of crest?###answer:SELECT high_school FROM table_name_17 WHERE division = "crest" AND nickname = "s eagle"###context:CREATE TABLE table_name_17 (high_school VARCHAR, division VARCHAR, nickname VARCHAR)
###question:What is the affiliation of a location called Issaquah?###answer:SELECT affiliation FROM table_name_51 WHERE location = "issaquah"###context:CREATE TABLE table_name_51 (affiliation VARCHAR, location VARCHAR)
###question:What is the affiliation of a high school in Issaquah that was founded in less than 1965?###answer:SELECT affiliation FROM table_name_37 WHERE founded < 1965 AND high_school = "issaquah"###context:CREATE TABLE table_name_37 (affiliation VARCHAR, founded VARCHAR, high_school VARCHAR)
###question:Which Venue has a Competition of pl group b, and a Score of 2-2?###answer:SELECT venue FROM table_name_82 WHERE competition = "pl group b" AND score = "2-2"###context:CREATE TABLE table_name_82 (venue VARCHAR, competition VARCHAR, score VARCHAR)
###question:Which Competition has a Score of 0-1, and Opponents of pkns fc?###answer:SELECT competition FROM table_name_33 WHERE score = "0-1" AND opponents = "pkns fc"###context:CREATE TABLE table_name_33 (competition VARCHAR, score VARCHAR, opponents VARCHAR)
###question:Who competed on may 6, 2006?###answer:SELECT opponents FROM table_name_50 WHERE date = "may 6, 2006"###context:CREATE TABLE table_name_50 (opponents VARCHAR, date VARCHAR)
###question:Which Score has Opponents of pkns fc, and a Date of january 8, 2006?###answer:SELECT score FROM table_name_35 WHERE opponents = "pkns fc" AND date = "january 8, 2006"###context:CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR, date VARCHAR)
###question:Which Date has a Competition of pl group b, and Opponents of police, and a Venue of selayang municipal council stadium?###answer:SELECT date FROM table_name_52 WHERE competition = "pl group b" AND opponents = "police" AND venue = "selayang municipal council stadium"###context:CREATE TABLE table_name_52 (dat...
###question:Which Competition has Opponents of pkns fc, and a Score of 0-0?###answer:SELECT competition FROM table_name_38 WHERE opponents = "pkns fc" AND score = "0-0"###context:CREATE TABLE table_name_38 (competition VARCHAR, opponents VARCHAR, score VARCHAR)
###question:How many people attended the game at the miami orange bowl?###answer:SELECT SUM(attendance) FROM table_name_49 WHERE game_site = "miami orange bowl"###context:CREATE TABLE table_name_49 (attendance INTEGER, game_site VARCHAR)
###question:What was the attendance at game with a loss of Josh Hall (0–1)?###answer:SELECT attendance FROM table_name_11 WHERE loss = "josh hall (0–1)"###context:CREATE TABLE table_name_11 (attendance VARCHAR, loss VARCHAR)
###question:What was the score of the game that had a loss of Chad Fox (3–3)?###answer:SELECT score FROM table_name_68 WHERE loss = "chad fox (3–3)"###context:CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR)
###question:What's the attendance of the game where there was a Loss of Yates (3-2)?###answer:SELECT attendance FROM table_name_37 WHERE loss = "yates (3-2)"###context:CREATE TABLE table_name_37 (attendance VARCHAR, loss VARCHAR)
###question:What's the latest keynote version of version 2.3 of numbers with pages greater than 4.3?###answer:SELECT MAX(keynote_version) FROM table_name_18 WHERE numbers_version = "2.3" AND pages_version > 4.3###context:CREATE TABLE table_name_18 (keynote_version INTEGER, numbers_version VARCHAR, pages_version VARCHAR...
###question:What version of iWork was released on October 22, 2013 with a pages version greater than 2?###answer:SELECT iwork_version FROM table_name_44 WHERE release_date = "october 22, 2013" AND pages_version > 2###context:CREATE TABLE table_name_44 (iwork_version VARCHAR, release_date VARCHAR, pages_version VARCHAR)
###question:Which Rank is the lowest one that has Points larger than 52, and a Year larger than 1970?###answer:SELECT MIN(rank) FROM table_name_9 WHERE points > 52 AND year > 1970###context:CREATE TABLE table_name_9 (rank INTEGER, points VARCHAR, year VARCHAR)
###question:Which opponent has a game larger than 61, february smaller than 28, and fewer points than 69?###answer:SELECT opponent FROM table_name_73 WHERE game > 61 AND february < 28 AND points < 69###context:CREATE TABLE table_name_73 (opponent VARCHAR, points VARCHAR, game VARCHAR, february VARCHAR)
###question:How many games have a record of 30–25–9 and more points than 69?###answer:SELECT COUNT(game) FROM table_name_86 WHERE record = "30–25–9" AND points > 69###context:CREATE TABLE table_name_86 (game VARCHAR, record VARCHAR, points VARCHAR)
###question:How many february games had a record of 29–24–9?###answer:SELECT AVG(february) FROM table_name_62 WHERE record = "29–24–9"###context:CREATE TABLE table_name_62 (february INTEGER, record VARCHAR)
###question:What numbered pick was the player from texas?###answer:SELECT COUNT(pick__number) FROM table_name_85 WHERE college = "texas"###context:CREATE TABLE table_name_85 (pick__number VARCHAR, college VARCHAR)
###question:What is the conference record for the year of 1971?###answer:SELECT conference_record FROM table_name_7 WHERE year = "1971"###context:CREATE TABLE table_name_7 (conference_record VARCHAR, year VARCHAR)
###question:When first elected was 2006, who was the delegate?###answer:SELECT delegate FROM table_name_99 WHERE first_elected = 2006###context:CREATE TABLE table_name_99 (delegate VARCHAR, first_elected VARCHAR)
###question:Which was the district that had first elected greater than 2006 and is democratic?###answer:SELECT district FROM table_name_51 WHERE party = "democratic" AND first_elected > 2006###context:CREATE TABLE table_name_51 (district VARCHAR, party VARCHAR, first_elected VARCHAR)
###question:Name the score for game more than 6 and before october 28###answer:SELECT score FROM table_name_67 WHERE game > 6 AND october < 28###context:CREATE TABLE table_name_67 (score VARCHAR, game VARCHAR, october VARCHAR)
###question:Name the least game for october 21###answer:SELECT MIN(game) FROM table_name_42 WHERE october = 21###context:CREATE TABLE table_name_42 (game INTEGER, october VARCHAR)
###question:Name the least game for record of 5-1-3###answer:SELECT MIN(game) FROM table_name_93 WHERE record = "5-1-3"###context:CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)
###question:Name the most october for game less than 1###answer:SELECT MAX(october) FROM table_name_19 WHERE game < 1###context:CREATE TABLE table_name_19 (october INTEGER, game INTEGER)
###question:Name the least game for record of 1-0-2###answer:SELECT MIN(game) FROM table_name_24 WHERE record = "1-0-2"###context:CREATE TABLE table_name_24 (game INTEGER, record VARCHAR)
###question:Which Bronze is the highest one that has a Rank larger than 1, and a Nation of dominican republic, and a Total larger than 4?###answer:SELECT MAX(bronze) FROM table_name_44 WHERE rank > 1 AND nation = "dominican republic" AND total > 4###context:CREATE TABLE table_name_44 (bronze INTEGER, total VARCHAR, ran...
###question:Which Total is the lowest one that has a Rank smaller than 1?###answer:SELECT MIN(total) FROM table_name_47 WHERE rank < 1###context:CREATE TABLE table_name_47 (total INTEGER, rank INTEGER)
###question:Which Total is the lowest one that has a Rank smaller than 2, and a Silver smaller than 15?###answer:SELECT MIN(total) FROM table_name_23 WHERE rank < 2 AND silver < 15###context:CREATE TABLE table_name_23 (total INTEGER, rank VARCHAR, silver VARCHAR)
###question:Which Silver has a Gold of 2, and a Nation of puerto rico, and a Total smaller than 12?###answer:SELECT SUM(silver) FROM table_name_71 WHERE gold = 2 AND nation = "puerto rico" AND total < 12###context:CREATE TABLE table_name_71 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)
###question:Album of les mots had what lowest year?###answer:SELECT MIN(year) FROM table_name_18 WHERE album = "les mots"###context:CREATE TABLE table_name_18 (year INTEGER, album VARCHAR)
###question:What team has 2000-01 as the season?###answer:SELECT team FROM table_name_67 WHERE season = "2000-01"###context:CREATE TABLE table_name_67 (team VARCHAR, season VARCHAR)
###question:What season has a number less than 90, Mitte as the league and spvgg ruhmannsfelden as the team?###answer:SELECT season FROM table_name_95 WHERE number < 90 AND league = "mitte" AND team = "spvgg ruhmannsfelden"###context:CREATE TABLE table_name_95 (season VARCHAR, team VARCHAR, number VARCHAR, league VARCH...
###question:What league has a number less than 122, and least wins as the record?###answer:SELECT league FROM table_name_38 WHERE number < 122 AND record = "least wins"###context:CREATE TABLE table_name_38 (league VARCHAR, number VARCHAR, record VARCHAR)
###question:What league has most wins as the record?###answer:SELECT league FROM table_name_77 WHERE record = "most wins"###context:CREATE TABLE table_name_77 (league VARCHAR, record VARCHAR)
###question:What league has a number less than 1?###answer:SELECT league FROM table_name_11 WHERE number < 1###context:CREATE TABLE table_name_11 (league VARCHAR, number INTEGER)
###question:What is the average nominated of the composition nominated by Taioseach with an Industrial and Commercial panel less than 9, an administrative panel greater than 0, a cultural and educational panel greater than 2, and a total less than 29?###answer:SELECT AVG(nominated_by_the_taoiseach) FROM table_name_99 W...
###question:What is the average administrative panel of the composition nominated by Taoiseach 0 times with a total less than 4?###answer:SELECT AVG(administrative_panel) FROM table_name_36 WHERE nominated_by_the_taoiseach = 0 AND total < 4###context:CREATE TABLE table_name_36 (administrative_panel INTEGER, nominated_b...
###question:What is the highest number of nominations by Taoiseach of the composition with an administrative panel greater than 0 and an industrial and commercial panel less than 1?###answer:SELECT MAX(nominated_by_the_taoiseach) FROM table_name_11 WHERE administrative_panel > 0 AND industrial_and_commercial_panel < 1#...
###question:What is the average agricultural panel of the composition with a labour panel less than 6, more than 0 nominations by Taoiseach, and a total less than 4?###answer:SELECT AVG(agricultural_panel) FROM table_name_62 WHERE labour_panel < 6 AND nominated_by_the_taoiseach > 0 AND total < 4###context:CREATE TABLE ...
###question:What is the total number of agriculatural panels of the composition with more than 3 National Universities of Ireland?###answer:SELECT COUNT(agricultural_panel) FROM table_name_59 WHERE national_university_of_ireland > 3###context:CREATE TABLE table_name_59 (agricultural_panel VARCHAR, national_university_o...
###question:What was the attendance on September 28?###answer:SELECT MAX(attendance) FROM table_name_92 WHERE date = "september 28"###context:CREATE TABLE table_name_92 (attendance INTEGER, date VARCHAR)
###question:Away result of 1-2 has what season?###answer:SELECT season FROM table_name_95 WHERE away_result = "1-2"###context:CREATE TABLE table_name_95 (season VARCHAR, away_result VARCHAR)
###question:Round of 2r, and a Home result of 0-0 has what season?###answer:SELECT season FROM table_name_24 WHERE round = "2r" AND home_result = "0-0"###context:CREATE TABLE table_name_24 (season VARCHAR, round VARCHAR, home_result VARCHAR)
###question:Home result of 1–0, and a Away result of 0–1 involves what club?###answer:SELECT club FROM table_name_56 WHERE home_result = "1–0" AND away_result = "0–1"###context:CREATE TABLE table_name_56 (club VARCHAR, home_result VARCHAR, away_result VARCHAR)
###question:Round of 1r, and an away result of 7–1 is what season?###answer:SELECT season FROM table_name_65 WHERE round = "1r" AND away_result = "7–1"###context:CREATE TABLE table_name_65 (season VARCHAR, round VARCHAR, away_result VARCHAR)
###question:Away result of 0–3, and a Season of 1969-70 is what competition?###answer:SELECT competition FROM table_name_48 WHERE away_result = "0–3" AND season = "1969-70"###context:CREATE TABLE table_name_48 (competition VARCHAR, away_result VARCHAR, season VARCHAR)
###question:Away result of 1–1, and a Round of 1r, and a Season of 1967-68 involves what club?###answer:SELECT club FROM table_name_92 WHERE away_result = "1–1" AND round = "1r" AND season = "1967-68"###context:CREATE TABLE table_name_92 (club VARCHAR, season VARCHAR, away_result VARCHAR, round VARCHAR)
###question:what was the nominee of best musical###answer:SELECT nominee FROM table_name_67 WHERE category = "best musical"###context:CREATE TABLE table_name_67 (nominee VARCHAR, category VARCHAR)
###question:what year was michele assaf nominated###answer:SELECT year FROM table_name_60 WHERE nominee = "michele assaf"###context:CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR)
###question:What was the highest pick for a player from a school or club team of Arkansas?###answer:SELECT MAX(pick) FROM table_name_9 WHERE school_club_team = "arkansas"###context:CREATE TABLE table_name_9 (pick INTEGER, school_club_team VARCHAR)
###question:How many Golds did Rank 10 get, with a Bronze larger than 2?###answer:SELECT COUNT(gold) FROM table_name_99 WHERE rank = "10" AND bronze > 2###context:CREATE TABLE table_name_99 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)
###question:What rank is Turkmenistan, who had 0 silver's and Less than 2 golds?###answer:SELECT rank FROM table_name_93 WHERE silver = 0 AND gold < 2 AND nation = "turkmenistan"###context:CREATE TABLE table_name_93 (rank VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)
###question:What's the biggest Bronze that has less than 0 Silvers?###answer:SELECT MAX(bronze) FROM table_name_73 WHERE silver < 0###context:CREATE TABLE table_name_73 (bronze INTEGER, silver INTEGER)
###question:What is the total Gold's less than 0?###answer:SELECT COUNT(total) FROM table_name_44 WHERE gold < 0###context:CREATE TABLE table_name_44 (total VARCHAR, gold INTEGER)
###question:What city is the School, Highland, in that ranks less than 8 and had its first title before 1980 and its last title later than 1960?###answer:SELECT city FROM table_name_55 WHERE rank < 8 AND first < 1980 AND last > 1960 AND school = "highland"###context:CREATE TABLE table_name_55 (city VARCHAR, school VARC...
###question:What city is the school that had less than 17 titles in boys basketball with the last title being after 2005?###answer:SELECT city FROM table_name_86 WHERE _number_of_titles < 17 AND last > 2005 AND sport = "boys basketball"###context:CREATE TABLE table_name_86 (city VARCHAR, sport VARCHAR, _number_of_title...
###question:What is the highest rank for the boys swimming team in Albuquerque?###answer:SELECT MAX(rank) FROM table_name_72 WHERE sport = "boys swimming" AND city = "albuquerque"###context:CREATE TABLE table_name_72 (rank INTEGER, sport VARCHAR, city VARCHAR)
###question:What is the total rank number for Los Alamos' girls cross country?###answer:SELECT COUNT(rank) FROM table_name_84 WHERE school = "los alamos" AND sport = "girls cross country"###context:CREATE TABLE table_name_84 (rank VARCHAR, school VARCHAR, sport VARCHAR)
###question:What capital has an S.Number under 7, and a Name of janapada of Punia?###answer:SELECT capital FROM table_name_89 WHERE sno < 7 AND name_of_janapada = "punia"###context:CREATE TABLE table_name_89 (capital VARCHAR, sno VARCHAR, name_of_janapada VARCHAR)
###question:What king has an S. number over 1 and a number of villages of 600?###answer:SELECT name_of_king FROM table_name_54 WHERE sno > 1 AND no_of_villages = 600###context:CREATE TABLE table_name_54 (name_of_king VARCHAR, sno VARCHAR, no_of_villages VARCHAR)
###question:What is the average number of villages with a name of janapada of Punia?###answer:SELECT AVG(no_of_villages) FROM table_name_86 WHERE name_of_janapada = "punia"###context:CREATE TABLE table_name_86 (no_of_villages INTEGER, name_of_janapada VARCHAR)
###question:What is the highest S number with a capital of Shekhsar?###answer:SELECT MAX(sno) FROM table_name_5 WHERE capital = "shekhsar"###context:CREATE TABLE table_name_5 (sno INTEGER, capital VARCHAR)
###question:What is the highest round number for the player who came from team Missouri?###answer:SELECT MAX(round) FROM table_name_38 WHERE school_club_team = "missouri"###context:CREATE TABLE table_name_38 (round INTEGER, school_club_team VARCHAR)
###question:What is the total number of rounds that had draft pick 97, duncan mccoll?###answer:SELECT COUNT(round) FROM table_name_62 WHERE player = "duncan mccoll" AND pick < 97###context:CREATE TABLE table_name_62 (round VARCHAR, player VARCHAR, pick VARCHAR)
###question:What opponent uses the method of decision and a 5-3 record?###answer:SELECT opponent FROM table_name_75 WHERE method = "decision" AND record = "5-3"###context:CREATE TABLE table_name_75 (opponent VARCHAR, method VARCHAR, record VARCHAR)
###question:What round has the highest Res loss, and a time of 40:00?###answer:SELECT MAX(round) FROM table_name_36 WHERE res = "loss" AND time = "40:00"###context:CREATE TABLE table_name_36 (round INTEGER, res VARCHAR, time VARCHAR)
###question:Who visited on April 29?###answer:SELECT visitor FROM table_name_35 WHERE date = "april 29"###context:CREATE TABLE table_name_35 (visitor VARCHAR, date VARCHAR)
###question:When did Montreal visit and have a score of 1-4?###answer:SELECT date FROM table_name_47 WHERE visitor = "montreal" AND score = "1-4"###context:CREATE TABLE table_name_47 (date VARCHAR, visitor VARCHAR, score VARCHAR)
###question:What was the score on April 25?###answer:SELECT score FROM table_name_9 WHERE date = "april 25"###context:CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR)
###question:What was the score on May 3?###answer:SELECT score FROM table_name_35 WHERE date = "may 3"###context:CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
###question:What is the School/Junior/Club Group (Association) that has a Round bigger than 6, and a Place of winger, and a Player of evgeny afanasiev?###answer:SELECT college_junior_club_team__league_ FROM table_name_49 WHERE round > 6 AND position = "winger" AND player = "evgeny afanasiev"###context:CREATE TABLE tabl...