combined_text
stringlengths
106
1.05k
###question:In 1975, what was the final round?###answer:SELECT final_round FROM table_name_1 WHERE year = "1975"###context:CREATE TABLE table_name_1 (final_round VARCHAR, year VARCHAR)
###question:Where did someone run a 61:32###answer:SELECT event_place FROM table_name_61 WHERE time = "61:32"###context:CREATE TABLE table_name_61 (event_place VARCHAR, time VARCHAR)
###question:What was Derek Graham's time?###answer:SELECT time FROM table_name_95 WHERE name = "derek graham"###context:CREATE TABLE table_name_95 (time VARCHAR, name VARCHAR)
###question:Where did someone run a 58:33?###answer:SELECT event_place FROM table_name_25 WHERE time = "58:33"###context:CREATE TABLE table_name_25 (event_place VARCHAR, time VARCHAR)
###question:Tell me the player for pick number less than 29 and mls team of chicago fire###answer:SELECT player FROM table_name_97 WHERE pick__number < 29 AND mls_team = "chicago fire"###context:CREATE TABLE table_name_97 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR)
###question:Tell me the opponents for partner of yvonne meusburger###answer:SELECT opponents FROM table_name_21 WHERE partner = "yvonne meusburger"###context:CREATE TABLE table_name_21 (opponents VARCHAR, partner VARCHAR)
###question:Tell me the date for opponents of raffaella bindi biljana pawlowa-dimitrova###answer:SELECT date FROM table_name_46 WHERE opponents = "raffaella bindi biljana pawlowa-dimitrova"###context:CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR)
###question:Tell me the highest time for heat rank of 8 and lane more than 2###answer:SELECT MAX(time) FROM table_name_48 WHERE heat_rank = 8 AND lane > 2###context:CREATE TABLE table_name_48 (time INTEGER, heat_rank VARCHAR, lane VARCHAR)
###question:Tell me the least time for apostolos tsagkarakis for lane less than 6###answer:SELECT MIN(time) FROM table_name_63 WHERE swimmer = "apostolos tsagkarakis" AND lane < 6###context:CREATE TABLE table_name_63 (time INTEGER, swimmer VARCHAR, lane VARCHAR)
###question:Tell me the method for pride 33###answer:SELECT method FROM table_name_28 WHERE event = "pride 33"###context:CREATE TABLE table_name_28 (method VARCHAR, event VARCHAR)
###question:Tell me the lowest round for total combat 15###answer:SELECT MIN(round) FROM table_name_97 WHERE event = "total combat 15"###context:CREATE TABLE table_name_97 (round INTEGER, event VARCHAR)
###question:Tell me the week for pittsburgh steelers opponent###answer:SELECT week FROM table_name_34 WHERE opponent = "pittsburgh steelers"###context:CREATE TABLE table_name_34 (week VARCHAR, opponent VARCHAR)
###question:Tell me the week for record of 0-1###answer:SELECT week FROM table_name_19 WHERE record = "0-1"###context:CREATE TABLE table_name_19 (week VARCHAR, record VARCHAR)
###question:Tell me the time for buffalo bills###answer:SELECT time FROM table_name_9 WHERE opponent = "buffalo bills"###context:CREATE TABLE table_name_9 (time VARCHAR, opponent VARCHAR)
###question:Tell me thee record for week of hf###answer:SELECT record FROM table_name_87 WHERE week = "hf"###context:CREATE TABLE table_name_87 (record VARCHAR, week VARCHAR)
###question:Tell me the game site for week of 1###answer:SELECT game_site FROM table_name_98 WHERE week = "1"###context:CREATE TABLE table_name_98 (game_site VARCHAR, week VARCHAR)
###question:What was the result of the 1990 world cup qualifying competition?###answer:SELECT result FROM table_name_55 WHERE competition = "1990 world cup qualifying"###context:CREATE TABLE table_name_55 (result VARCHAR, competition VARCHAR)
###question:What was the Score of the match in Torrance, California?###answer:SELECT score FROM table_name_92 WHERE venue = "torrance, california"###context:CREATE TABLE table_name_92 (score VARCHAR, venue VARCHAR)
###question:Tell me the score for international friendly 17 august 2013###answer:SELECT score FROM table_name_70 WHERE type = "international friendly" AND date = "17 august 2013"###context:CREATE TABLE table_name_70 (score VARCHAR, type VARCHAR, date VARCHAR)
###question:What position did the MLS team metrostars pick?###answer:SELECT position FROM table_name_84 WHERE mls_team = "metrostars"###context:CREATE TABLE table_name_84 (position VARCHAR, mls_team VARCHAR)
###question:What MLS team is affiliated with yale university?###answer:SELECT mls_team FROM table_name_97 WHERE affiliation = "yale university"###context:CREATE TABLE table_name_97 (mls_team VARCHAR, affiliation VARCHAR)
###question:What affiliations have Pick #s under 32?###answer:SELECT affiliation FROM table_name_28 WHERE pick__number < 32###context:CREATE TABLE table_name_28 (affiliation VARCHAR, pick__number INTEGER)
###question:What players have a position of F?###answer:SELECT player FROM table_name_2 WHERE position = "f"###context:CREATE TABLE table_name_2 (player VARCHAR, position VARCHAR)
###question:How many goals were scored when there were 73 caps?###answer:SELECT goals FROM table_name_63 WHERE caps = "73"###context:CREATE TABLE table_name_63 (goals VARCHAR, caps VARCHAR)
###question:Tell me the build year for total production of 150###answer:SELECT build_year FROM table_name_44 WHERE total_production = 150###context:CREATE TABLE table_name_44 (build_year VARCHAR, total_production VARCHAR)
###question:Tell me the power output for total production of 100###answer:SELECT power_output_(kw) FROM table_name_38 WHERE total_production = 100###context:CREATE TABLE table_name_38 (power_output_(kw) VARCHAR, total_production VARCHAR)
###question:Name the total production for model nd5###answer:SELECT total_production FROM table_name_72 WHERE model = "nd5"###context:CREATE TABLE table_name_72 (total_production VARCHAR, model VARCHAR)
###question:What is the nationality of the player who played guard in 2006?###answer:SELECT nationality FROM table_name_85 WHERE position_s_ = "guard" AND season_s_ = "2006"###context:CREATE TABLE table_name_85 (nationality VARCHAR, position_s_ VARCHAR, season_s_ VARCHAR)
###question:Tell me the sum of bp 2nd comp with bp azeo of 57.5###answer:SELECT SUM(bp_2nd_comp__) AS ˚c_ FROM table_name_33 WHERE bp_azeo__˚c_ = 57.5###context:CREATE TABLE table_name_33 (bp_2nd_comp__ INTEGER, bp_azeo__˚c_ VARCHAR)
###question:Which rider went 18 laps ending +25.165 behind the leader?###answer:SELECT rider FROM table_name_24 WHERE laps = 18 AND time = "+25.165"###context:CREATE TABLE table_name_24 (rider VARCHAR, laps VARCHAR, time VARCHAR)
###question:What is the result for a year later than 2002?###answer:SELECT result FROM table_name_1 WHERE year > 2002###context:CREATE TABLE table_name_1 (result VARCHAR, year INTEGER)
###question:What is the result for the year 1999?###answer:SELECT result FROM table_name_56 WHERE year = 1999###context:CREATE TABLE table_name_56 (result VARCHAR, year VARCHAR)
###question:Tell me the engine for dhg tom's racing###answer:SELECT engine FROM table_name_88 WHERE team = "dhg tom's racing"###context:CREATE TABLE table_name_88 (engine VARCHAR, team VARCHAR)
###question:Name the team for toshihiro kaneishi###answer:SELECT team FROM table_name_21 WHERE driver = "toshihiro kaneishi"###context:CREATE TABLE table_name_21 (team VARCHAR, driver VARCHAR)
###question:I want the average year of 敗犬女王###answer:SELECT AVG(year) FROM table_name_14 WHERE chinese_title = "敗犬女王"###context:CREATE TABLE table_name_14 (year INTEGER, chinese_title VARCHAR)
###question:Tell me the role for 2005###answer:SELECT role FROM table_name_38 WHERE year = 2005###context:CREATE TABLE table_name_38 (role VARCHAR, year VARCHAR)
###question:Tell me the average year for my queen###answer:SELECT AVG(year) FROM table_name_65 WHERE english_title = "my queen"###context:CREATE TABLE table_name_65 (year INTEGER, english_title VARCHAR)
###question:Tell me singles W-L that has years larger than 1 and highest singles ranking of 1346###answer:SELECT singles_w_l FROM table_name_7 WHERE years_played > 1 AND highest_singles_ranking = "1346"###context:CREATE TABLE table_name_7 (singles_w_l VARCHAR, years_played VARCHAR, highest_singles_ranking VARCHAR)
###question:When the Top 10s is larger than 0 and the scoring average 73.04, what is the best finish?###answer:SELECT best_finish FROM table_name_10 WHERE top_10s > 0 AND scoring_average = 73.04###context:CREATE TABLE table_name_10 (best_finish VARCHAR, top_10s VARCHAR, scoring_average VARCHAR)
###question:Tell me the score of praterstadion, vienna, and competition of euro 1980 qualifier###answer:SELECT result FROM table_name_54 WHERE venue = "praterstadion, vienna" AND competition = "euro 1980 qualifier"###context:CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR, competition VARCHAR)
###question:I want the score for 28 march 1979###answer:SELECT score FROM table_name_37 WHERE date = "28 march 1979"###context:CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)
###question:I want the score for 30 april 1977###answer:SELECT score FROM table_name_72 WHERE date = "30 april 1977"###context:CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)
###question:What competition was the World Championships before 2011?###answer:SELECT event FROM table_name_38 WHERE competition = "world championships" AND year < 2011###context:CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR)
###question:What event took place in Erfurt, Germany?###answer:SELECT event FROM table_name_56 WHERE venue = "erfurt, germany"###context:CREATE TABLE table_name_56 (event VARCHAR, venue VARCHAR)
###question:Name the team nickname for enrollment more than 42,326###answer:SELECT team_nickname FROM table_name_21 WHERE enrollment > 42 OFFSET 326###context:CREATE TABLE table_name_21 (team_nickname VARCHAR, enrollment INTEGER)
###question:With the lost of 3, how many points?###answer:SELECT points_against FROM table_name_9 WHERE lost = "3"###context:CREATE TABLE table_name_9 (points_against VARCHAR, lost VARCHAR)
###question:How many against points for 16 matches?###answer:SELECT points_against FROM table_name_38 WHERE matches = "16"###context:CREATE TABLE table_name_38 (points_against VARCHAR, matches VARCHAR)
###question:The 51 points against, how many are for?###answer:SELECT points_for FROM table_name_36 WHERE points_against = "51"###context:CREATE TABLE table_name_36 (points_for VARCHAR, points_against VARCHAR)
###question:For the played in, what are the total points?###answer:SELECT points_for FROM table_name_36 WHERE played_in = "total"###context:CREATE TABLE table_name_36 (points_for VARCHAR, played_in VARCHAR)
###question:What country is the Eurasia Astana team from?###answer:SELECT country FROM table_name_69 WHERE team = "eurasia astana"###context:CREATE TABLE table_name_69 (country VARCHAR, team VARCHAR)
###question:Tell me the 2008 for 2012 of 4r and 2009 of a###answer:SELECT 2008 FROM table_name_38 WHERE 2012 = "4r" AND 2009 = "a"###context:CREATE TABLE table_name_38 (Id VARCHAR)
###question:Tell me the 2008 of 2001 olympic games###answer:SELECT 2008 FROM table_name_69 WHERE 2011 = "olympic games"###context:CREATE TABLE table_name_69 (Id VARCHAR)
###question:Tell me the tournament of 2009 of atp masters series###answer:SELECT tournament FROM table_name_26 WHERE 2009 = "atp masters series"###context:CREATE TABLE table_name_26 (tournament VARCHAR)
###question:Tell me the 2011 tournament of monte carlo masters###answer:SELECT 2011 FROM table_name_73 WHERE tournament = "monte carlo masters"###context:CREATE TABLE table_name_73 (tournament VARCHAR)
###question:Tell me the 2011 with 2012 of 2r###answer:SELECT 2011 FROM table_name_40 WHERE 2012 = "2r" AND 2010 = "2r" AND 2009 = "2r"###context:CREATE TABLE table_name_40 (Id VARCHAR)
###question:What was the latest round with a running back from a California college?###answer:SELECT MAX(round) FROM table_name_55 WHERE position = "running back" AND college = "california"###context:CREATE TABLE table_name_55 (round INTEGER, position VARCHAR, college VARCHAR)
###question:What were the results for november 25, 1973?###answer:SELECT result FROM table_name_36 WHERE date = "november 25, 1973"###context:CREATE TABLE table_name_36 (result VARCHAR, date VARCHAR)
###question:Which Opponent had a week of 14?###answer:SELECT opponent FROM table_name_60 WHERE week = 14###context:CREATE TABLE table_name_60 (opponent VARCHAR, week VARCHAR)
###question:Tell me the date for new orleans saints###answer:SELECT date FROM table_name_22 WHERE opponent = "new orleans saints"###context:CREATE TABLE table_name_22 (date VARCHAR, opponent VARCHAR)
###question:Tell me the result for week of 4###answer:SELECT result FROM table_name_46 WHERE week = 4###context:CREATE TABLE table_name_46 (result VARCHAR, week VARCHAR)
###question:Tell me the lowest week for w 10-3###answer:SELECT MIN(week) FROM table_name_50 WHERE result = "w 10-3"###context:CREATE TABLE table_name_50 (week INTEGER, result VARCHAR)
###question:Tell me the average heat rank with a lane of 2 and time less than 27.66###answer:SELECT AVG(heat_rank) FROM table_name_48 WHERE lane = 2 AND time < 27.66###context:CREATE TABLE table_name_48 (heat_rank INTEGER, lane VARCHAR, time VARCHAR)
###question:Tell me the highest overall rank for lane less than 8 and time less than 27.16###answer:SELECT MAX(overall_rank) FROM table_name_37 WHERE lane < 8 AND time < 27.16###context:CREATE TABLE table_name_37 (overall_rank INTEGER, lane VARCHAR, time VARCHAR)
###question:Tell me the total number of time for luke hall overall rank being larger than 105###answer:SELECT COUNT(time) FROM table_name_68 WHERE swimmer = "luke hall" AND overall_rank > 105###context:CREATE TABLE table_name_68 (time VARCHAR, swimmer VARCHAR, overall_rank VARCHAR)
###question:Tell me the left team for josh vanlandingham###answer:SELECT left_team FROM table_name_60 WHERE name = "josh vanlandingham"###context:CREATE TABLE table_name_60 (left_team VARCHAR, name VARCHAR)
###question:Who had less than 7 goals, was ranked under 7, and had more than 8 appearances?###answer:SELECT name FROM table_name_86 WHERE goals < 7 AND rank < 7 AND appearances > 8###context:CREATE TABLE table_name_86 (name VARCHAR, appearances VARCHAR, goals VARCHAR, rank VARCHAR)
###question:What was the sum of ranks of those called Fernando Cavenaghi who appeared less than 7.###answer:SELECT SUM(rank) FROM table_name_5 WHERE name = "fernando cavenaghi" AND appearances < 7###context:CREATE TABLE table_name_5 (rank INTEGER, name VARCHAR, appearances VARCHAR)
###question:How many appearances were made by people that had 5 goals and less than 7 rank?###answer:SELECT COUNT(appearances) FROM table_name_95 WHERE goals = 5 AND rank < 7###context:CREATE TABLE table_name_95 (appearances VARCHAR, goals VARCHAR, rank VARCHAR)
###question:What was the surface for the game that had a partner of vania king?###answer:SELECT surface FROM table_name_85 WHERE partner = "vania king"###context:CREATE TABLE table_name_85 (surface VARCHAR, partner VARCHAR)
###question:Who was the partner for the game on October 20, 2013?###answer:SELECT partner FROM table_name_80 WHERE date = "october 20, 2013"###context:CREATE TABLE table_name_80 (partner VARCHAR, date VARCHAR)
###question:Tell me the name for round of e###answer:SELECT name FROM table_name_29 WHERE round = "e"###context:CREATE TABLE table_name_29 (name VARCHAR, round VARCHAR)
###question:Name the team one for preliminary final###answer:SELECT team_1 FROM table_name_74 WHERE name = "preliminary final"###context:CREATE TABLE table_name_74 (team_1 VARCHAR, name VARCHAR)
###question:Name the team 1 for round 3###answer:SELECT team_1 FROM table_name_64 WHERE round = "3"###context:CREATE TABLE table_name_64 (team_1 VARCHAR, round VARCHAR)
###question:Name the round for 2nd elimination final###answer:SELECT round FROM table_name_36 WHERE match = "2nd elimination final"###context:CREATE TABLE table_name_36 (round VARCHAR, match VARCHAR)
###question:In less than 58 laps, what is the highest grid for Alexander Wurz?###answer:SELECT MAX(grid) FROM table_name_32 WHERE driver = "alexander wurz" AND laps < 58###context:CREATE TABLE table_name_32 (grid INTEGER, driver VARCHAR, laps VARCHAR)
###question:What is the total laps for grid 19?###answer:SELECT COUNT(laps) FROM table_name_24 WHERE grid = 19###context:CREATE TABLE table_name_24 (laps VARCHAR, grid VARCHAR)
###question:Name the winning driver for mobilecast impul and twin ring motegi###answer:SELECT winning_driver FROM table_name_98 WHERE winning_team = "mobilecast impul" AND circuit = "twin ring motegi"###context:CREATE TABLE table_name_98 (winning_driver VARCHAR, winning_team VARCHAR, circuit VARCHAR)
###question:Name the winning driver for round 7###answer:SELECT winning_driver FROM table_name_24 WHERE round = 7###context:CREATE TABLE table_name_24 (winning_driver VARCHAR, round VARCHAR)
###question:Name the number of total for 3 gold and rank less than 3###answer:SELECT COUNT(total) FROM table_name_25 WHERE gold = 3 AND rank < 3###context:CREATE TABLE table_name_25 (total VARCHAR, gold VARCHAR, rank VARCHAR)
###question:Tell me the naame of Investigation of thrombus imaging###answer:SELECT name FROM table_name_19 WHERE investigation = "thrombus imaging"###context:CREATE TABLE table_name_19 (name VARCHAR, investigation VARCHAR)
###question:Tell me the name for Investigation of thrombus imaging and Route of administration of iv###answer:SELECT name FROM table_name_68 WHERE route_of_administration = "iv" AND investigation = "thrombus imaging"###context:CREATE TABLE table_name_68 (name VARCHAR, route_of_administration VARCHAR, investigation VARC...
###question:Tell me the in-vitro for Route of administration of iv and Investigation of somatostatin receptor imaging###answer:SELECT in_vitro___in_vivo FROM table_name_96 WHERE route_of_administration = "iv" AND investigation = "somatostatin receptor imaging"###context:CREATE TABLE table_name_96 (in_vitro___in_vivo VA...
###question:The player is Tim Regan and the pick # is position of d, what's the sum?###answer:SELECT SUM(pick__number) FROM table_name_37 WHERE position = "d" AND player = "tim regan"###context:CREATE TABLE table_name_37 (pick__number INTEGER, position VARCHAR, player VARCHAR)
###question:The position that has a pick # of 16 is what?###answer:SELECT position FROM table_name_66 WHERE pick__number = 16###context:CREATE TABLE table_name_66 (position VARCHAR, pick__number VARCHAR)
###question:Damani Ralph is associated with which lowest pick #?###answer:SELECT MIN(pick__number) FROM table_name_39 WHERE player = "damani ralph"###context:CREATE TABLE table_name_39 (pick__number INTEGER, player VARCHAR)
###question:Chicago fire has a total of a total of how many #s?###answer:SELECT COUNT(pick__number) FROM table_name_5 WHERE mls_team = "chicago fire"###context:CREATE TABLE table_name_5 (pick__number VARCHAR, mls_team VARCHAR)
###question:Tell me the score for score in legs and year less than 2012###answer:SELECT score__l__ = _score_in_legs, __s__ = _score_in_sets FROM table_name_51 WHERE year < 2012###context:CREATE TABLE table_name_51 (score__l__ VARCHAR, _score_in_legs VARCHAR, __s__ VARCHAR, _score_in_sets VARCHAR, year INTEGER)
###question:Tell me the championship for runner-up outcome of 2010###answer:SELECT championship FROM table_name_30 WHERE outcome = "runner-up" AND year = 2010###context:CREATE TABLE table_name_30 (championship VARCHAR, outcome VARCHAR, year VARCHAR)
###question:Tell me the outcome for premier league darts###answer:SELECT outcome FROM table_name_12 WHERE championship = "premier league darts"###context:CREATE TABLE table_name_12 (outcome VARCHAR, championship VARCHAR)
###question:Tell me the sum of Year for outcome of runner-up for world darts championship###answer:SELECT SUM(year) FROM table_name_41 WHERE outcome = "runner-up" AND championship = "world darts championship"###context:CREATE TABLE table_name_41 (year INTEGER, outcome VARCHAR, championship VARCHAR)
###question:In 2007, how many points were won when more than 5 matches were played?###answer:SELECT COUNT(points_won) FROM table_name_74 WHERE year = "2007" AND total_matches > 5###context:CREATE TABLE table_name_74 (points_won VARCHAR, year VARCHAR, total_matches VARCHAR)
###question:In 2007, what is the average total matches with points % larger than 33.3?###answer:SELECT AVG(total_matches) FROM table_name_73 WHERE points__percentage > 33.3 AND year = "2007"###context:CREATE TABLE table_name_73 (total_matches INTEGER, points__percentage VARCHAR, year VARCHAR)
###question:Which player attended school at Georgia Tech?###answer:SELECT player FROM table_name_74 WHERE school_club_team = "georgia tech"###context:CREATE TABLE table_name_74 (player VARCHAR, school_club_team VARCHAR)
###question:What position does Ed Stokes hold?###answer:SELECT position FROM table_name_87 WHERE player = "ed stokes"###context:CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)
###question:What is Michael Stewart's school or club team?###answer:SELECT school_club_team FROM table_name_93 WHERE player = "michael stewart"###context:CREATE TABLE table_name_93 (school_club_team VARCHAR, player VARCHAR)
###question:What tournament was played on May 29, 2010?###answer:SELECT tournament FROM table_name_8 WHERE date = "may 29, 2010"###context:CREATE TABLE table_name_8 (tournament VARCHAR, date VARCHAR)
###question:What was the surface made of in the contest where Paula Ormaechea was the partner?###answer:SELECT surface FROM table_name_50 WHERE partner = "paula ormaechea"###context:CREATE TABLE table_name_50 (surface VARCHAR, partner VARCHAR)
###question:Tell me the method with a record of 4-2###answer:SELECT method FROM table_name_1 WHERE record = "4-2"###context:CREATE TABLE table_name_1 (method VARCHAR, record VARCHAR)
###question:Tell me the record for yukiya naito###answer:SELECT record FROM table_name_78 WHERE opponent = "yukiya naito"###context:CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR)
###question:Tell me the record for kazuhiro nakamura###answer:SELECT record FROM table_name_25 WHERE opponent = "kazuhiro nakamura"###context:CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR)