combined_text
stringlengths
106
1.05k
###question:What is the total losses for the player with fewer than 51 pens, 3 tries and 45 starts?###answer:SELECT COUNT(lost) FROM table_name_19 WHERE pens < 51 AND tries = 3 AND start = 45###context:CREATE TABLE table_name_19 (lost VARCHAR, start VARCHAR, pens VARCHAR, tries VARCHAR)
###question:What is the average crowd size at glenferrie oval?###answer:SELECT AVG(crowd) FROM table_name_16 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_16 (crowd INTEGER, venue VARCHAR)
###question:What is the away team's score when the away team is geelong?###answer:SELECT away_team AS score FROM table_name_16 WHERE away_team = "geelong"###context:CREATE TABLE table_name_16 (away_team VARCHAR)
###question:What is the largest crowd when melbourne plays at home?###answer:SELECT MAX(crowd) FROM table_name_98 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_98 (crowd INTEGER, home_team VARCHAR)
###question:What was the championship game for the Southwest conference?###answer:SELECT championship_game FROM table_name_63 WHERE conference = "southwest"###context:CREATE TABLE table_name_63 (championship_game VARCHAR, conference VARCHAR)
###question:Which manager has Sol Campbell as captain?###answer:SELECT manager FROM table_name_29 WHERE captain = "sol campbell"###context:CREATE TABLE table_name_29 (manager VARCHAR, captain VARCHAR)
###question:What team does Carlsberg sponsor?###answer:SELECT team FROM table_name_52 WHERE shirt_sponsor = "carlsberg"###context:CREATE TABLE table_name_52 (team VARCHAR, shirt_sponsor VARCHAR)
###question:Who sponsors Middlesbrough?###answer:SELECT shirt_sponsor FROM table_name_74 WHERE team = "middlesbrough"###context:CREATE TABLE table_name_74 (shirt_sponsor VARCHAR, team VARCHAR)
###question:Which sponsor has Mark Hughes as manager?###answer:SELECT shirt_sponsor FROM table_name_23 WHERE manager = "mark hughes"###context:CREATE TABLE table_name_23 (shirt_sponsor VARCHAR, manager VARCHAR)
###question:Which kit maker does Aston Villa use?###answer:SELECT kit_maker FROM table_name_42 WHERE team = "aston villa"###context:CREATE TABLE table_name_42 (kit_maker VARCHAR, team VARCHAR)
###question:Who captains Portsmouth?###answer:SELECT captain FROM table_name_9 WHERE team = "portsmouth"###context:CREATE TABLE table_name_9 (captain VARCHAR, team VARCHAR)
###question:What bombing happened in Brighton, UK?###answer:SELECT event FROM table_name_98 WHERE location = "brighton, uk"###context:CREATE TABLE table_name_98 (event VARCHAR, location VARCHAR)
###question:What result had a score of 3–0?###answer:SELECT result FROM table_name_50 WHERE score = "3–0"###context:CREATE TABLE table_name_50 (result VARCHAR, score VARCHAR)
###question:For the venue of suwon world cup stadium , suwon , south korea and a Score of 3–0 what is the result?###answer:SELECT result FROM table_name_74 WHERE venue = "suwon world cup stadium , suwon , south korea" AND score = "3–0"###context:CREATE TABLE table_name_74 (result VARCHAR, venue VARCHAR, score VARCHAR)
###question:What is the top goal for the result of 2–3?###answer:SELECT MAX(goal) FROM table_name_39 WHERE result = "2–3"###context:CREATE TABLE table_name_39 (goal INTEGER, result VARCHAR)
###question:When was the time of 12:49:08 first set?###answer:SELECT MIN(year) FROM table_name_7 WHERE time = "12:49:08"###context:CREATE TABLE table_name_7 (year INTEGER, time VARCHAR)
###question:What was the date when the attendance was 77,918?###answer:SELECT date FROM table_name_90 WHERE attendance = "77,918"###context:CREATE TABLE table_name_90 (date VARCHAR, attendance VARCHAR)
###question:What was the attendance of the game played in the Georgia Dome?###answer:SELECT attendance FROM table_name_6 WHERE game_site = "georgia dome"###context:CREATE TABLE table_name_6 (attendance VARCHAR, game_site VARCHAR)
###question:What was the date when the attendance was 73,529?###answer:SELECT date FROM table_name_89 WHERE attendance = "73,529"###context:CREATE TABLE table_name_89 (date VARCHAR, attendance VARCHAR)
###question:What away team played at Western Oval?###answer:SELECT away_team FROM table_name_75 WHERE venue = "western oval"###context:CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)
###question:What was the smallest crowd when Footscray played at home?###answer:SELECT MIN(crowd) FROM table_name_95 WHERE home_team = "footscray"###context:CREATE TABLE table_name_95 (crowd INTEGER, home_team VARCHAR)
###question:What was the outcome when she partnered with mashona washington?###answer:SELECT outcome FROM table_name_39 WHERE partner = "mashona washington"###context:CREATE TABLE table_name_39 (outcome VARCHAR, partner VARCHAR)
###question:What is the listed crowd at junction oval?###answer:SELECT crowd FROM table_name_54 WHERE venue = "junction oval"###context:CREATE TABLE table_name_54 (crowd VARCHAR, venue VARCHAR)
###question:What is the sum of crowd(s) when north melbourne is away?###answer:SELECT SUM(crowd) FROM table_name_92 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_92 (crowd INTEGER, away_team VARCHAR)
###question:What day is south melbourne away?###answer:SELECT date FROM table_name_19 WHERE away_team = "south melbourne"###context:CREATE TABLE table_name_19 (date VARCHAR, away_team VARCHAR)
###question:What was the score of the competition on 23 November 2003?###answer:SELECT score FROM table_name_64 WHERE date = "23 november 2003"###context:CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)
###question:Where did Richmond play as an away team?###answer:SELECT venue FROM table_name_70 WHERE away_team = "richmond"###context:CREATE TABLE table_name_70 (venue VARCHAR, away_team VARCHAR)
###question:When did South Melbourne play at home?###answer:SELECT date FROM table_name_3 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_3 (date VARCHAR, home_team VARCHAR)
###question:What is the average election for vicenza province with the liga veneta party?###answer:SELECT AVG(election) FROM table_name_31 WHERE party = "liga veneta" AND province = "vicenza"###context:CREATE TABLE table_name_31 (election INTEGER, party VARCHAR, province VARCHAR)
###question:What is the sum of elections in vicenza?###answer:SELECT SUM(election) FROM table_name_1 WHERE province = "vicenza"###context:CREATE TABLE table_name_1 (election INTEGER, province VARCHAR)
###question:What province has an election after 2009?###answer:SELECT province FROM table_name_55 WHERE election > 2009###context:CREATE TABLE table_name_55 (province VARCHAR, election INTEGER)
###question:What format does Japan use?###answer:SELECT format FROM table_name_34 WHERE country = "japan"###context:CREATE TABLE table_name_34 (format VARCHAR, country VARCHAR)
###question:What date has a catalogue of 540 3622?###answer:SELECT date FROM table_name_82 WHERE catalogue = "540 3622"###context:CREATE TABLE table_name_82 (date VARCHAR, catalogue VARCHAR)
###question:What format has a catalogue of asw 40362?###answer:SELECT format FROM table_name_81 WHERE catalogue = "asw 40362"###context:CREATE TABLE table_name_81 (format VARCHAR, catalogue VARCHAR)
###question:What date has a catalogue of asw 40362?###answer:SELECT date FROM table_name_90 WHERE catalogue = "asw 40362"###context:CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR)
###question:On what Date is the Crowd larger than 17,000?###answer:SELECT date FROM table_name_8 WHERE crowd > 17 OFFSET 000###context:CREATE TABLE table_name_8 (date VARCHAR, crowd INTEGER)
###question:Which Away team has the Home team of Carlton?###answer:SELECT away_team FROM table_name_2 WHERE home_team = "carlton"###context:CREATE TABLE table_name_2 (away_team VARCHAR, home_team VARCHAR)
###question:What was the score of the Jeff Tarango game?###answer:SELECT score FROM table_name_12 WHERE partner = "jeff tarango"###context:CREATE TABLE table_name_12 (score VARCHAR, partner VARCHAR)
###question:Where did Collingwood play ae the away team?###answer:SELECT venue FROM table_name_57 WHERE away_team = "collingwood"###context:CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)
###question:What was the score when there was more than 27,000 in attendance?###answer:SELECT home_team AS score FROM table_name_73 WHERE crowd > 27 OFFSET 000###context:CREATE TABLE table_name_73 (home_team VARCHAR, crowd INTEGER)
###question:Where did Hawthorn play as the home team?###answer:SELECT venue FROM table_name_41 WHERE home_team = "hawthorn"###context:CREATE TABLE table_name_41 (venue VARCHAR, home_team VARCHAR)
###question:In 1990-2005 what is the lowest Start with Convs smaller than 2?###answer:SELECT MIN(start) FROM table_name_93 WHERE span = "1990-2005" AND conv < 2###context:CREATE TABLE table_name_93 (start INTEGER, span VARCHAR, conv VARCHAR)
###question:What is the total of the crowd when the home team is footscray?###answer:SELECT COUNT(crowd) FROM table_name_60 WHERE home_team = "footscray"###context:CREATE TABLE table_name_60 (crowd VARCHAR, home_team VARCHAR)
###question:What is the away team score when the away team is Essendon?###answer:SELECT away_team AS score FROM table_name_16 WHERE away_team = "essendon"###context:CREATE TABLE table_name_16 (away_team VARCHAR)
###question:How many weeks ended in a result of L 20-10?###answer:SELECT COUNT(week) FROM table_name_85 WHERE result = "l 20-10"###context:CREATE TABLE table_name_85 (week VARCHAR, result VARCHAR)
###question:What was the attendance in week 6?###answer:SELECT attendance FROM table_name_13 WHERE week = 6###context:CREATE TABLE table_name_13 (attendance VARCHAR, week VARCHAR)
###question:Who was the opponent in the game that had an attendance of 60,066?###answer:SELECT opponent FROM table_name_30 WHERE attendance = "60,066"###context:CREATE TABLE table_name_30 (opponent VARCHAR, attendance VARCHAR)
###question:What is the designation of material or non-material for either positional or automatic with no rectified count and either opponent?###answer:SELECT material_or_non_material FROM table_name_36 WHERE positional_or_automatic = "either" AND count_rectified = "no" AND opponents = "either"###context:CREATE TABLE ...
###question:What is the value for positional opponents with no material or non-material, and 3 suits?###answer:SELECT opponents FROM table_name_92 WHERE positional_or_automatic = "positional" AND material_or_non_material = "no" AND suits = "3"###context:CREATE TABLE table_name_92 (opponents VARCHAR, suits VARCHAR, posi...
###question:Is it material or non-material when there are 2 suits for either opponent?###answer:SELECT material_or_non_material FROM table_name_63 WHERE suits = "2" AND opponents = "either"###context:CREATE TABLE table_name_63 (material_or_non_material VARCHAR, suits VARCHAR, opponents VARCHAR)
###question:Is the count rectified for single opponents, either positional or automatic, and no material or non-material?###answer:SELECT count_rectified FROM table_name_78 WHERE opponents = "single" AND positional_or_automatic = "either" AND material_or_non_material = "no"###context:CREATE TABLE table_name_78 (count_r...
###question:How many points did Happy Valley score before game 14?###answer:SELECT COUNT(point) FROM table_name_89 WHERE team = "happy valley" AND game < 14###context:CREATE TABLE table_name_89 (point VARCHAR, team VARCHAR, game VARCHAR)
###question:How many draws did the game after game 14 with goal gain 17 have?###answer:SELECT MAX(draw) FROM table_name_45 WHERE goal_gain = 17 AND game > 14###context:CREATE TABLE table_name_45 (draw INTEGER, goal_gain VARCHAR, game VARCHAR)
###question:How many total draws were there with a less than 8 loss, more than 30 points, and a goal diff larger than 26?###answer:SELECT COUNT(draw) FROM table_name_21 WHERE loss < 8 AND point > 30 AND goal_diff > 26###context:CREATE TABLE table_name_21 (draw VARCHAR, goal_diff VARCHAR, loss VARCHAR, point VARCHAR)
###question:What is the highest loss before game 14?###answer:SELECT MAX(loss) FROM table_name_31 WHERE game < 14###context:CREATE TABLE table_name_31 (loss INTEGER, game INTEGER)
###question:How many average points did the player with a time/retired of +16.789 and have more laps than 68 have?###answer:SELECT AVG(points) FROM table_name_8 WHERE time_retired = "+16.789" AND laps > 68###context:CREATE TABLE table_name_8 (points INTEGER, time_retired VARCHAR, laps VARCHAR)
###question:How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68?###answer:SELECT AVG(points) FROM table_name_21 WHERE team = "minardi team usa" AND grid = 3 AND laps > 68###context:CREATE TABLE table_name_21 (points INTEGER, laps VARCHAR, team VARCHAR, grid VARCHAR)
###question:Which was the highest crowd drawn by an Away team in Richmond?###answer:SELECT MAX(crowd) FROM table_name_6 WHERE away_team = "richmond"###context:CREATE TABLE table_name_6 (crowd INTEGER, away_team VARCHAR)
###question:Which home team has a venue of Arden Street Oval?###answer:SELECT home_team FROM table_name_94 WHERE venue = "arden street oval"###context:CREATE TABLE table_name_94 (home_team VARCHAR, venue VARCHAR)
###question:Which away team has a venue of Arden Street Oval?###answer:SELECT away_team FROM table_name_76 WHERE venue = "arden street oval"###context:CREATE TABLE table_name_76 (away_team VARCHAR, venue VARCHAR)
###question:What is the value for 2011 corresponding to a 2007 value of 1r?###answer:SELECT 2011 FROM table_name_32 WHERE 2007 = "1r"###context:CREATE TABLE table_name_32 (Id VARCHAR)
###question:What value in 2013 corresponds to Grand Slam Tournaments in 2012?###answer:SELECT 2013 FROM table_name_38 WHERE 2012 = "grand slam tournaments"###context:CREATE TABLE table_name_38 (Id VARCHAR)
###question:What is the 2012 value when the 2011 and 2007 values are 1R?###answer:SELECT 2012 FROM table_name_28 WHERE 2011 = "1r" AND 2007 = "1r"###context:CREATE TABLE table_name_28 (Id VARCHAR)
###question:What value for 2013 corresponds to the US Open Tournament?###answer:SELECT 2013 FROM table_name_55 WHERE tournament = "us open"###context:CREATE TABLE table_name_55 (tournament VARCHAR)
###question:The school nicknamed the wildcats has what sum of enrollment?###answer:SELECT SUM(enrollment) FROM table_name_5 WHERE team_nickname = "wildcats"###context:CREATE TABLE table_name_5 (enrollment INTEGER, team_nickname VARCHAR)
###question:What is the Founded year of the school located in Paul Smiths, New York?###answer:SELECT founded FROM table_name_99 WHERE location = "paul smiths, new york"###context:CREATE TABLE table_name_99 (founded VARCHAR, location VARCHAR)
###question:What was fitzroy's away side score?###answer:SELECT away_team AS score FROM table_name_59 WHERE away_team = "fitzroy"###context:CREATE TABLE table_name_59 (away_team VARCHAR)
###question:What player attended UAB college?###answer:SELECT player FROM table_name_53 WHERE college = "uab"###context:CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)
###question:What was the score of the game at RIch Stadium?###answer:SELECT result FROM table_name_14 WHERE stadium = "rich stadium"###context:CREATE TABLE table_name_14 (result VARCHAR, stadium VARCHAR)
###question:Who had the best time of 1:32.269?###answer:SELECT name FROM table_name_21 WHERE best = "1:32.269"###context:CREATE TABLE table_name_21 (name VARCHAR, best VARCHAR)
###question:Who from Conquest Racing had the best time of 1:34.748 in Qual 1?###answer:SELECT best FROM table_name_4 WHERE team = "conquest racing" AND qual_1 = "1:34.748"###context:CREATE TABLE table_name_4 (best VARCHAR, team VARCHAR, qual_1 VARCHAR)
###question:Who in Qual 2 had the best time of 1:31.327?###answer:SELECT qual_2 FROM table_name_5 WHERE best = "1:31.327"###context:CREATE TABLE table_name_5 (qual_2 VARCHAR, best VARCHAR)
###question:What was Dan Selznick best time?###answer:SELECT best FROM table_name_63 WHERE name = "dan selznick"###context:CREATE TABLE table_name_63 (best VARCHAR, name VARCHAR)
###question:What team had 1:34.578 in Qual 2?###answer:SELECT team FROM table_name_55 WHERE qual_2 = "1:34.578"###context:CREATE TABLE table_name_55 (team VARCHAR, qual_2 VARCHAR)
###question:Jiang Tengyi is on which team?###answer:SELECT team FROM table_name_87 WHERE name = "jiang tengyi"###context:CREATE TABLE table_name_87 (team VARCHAR, name VARCHAR)
###question:What is the away team's score when footscray is the away team?###answer:SELECT away_team AS score FROM table_name_74 WHERE away_team = "footscray"###context:CREATE TABLE table_name_74 (away_team VARCHAR)
###question:What was the rank for czechoslovakia with 1 bronze?###answer:SELECT rank FROM table_name_42 WHERE bronze = 1 AND nation = "czechoslovakia"###context:CREATE TABLE table_name_42 (rank VARCHAR, bronze VARCHAR, nation VARCHAR)
###question:How many bronze medals for the nation with over 9 golds?###answer:SELECT COUNT(bronze) FROM table_name_8 WHERE gold > 9###context:CREATE TABLE table_name_8 (bronze VARCHAR, gold INTEGER)
###question:What is the average number of goals that occurred in Hong Kong Stadium, Hong Kong?###answer:SELECT AVG(goals) FROM table_name_53 WHERE venue = "hong kong stadium, hong kong"###context:CREATE TABLE table_name_53 (goals INTEGER, venue VARCHAR)
###question:Which country uses pound sterling with a value higher than 1.33 USD?###answer:SELECT country FROM table_name_66 WHERE value_in_usd > 1.33 AND currency = "pound sterling"###context:CREATE TABLE table_name_66 (country VARCHAR, value_in_usd VARCHAR, currency VARCHAR)
###question:What venue features carlton at home?###answer:SELECT venue FROM table_name_88 WHERE home_team = "carlton"###context:CREATE TABLE table_name_88 (venue VARCHAR, home_team VARCHAR)
###question:What venue features fitzroy as the away side?###answer:SELECT venue FROM table_name_66 WHERE away_team = "fitzroy"###context:CREATE TABLE table_name_66 (venue VARCHAR, away_team VARCHAR)
###question:What was the smallest crowd that Melbourne played for at home?###answer:SELECT MIN(crowd) FROM table_name_18 WHERE home_team = "melbourne"###context:CREATE TABLE table_name_18 (crowd INTEGER, home_team VARCHAR)
###question:What home team played the away team of Richmond?###answer:SELECT home_team FROM table_name_75 WHERE away_team = "richmond"###context:CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)
###question:What is the high score for the player with 0 stumps, 4 catches, more than 14 inns and an average smaller than 56.1?###answer:SELECT SUM(high_score) FROM table_name_52 WHERE stump = 0 AND catches = 4 AND average < 56.1 AND inns > 14###context:CREATE TABLE table_name_52 (high_score INTEGER, inns VARCHAR, aver...
###question:What is the total number of runs for the player with fewer than 9 Inns?###answer:SELECT COUNT(runs) FROM table_name_82 WHERE inns < 9###context:CREATE TABLE table_name_82 (runs VARCHAR, inns INTEGER)
###question:What is the smallest average for the player with 13 matches and fewer than 7 catches?###answer:SELECT MIN(average) FROM table_name_82 WHERE matches = 13 AND catches < 7###context:CREATE TABLE table_name_82 (average INTEGER, matches VARCHAR, catches VARCHAR)
###question:Which city is the host of the University of Texas?###answer:SELECT city FROM table_name_1 WHERE host = "university of texas"###context:CREATE TABLE table_name_1 (city VARCHAR, host VARCHAR)
###question:In which region is the Thompson-Boling arena located?###answer:SELECT region FROM table_name_16 WHERE venue = "thompson-boling arena"###context:CREATE TABLE table_name_16 (region VARCHAR, venue VARCHAR)
###question:Who is the host in the city of Philadelphia?###answer:SELECT host FROM table_name_61 WHERE city = "philadelphia"###context:CREATE TABLE table_name_61 (host VARCHAR, city VARCHAR)
###question:Which city in the mideast region is the hot of Temple University?###answer:SELECT city FROM table_name_39 WHERE region = "mideast" AND host = "temple university"###context:CREATE TABLE table_name_39 (city VARCHAR, region VARCHAR, host VARCHAR)
###question:Which city is the University of Montana located in?###answer:SELECT city FROM table_name_80 WHERE host = "university of montana"###context:CREATE TABLE table_name_80 (city VARCHAR, host VARCHAR)
###question:What was the away team score at Hawthorn?###answer:SELECT away_team AS score FROM table_name_26 WHERE home_team = "hawthorn"###context:CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR)
###question:Who went to Geelong to play?###answer:SELECT away_team FROM table_name_61 WHERE home_team = "geelong"###context:CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR)
###question:Who did Collingwood play at home?###answer:SELECT home_team FROM table_name_89 WHERE away_team = "collingwood"###context:CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)
###question:Which population is the greatest, has a density of 20.3, and an area (km²) larger than 50,350?###answer:SELECT MAX(population) FROM table_name_1 WHERE density = 20.3 AND area__km²_ > 50 OFFSET 350###context:CREATE TABLE table_name_1 (population INTEGER, density VARCHAR, area__km²_ VARCHAR)
###question:Who was the home team at the game held at the Junction Oval?###answer:SELECT home_team FROM table_name_73 WHERE venue = "junction oval"###context:CREATE TABLE table_name_73 (home_team VARCHAR, venue VARCHAR)
###question:Where was the game held when Fitzroy was the away team?###answer:SELECT venue FROM table_name_24 WHERE away_team = "fitzroy"###context:CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR)
###question:How many people attended the Rams game against the Kansas City Chiefs?###answer:SELECT attendance FROM table_name_86 WHERE opponent = "kansas city chiefs"###context:CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR)
###question:What is China's IATA?###answer:SELECT iata FROM table_name_58 WHERE country = "china"###context:CREATE TABLE table_name_58 (iata VARCHAR, country VARCHAR)