combined_text
stringlengths
106
1.05k
###question:what team had a score of 2-1###answer:SELECT opponent FROM table_name_92 WHERE score = "2-1"###context:CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR)
###question:what team played on may 11###answer:SELECT opponent FROM table_name_1 WHERE date = "may 11"###context:CREATE TABLE table_name_1 (opponent VARCHAR, date VARCHAR)
###question:what place has the club of sevilla###answer:SELECT away FROM table_name_76 WHERE club = "sevilla"###context:CREATE TABLE table_name_76 (away VARCHAR, club VARCHAR)
###question:Which new conference is located in Greentown?###answer:SELECT new_conference FROM table_name_64 WHERE location = "greentown"###context:CREATE TABLE table_name_64 (new_conference VARCHAR, location VARCHAR)
###question:What is the most current year with a previous conference of Mid-Indiana in Converse?###answer:SELECT MAX(year_joined) FROM table_name_35 WHERE previous_conference = "mid-indiana" AND location = "converse"###context:CREATE TABLE table_name_35 (year_joined INTEGER, previous_conference VARCHAR, location VARCHA...
###question:What year did Culver leave?###answer:SELECT SUM(year_left) FROM table_name_71 WHERE location = "culver"###context:CREATE TABLE table_name_71 (year_left INTEGER, location VARCHAR)
###question:What is the mascot with a #/County of 34 Howard?###answer:SELECT mascot FROM table_name_41 WHERE _number___county = "34 howard"###context:CREATE TABLE table_name_41 (mascot VARCHAR, _number___county VARCHAR)
###question:What day was a friendly game held that had a score of 2:3?###answer:SELECT date FROM table_name_87 WHERE type_of_game = "friendly" AND resultsΒΉ = "2:3"###context:CREATE TABLE table_name_87 (date VARCHAR, type_of_game VARCHAR, resultsΒΉ VARCHAR)
###question:What type of game was held on December 22?###answer:SELECT type_of_game FROM table_name_57 WHERE date = "december 22"###context:CREATE TABLE table_name_57 (type_of_game VARCHAR, date VARCHAR)
###question:what game had a doubles round in 1979###answer:SELECT mixed_doubles FROM table_name_92 WHERE year = 1979###context:CREATE TABLE table_name_92 (mixed_doubles VARCHAR, year VARCHAR)
###question:Where were less than 72 goals made and more than 40 assists made?###answer:SELECT venue FROM table_name_74 WHERE goals < 72 AND assists > 40###context:CREATE TABLE table_name_74 (venue VARCHAR, goals VARCHAR, assists VARCHAR)
###question:Which opponent plays against the Pohang Steelers?###answer:SELECT name FROM table_name_58 WHERE opponent = "pohang steelers"###context:CREATE TABLE table_name_58 (name VARCHAR, opponent VARCHAR)
###question:What competition had more than 40 assists?###answer:SELECT competition FROM table_name_19 WHERE assists > 40###context:CREATE TABLE table_name_19 (competition VARCHAR, assists INTEGER)
###question:What Nation Placed 122.5?###answer:SELECT nation FROM table_name_22 WHERE places = 122.5###context:CREATE TABLE table_name_22 (nation VARCHAR, places VARCHAR)
###question:What is the Places amount of the United States Ranking 8?###answer:SELECT AVG(places) FROM table_name_71 WHERE nation = "united states" AND rank = 8###context:CREATE TABLE table_name_71 (places INTEGER, nation VARCHAR, rank VARCHAR)
###question:What is the average episode number where jimmy mulville was the 4th performer?###answer:SELECT AVG(episode) FROM table_name_35 WHERE performer_4 = "jimmy mulville"###context:CREATE TABLE table_name_35 (episode INTEGER, performer_4 VARCHAR)
###question:What is the total number of episodes where hugh laurie was the 3rd performer?###answer:SELECT COUNT(episode) FROM table_name_70 WHERE performer_3 = "hugh laurie"###context:CREATE TABLE table_name_70 (episode VARCHAR, performer_3 VARCHAR)
###question:What is the lowest episode number where john bird was the 4th performer?###answer:SELECT MIN(episode) FROM table_name_48 WHERE performer_4 = "john bird"###context:CREATE TABLE table_name_48 (episode INTEGER, performer_4 VARCHAR)
###question:Who was the 3rd performer when Rory Bremner was the 4th performer?###answer:SELECT performer_3 FROM table_name_11 WHERE performer_4 = "rory bremner"###context:CREATE TABLE table_name_11 (performer_3 VARCHAR, performer_4 VARCHAR)
###question:What time did the game featuring the Detroit Lions at Three Rivers Stadium occur?###answer:SELECT time___et__ FROM table_name_38 WHERE location = "three rivers stadium" AND opponent = "detroit lions"###context:CREATE TABLE table_name_38 (time___et__ VARCHAR, location VARCHAR, opponent VARCHAR)
###question:What is the highest number of successful launches associated with over 1 launch and under 0 fails?###answer:SELECT MAX(successes) FROM table_name_36 WHERE launches > 1 AND failures < 0###context:CREATE TABLE table_name_36 (successes INTEGER, launches VARCHAR, failures VARCHAR)
###question:What kind of locomotive is Winston Churchill?###answer:SELECT locomotive_type FROM table_name_93 WHERE name = "winston churchill"###context:CREATE TABLE table_name_93 (locomotive_type VARCHAR, name VARCHAR)
###question:How many draws were there when there were points less than 23, 6 losses, and more than 21 against?###answer:SELECT COUNT(drawn) FROM table_name_49 WHERE points < 23 AND lost = 6 AND against > 21###context:CREATE TABLE table_name_49 (drawn VARCHAR, against VARCHAR, points VARCHAR, lost VARCHAR)
###question:What is the smallest amount of draws when the position is less than 7 and the against is 19?###answer:SELECT MIN(drawn) FROM table_name_38 WHERE position < 7 AND against = 19###context:CREATE TABLE table_name_38 (drawn INTEGER, position VARCHAR, against VARCHAR)
###question:What is the highest amount of plays for fluminense?###answer:SELECT MAX(played) FROM table_name_97 WHERE team = "fluminense"###context:CREATE TABLE table_name_97 (played INTEGER, team VARCHAR)
###question:What is the least amount of points when there were less than 4 losses and less than 16 against?###answer:SELECT MIN(points) FROM table_name_43 WHERE lost < 4 AND against < 16###context:CREATE TABLE table_name_43 (points INTEGER, lost VARCHAR, against VARCHAR)
###question:Who does Rockstar Games use as a developer?###answer:SELECT developer FROM table_name_97 WHERE publisher = "rockstar games"###context:CREATE TABLE table_name_97 (developer VARCHAR, publisher VARCHAR)
###question:When Did Microsoft Game Studios release Amped: Freestyle Snowboarding?###answer:SELECT release_date FROM table_name_18 WHERE publisher = "microsoft game studios" AND title = "amped: freestyle snowboarding"###context:CREATE TABLE table_name_18 (release_date VARCHAR, publisher VARCHAR, title VARCHAR)
###question:Which Score has a Home of quebec nordiques, and a Visitor of vancouver blazers on february 28?###answer:SELECT score FROM table_name_52 WHERE home = "quebec nordiques" AND visitor = "vancouver blazers" AND date = "february 28"###context:CREATE TABLE table_name_52 (score VARCHAR, date VARCHAR, home VARCHAR, ...
###question:When has a Visitor of new england whalers, and a Record of 9–9–1? Question 2###answer:SELECT date FROM table_name_5 WHERE visitor = "new england whalers" AND record = "9–9–1"###context:CREATE TABLE table_name_5 (date VARCHAR, visitor VARCHAR, record VARCHAR)
###question:Which Home has a Visitor of quebec nordiques, and a Score of 3–4, and a Record of 8–8–1?###answer:SELECT home FROM table_name_62 WHERE visitor = "quebec nordiques" AND score = "3–4" AND record = "8–8–1"###context:CREATE TABLE table_name_62 (home VARCHAR, record VARCHAR, visitor VARCHAR, score VARCHAR)
###question:WHich Score has a Record of 31–28–3?###answer:SELECT score FROM table_name_16 WHERE record = "31–28–3"###context:CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR)
###question:When has Score of 4–5, and a Record of 21–21–3?###answer:SELECT date FROM table_name_94 WHERE score = "4–5" AND record = "21–21–3"###context:CREATE TABLE table_name_94 (date VARCHAR, score VARCHAR, record VARCHAR)
###question:What is the Score of a Record 24–23–3?###answer:SELECT score FROM table_name_69 WHERE record = "24–23–3"###context:CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)
###question:During which games did Tunisia win gold in the men's 5000 m?###answer:SELECT games FROM table_name_24 WHERE event = "men's 5000 m" AND medal = "gold"###context:CREATE TABLE table_name_24 (games VARCHAR, event VARCHAR, medal VARCHAR)
###question:What medal was won in the men's light welterweight event at the 1996 Atlanta games?###answer:SELECT medal FROM table_name_68 WHERE event = "men's light welterweight" AND games = "1996 atlanta"###context:CREATE TABLE table_name_68 (medal VARCHAR, event VARCHAR, games VARCHAR)
###question:At which games did Tunisia win a bronze in the men's 1500 m freestyle?###answer:SELECT games FROM table_name_59 WHERE medal = "bronze" AND event = "men's 1500 m freestyle"###context:CREATE TABLE table_name_59 (games VARCHAR, medal VARCHAR, event VARCHAR)
###question:What medal was won in the men's 5000 m event?###answer:SELECT medal FROM table_name_53 WHERE event = "men's 5000 m"###context:CREATE TABLE table_name_53 (medal VARCHAR, event VARCHAR)
###question:What is the draw with less than 107 points by the artist Jan Johansen?###answer:SELECT COUNT(draw) FROM table_name_9 WHERE artist = "jan johansen" AND points < 107###context:CREATE TABLE table_name_9 (draw VARCHAR, artist VARCHAR, points VARCHAR)
###question:In what Year did the Norton Team have 0 Points and 350cc Class?###answer:SELECT AVG(year) FROM table_name_81 WHERE class = "350cc" AND team = "norton" AND points < 0###context:CREATE TABLE table_name_81 (year INTEGER, points VARCHAR, class VARCHAR, team VARCHAR)
###question:What is the Wins before 1960 with less than 2 Points?###answer:SELECT SUM(wins) FROM table_name_47 WHERE year < 1960 AND points < 2###context:CREATE TABLE table_name_47 (wins INTEGER, year VARCHAR, points VARCHAR)
###question:What was the earliest Year the Linto Team had less than 15 Points with more than 0 Wins?###answer:SELECT MIN(year) FROM table_name_86 WHERE wins > 0 AND team = "linto" AND points < 15###context:CREATE TABLE table_name_86 (year INTEGER, points VARCHAR, wins VARCHAR, team VARCHAR)
###question:What were the points for a team that 414 points against?###answer:SELECT points_for FROM table_name_52 WHERE points_against = "414"###context:CREATE TABLE table_name_52 (points_for VARCHAR, points_against VARCHAR)
###question:Who was the player that had drawn 1 and tried for 20?###answer:SELECT played FROM table_name_76 WHERE drawn = "1" AND tries_for = "20"###context:CREATE TABLE table_name_76 (played VARCHAR, drawn VARCHAR, tries_for VARCHAR)
###question:What were the points for that had a game where there was 678 against?###answer:SELECT points_for FROM table_name_78 WHERE points_against = "678"###context:CREATE TABLE table_name_78 (points_for VARCHAR, points_against VARCHAR)
###question:What were the points against in a game that was played correct as of 2009-05-16?###answer:SELECT points_against FROM table_name_99 WHERE played = "correct as of 2009-05-16"###context:CREATE TABLE table_name_99 (points_against VARCHAR, played VARCHAR)
###question:What was the tries again llanishen rfc?###answer:SELECT tries_against FROM table_name_35 WHERE club = "llanishen rfc"###context:CREATE TABLE table_name_35 (tries_against VARCHAR, club VARCHAR)
###question:What was drawn for llanishen rfc?###answer:SELECT drawn FROM table_name_56 WHERE club = "llanishen rfc"###context:CREATE TABLE table_name_56 (drawn VARCHAR, club VARCHAR)
###question:Which District has a Republican of dan mansell?###answer:SELECT AVG(district) FROM table_name_25 WHERE republican = "dan mansell"###context:CREATE TABLE table_name_25 (district INTEGER, republican VARCHAR)
###question:Which Republican has a District of 10?###answer:SELECT republican FROM table_name_26 WHERE district = 10###context:CREATE TABLE table_name_26 (republican VARCHAR, district VARCHAR)
###question:Which Incumbent has a Republican of dan mansell?###answer:SELECT incumbent FROM table_name_73 WHERE republican = "dan mansell"###context:CREATE TABLE table_name_73 (incumbent VARCHAR, republican VARCHAR)
###question:Which Democratic has a District smaller than 7, and a Republican of dan mansell?###answer:SELECT democratic FROM table_name_99 WHERE district < 7 AND republican = "dan mansell"###context:CREATE TABLE table_name_99 (democratic VARCHAR, district VARCHAR, republican VARCHAR)
###question:Which record has a score of 135–134?###answer:SELECT record FROM table_name_7 WHERE score = "135–134"###context:CREATE TABLE table_name_7 (record VARCHAR, score VARCHAR)
###question:Name the position for the player born 2 november 1987###answer:SELECT position FROM table_name_80 WHERE date_of_birth__age_ = "2 november 1987"###context:CREATE TABLE table_name_80 (position VARCHAR, date_of_birth__age_ VARCHAR)
###question:Name the club/province for steve borthwick###answer:SELECT club_province FROM table_name_51 WHERE player = "steve borthwick"###context:CREATE TABLE table_name_51 (club_province VARCHAR, player VARCHAR)
###question:What is the largest ration with an ordinary value of 84 zolotnik?###answer:SELECT MAX(ratio) FROM table_name_85 WHERE ordinary_value = "84 zolotnik"###context:CREATE TABLE table_name_85 (ratio INTEGER, ordinary_value VARCHAR)
###question:What unit has an Avoirdupois value of 57.602 gr.?###answer:SELECT unit FROM table_name_9 WHERE avoirdupois_value = "57.602 gr."###context:CREATE TABLE table_name_9 (unit VARCHAR, avoirdupois_value VARCHAR)
###question:Which translation had a unit of Uncia?###answer:SELECT translation FROM table_name_10 WHERE unit = "uncia"###context:CREATE TABLE table_name_10 (translation VARCHAR, unit VARCHAR)
###question:What ordinary value has a metric value of 29.861 g?###answer:SELECT ordinary_value FROM table_name_56 WHERE metric_value = "29.861 g"###context:CREATE TABLE table_name_56 (ordinary_value VARCHAR, metric_value VARCHAR)
###question:Which ordinary value has a Russian value of унция?###answer:SELECT ordinary_value FROM table_name_64 WHERE russian = "унция"###context:CREATE TABLE table_name_64 (ordinary_value VARCHAR, russian VARCHAR)
###question:Which Avoirdupois value is translated to grain?###answer:SELECT avoirdupois_value FROM table_name_76 WHERE translation = "grain"###context:CREATE TABLE table_name_76 (avoirdupois_value VARCHAR, translation VARCHAR)
###question:What is the number of turns for the City of san antonio?###answer:SELECT turns FROM table_name_35 WHERE city = "san antonio"###context:CREATE TABLE table_name_35 (turns VARCHAR, city VARCHAR)
###question:What is the State with the imsa gt as the Major Series and a track in new orleans?###answer:SELECT state FROM table_name_23 WHERE major_series = "imsa gt" AND track = "new orleans"###context:CREATE TABLE table_name_23 (state VARCHAR, major_series VARCHAR, track VARCHAR)
###question:Where is the track located with 18 turns?###answer:SELECT track FROM table_name_34 WHERE turns = "18"###context:CREATE TABLE table_name_34 (track VARCHAR, turns VARCHAR)
###question:What is the State with the trans-am Major Series in Grand Rapids?###answer:SELECT state FROM table_name_38 WHERE major_series = "trans-am" AND city = "grand rapids"###context:CREATE TABLE table_name_38 (state VARCHAR, major_series VARCHAR, city VARCHAR)
###question:Where is the track located that opened in 1992?###answer:SELECT track FROM table_name_34 WHERE opened = "1992"###context:CREATE TABLE table_name_34 (track VARCHAR, opened VARCHAR)
###question:What shows for opened for the Nascar Major Series?###answer:SELECT opened FROM table_name_84 WHERE major_series = "nascar"###context:CREATE TABLE table_name_84 (opened VARCHAR, major_series VARCHAR)
###question:What is the lowest number of FA cups associated with 0 malaysia cups?###answer:SELECT MIN(fa_cup) FROM table_name_69 WHERE malaysia_cup < 0###context:CREATE TABLE table_name_69 (fa_cup INTEGER, malaysia_cup INTEGER)
###question:How many league cups for m patrick maria with 0 total?###answer:SELECT SUM(league) FROM table_name_96 WHERE player = "m patrick maria" AND total < 0###context:CREATE TABLE table_name_96 (league INTEGER, player VARCHAR, total VARCHAR)
###question:What is the highest number of Malaysia Cups for a player with over 0 leagues and under 0 FA cups?###answer:SELECT MAX(malaysia_cup) FROM table_name_16 WHERE league > 0 AND fa_cup < 0###context:CREATE TABLE table_name_16 (malaysia_cup INTEGER, league VARCHAR, fa_cup VARCHAR)
###question:What is the tournament on July 29 hosted by SK Brann?###answer:SELECT tournament FROM table_name_5 WHERE host = "sk brann" AND date = "july 29"###context:CREATE TABLE table_name_5 (tournament VARCHAR, host VARCHAR, date VARCHAR)
###question:Who is the visitor of the match on July 29?###answer:SELECT visitor FROM table_name_13 WHERE date = "july 29"###context:CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR)
###question:What is the game that has the phoenix suns as the opponent played against?###answer:SELECT result FROM table_name_72 WHERE opponent = "phoenix suns"###context:CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR)
###question:What is the attendance of the game on 2007-04-07 with the Warriors as the visitor team?###answer:SELECT attendance FROM table_name_4 WHERE visitor = "warriors" AND date = "2007-04-07"###context:CREATE TABLE table_name_4 (attendance VARCHAR, visitor VARCHAR, date VARCHAR)
###question:What day is their record 13-15?###answer:SELECT date FROM table_name_14 WHERE record = "13-15"###context:CREATE TABLE table_name_14 (date VARCHAR, record VARCHAR)
###question:Who did they play when dickey (0-1) recorded the loss?###answer:SELECT opponent FROM table_name_83 WHERE loss = "dickey (0-1)"###context:CREATE TABLE table_name_83 (opponent VARCHAR, loss VARCHAR)
###question:What is the result of the game of heinz field with a record of 2-5?###answer:SELECT result FROM table_name_14 WHERE game_site = "heinz field" AND record = "2-5"###context:CREATE TABLE table_name_14 (result VARCHAR, game_site VARCHAR, record VARCHAR)
###question:What opponent has a record of 6-9?###answer:SELECT opponent FROM table_name_27 WHERE record = "6-9"###context:CREATE TABLE table_name_27 (opponent VARCHAR, record VARCHAR)
###question:What is the week with a record of 2-1?###answer:SELECT COUNT(week) FROM table_name_56 WHERE record = "2-1"###context:CREATE TABLE table_name_56 (week VARCHAR, record VARCHAR)
###question:What City of license has a Frequency MHz smaller than 95.9 with w223au as the call sign?###answer:SELECT city_of_license FROM table_name_43 WHERE frequency_mhz < 95.9 AND call_sign = "w223au"###context:CREATE TABLE table_name_43 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
###question:What is the Call sign for the ERP W 19?###answer:SELECT call_sign FROM table_name_75 WHERE erp_w = 19###context:CREATE TABLE table_name_75 (call_sign VARCHAR, erp_w VARCHAR)
###question:What FCC info is listed for the ERP W of 2?###answer:SELECT fcc_info FROM table_name_96 WHERE erp_w = 2###context:CREATE TABLE table_name_96 (fcc_info VARCHAR, erp_w VARCHAR)
###question:What Call sign shows an ERP W of 80?###answer:SELECT call_sign FROM table_name_93 WHERE erp_w = 80###context:CREATE TABLE table_name_93 (call_sign VARCHAR, erp_w VARCHAR)
###question:What is the Class for the ERP W of more than 2 and the call sign of w223au?###answer:SELECT class FROM table_name_50 WHERE erp_w > 2 AND call_sign = "w223au"###context:CREATE TABLE table_name_50 (class VARCHAR, erp_w VARCHAR, call_sign VARCHAR)
###question:what team lost on july 30###answer:SELECT loss FROM table_name_23 WHERE date = "july 30"###context:CREATE TABLE table_name_23 (loss VARCHAR, date VARCHAR)
###question:What sport was played on February 25, 2011?###answer:SELECT sport FROM table_name_21 WHERE date = "february 25, 2011"###context:CREATE TABLE table_name_21 (sport VARCHAR, date VARCHAR)
###question:Where was the sport played on September 10, 2010?###answer:SELECT site FROM table_name_55 WHERE date = "september 10, 2010"###context:CREATE TABLE table_name_55 (site VARCHAR, date VARCHAR)
###question:What type of surface was played on when julie halard-decugis was the partner on October 8, 2000?###answer:SELECT surface FROM table_name_88 WHERE partner = "julie halard-decugis" AND date = "october 8, 2000"###context:CREATE TABLE table_name_88 (surface VARCHAR, partner VARCHAR, date VARCHAR)
###question:How many Played has a % Win of 50.00%, and Losses of 1, and Wins smaller than 1?###answer:SELECT COUNT(played) FROM table_name_84 WHERE _percentage_win = "50.00%" AND losses = 1 AND wins < 1###context:CREATE TABLE table_name_84 (played VARCHAR, wins VARCHAR, _percentage_win VARCHAR, losses VARCHAR)
###question:WHAT kind of No Result has Wins smaller than 2, and Losses larger than 1?###answer:SELECT no_result FROM table_name_2 WHERE wins < 2 AND losses > 1###context:CREATE TABLE table_name_2 (no_result VARCHAR, wins VARCHAR, losses VARCHAR)
###question:How many Played that has Losses of 6, and Wins larger than 33?###answer:SELECT AVG(played) FROM table_name_61 WHERE losses = 6 AND wins > 33###context:CREATE TABLE table_name_61 (played INTEGER, losses VARCHAR, wins VARCHAR)
###question:What kind of No Result has a % Win of 100.00% and a Played larger than 4 in 2012?###answer:SELECT MIN(no_result) FROM table_name_50 WHERE _percentage_win = "100.00%" AND played > 4 AND year = "2012"###context:CREATE TABLE table_name_50 (no_result INTEGER, year VARCHAR, _percentage_win VARCHAR, played VARC...
###question:Which Loss has a Score of 6–5?###answer:SELECT loss FROM table_name_20 WHERE score = "6–5"###context:CREATE TABLE table_name_20 (loss VARCHAR, score VARCHAR)
###question:Date of wed. nov. 13 had how many number of games?###answer:SELECT COUNT(game) FROM table_name_1 WHERE date = "wed. nov. 13"###context:CREATE TABLE table_name_1 (game VARCHAR, date VARCHAR)
###question:Record of 6–1 had what score?###answer:SELECT score FROM table_name_16 WHERE record = "6–1"###context:CREATE TABLE table_name_16 (score VARCHAR, record VARCHAR)
###question:Score of 118–114, and a Record of 8–1 is what lowest game?###answer:SELECT MIN(game) FROM table_name_64 WHERE score = "118–114" AND record = "8–1"###context:CREATE TABLE table_name_64 (game INTEGER, score VARCHAR, record VARCHAR)
###question:Which circuit was in Great Britain with Ireland as the winner?###answer:SELECT circuit FROM table_name_85 WHERE feature_winner = "ireland" AND country = "great britain"###context:CREATE TABLE table_name_85 (circuit VARCHAR, feature_winner VARCHAR, country VARCHAR)
###question:How many were in attendance when the league position was 16th and the score was F–A of 0–3?###answer:SELECT COUNT(attendance) FROM table_name_43 WHERE league_position = "16th" AND score_f_a = "0–3"###context:CREATE TABLE table_name_43 (attendance VARCHAR, league_position VARCHAR, score_f_a VARCHAR)
###question:How many were in attendance for a result of D, at H venue, and Arsenal as an opponent?###answer:SELECT attendance FROM table_name_40 WHERE result = "d" AND venue = "h" AND opponents = "arsenal"###context:CREATE TABLE table_name_40 (attendance VARCHAR, opponents VARCHAR, result VARCHAR, venue VARCHAR)
###question:What is the largest number in attendance at H venue opposing Liverpool with a result of D?###answer:SELECT MAX(attendance) FROM table_name_40 WHERE venue = "h" AND result = "d" AND opponents = "liverpool"###context:CREATE TABLE table_name_40 (attendance INTEGER, opponents VARCHAR, venue VARCHAR, result VARC...