combined_text
stringlengths
106
1.05k
###question:What shows for 2006, when 2013 is 2–4?###answer:SELECT 2006 FROM table_name_64 WHERE 2013 = "2–4"###context:CREATE TABLE table_name_64 (Id VARCHAR)
###question:What shows for 2013 when the 2012 is 2r, and a 2009 is 2r?###answer:SELECT 2013 FROM table_name_29 WHERE 2012 = "2r" AND 2009 = "2r"###context:CREATE TABLE table_name_29 (Id VARCHAR)
###question:What is the 2006 when the 2013 is 1r, and the 2012 is 1r?###answer:SELECT 2006 FROM table_name_89 WHERE 2013 = "1r" AND 2012 = "1r"###context:CREATE TABLE table_name_89 (Id VARCHAR)
###question:What is the 2006 when the 2013 is 2r, and a Tournament was the us open?###answer:SELECT 2006 FROM table_name_91 WHERE 2013 = "2r" AND tournament = "us open"###context:CREATE TABLE table_name_91 (tournament VARCHAR)
###question:What is the Tournament when the 2013 is 2r, and a 2006 is 1r?###answer:SELECT tournament FROM table_name_26 WHERE 2013 = "2r" AND 2006 = "1r"###context:CREATE TABLE table_name_26 (tournament VARCHAR)
###question:What is the Tournament when the 2013 is 1r?###answer:SELECT tournament FROM table_name_54 WHERE 2013 = "1r"###context:CREATE TABLE table_name_54 (tournament VARCHAR)
###question:When in 2008 that has a 2007 of f?###answer:SELECT 2008 FROM table_name_30 WHERE 2007 = "f"###context:CREATE TABLE table_name_30 (Id VARCHAR)
###question:Which Tournament has a 2007 of 19–4?###answer:SELECT tournament FROM table_name_3 WHERE 2007 = "19–4"###context:CREATE TABLE table_name_3 (tournament VARCHAR)
###question:WHat in 2005 has a Win % of 82.61?###answer:SELECT 2005 FROM table_name_59 WHERE win__percentage = "82.61"###context:CREATE TABLE table_name_59 (win__percentage VARCHAR)
###question:What in 2007 has a 2008 of sf, and a 2010 of f?###answer:SELECT 2007 FROM table_name_95 WHERE 2008 = "sf" AND 2010 = "f"###context:CREATE TABLE table_name_95 (Id VARCHAR)
###question:What in 2013 has a 2009 of 3r?###answer:SELECT 2013 FROM table_name_29 WHERE 2009 = "3r"###context:CREATE TABLE table_name_29 (Id VARCHAR)
###question:What in 2007 has a 2010 of qf, and a 2012 of w?###answer:SELECT 2007 FROM table_name_92 WHERE 2010 = "qf" AND 2012 = "w"###context:CREATE TABLE table_name_92 (Id VARCHAR)
###question:What is the name of Team 2 with a Team 1 of Al Qadsia?###answer:SELECT team_2 FROM table_name_4 WHERE team_1 = "al qadsia"###context:CREATE TABLE table_name_4 (team_2 VARCHAR, team_1 VARCHAR)
###question:What is the 1st leg of the Al Fahaheel Team 1?###answer:SELECT 1 AS st_leg FROM table_name_11 WHERE team_1 = "al fahaheel"###context:CREATE TABLE table_name_11 (team_1 VARCHAR)
###question:What is the Ground with an Away that is central blues?###answer:SELECT ground FROM table_name_7 WHERE away = "central blues"###context:CREATE TABLE table_name_7 (ground VARCHAR, away VARCHAR)
###question:What is the Away with a Time that is 14:00?###answer:SELECT away FROM table_name_28 WHERE time = "14:00"###context:CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR)
###question:What is the Date with a Time that is 18:45?###answer:SELECT date FROM table_name_6 WHERE time = "18:45"###context:CREATE TABLE table_name_6 (date VARCHAR, time VARCHAR)
###question:What is the Score with a Date that is 2008-06-28?###answer:SELECT score FROM table_name_35 WHERE date = "2008-06-28"###context:CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
###question:Which player was in the Omonia Nicosia club?###answer:SELECT player FROM table_name_5 WHERE club = "omonia nicosia"###context:CREATE TABLE table_name_5 (player VARCHAR, club VARCHAR)
###question:Which league's nationality was Italy when there were 62 points?###answer:SELECT league FROM table_name_20 WHERE nationality = "italy" AND points = "62"###context:CREATE TABLE table_name_20 (league VARCHAR, nationality VARCHAR, points VARCHAR)
###question:What is the value for the item "Lost" when the value "Tries" is 47?###answer:SELECT lost FROM table_name_86 WHERE tries_for = "47"###context:CREATE TABLE table_name_86 (lost VARCHAR, tries_for VARCHAR)
###question:What is the value for the item "Tries" when the value of the item "Played" is 18 and the value of the item "Points" is 375?###answer:SELECT tries_for FROM table_name_16 WHERE played = "18" AND points_against = "375"###context:CREATE TABLE table_name_16 (tries_for VARCHAR, played VARCHAR, points_against VARC...
###question:What is the value of the item "Points" when the value of the item "Points against" is 272?###answer:SELECT points_for FROM table_name_62 WHERE points_against = "272"###context:CREATE TABLE table_name_62 (points_for VARCHAR, points_against VARCHAR)
###question:Which Height (cm) has a Birthplace of bloomfield hills, michigan?###answer:SELECT AVG(height__cm_) FROM table_name_52 WHERE birthplace = "bloomfield hills, michigan"###context:CREATE TABLE table_name_52 (height__cm_ INTEGER, birthplace VARCHAR)
###question:Which Height (cm) has a Birthplace of new canaan, connecticut?###answer:SELECT COUNT(height__cm_) FROM table_name_52 WHERE birthplace = "new canaan, connecticut"###context:CREATE TABLE table_name_52 (height__cm_ VARCHAR, birthplace VARCHAR)
###question:Which Class has a Number at Lincoln smaller than 1 and a Wheel Arrangement of 0-6-0?###answer:SELECT class FROM table_name_60 WHERE number_at_lincoln < 1 AND wheel_arrangement = "0-6-0"###context:CREATE TABLE table_name_60 (class VARCHAR, number_at_lincoln VARCHAR, wheel_arrangement VARCHAR)
###question:Which Class has a Number at Lincoln larger than 0 and a Number at Doncaster of 8?###answer:SELECT class FROM table_name_88 WHERE number_at_lincoln > 0 AND number_at_doncaster = 8###context:CREATE TABLE table_name_88 (class VARCHAR, number_at_lincoln VARCHAR, number_at_doncaster VARCHAR)
###question:What was the loss for Boris Picano-Nacci?###answer:SELECT loss FROM table_name_94 WHERE name = "boris picano-nacci"###context:CREATE TABLE table_name_94 (loss VARCHAR, name VARCHAR)
###question:Which Score has smaller than 1994, and a Partner of elizabeth sayers smylie?###answer:SELECT score FROM table_name_54 WHERE year < 1994 AND partner = "elizabeth sayers smylie"###context:CREATE TABLE table_name_54 (score VARCHAR, year VARCHAR, partner VARCHAR)
###question:Who was the Partner that was a winner, a Year smaller than 1993, and a Score of 6–4, 6–2?###answer:SELECT partner FROM table_name_94 WHERE outcome = "winner" AND year < 1993 AND score = "6–4, 6–2"###context:CREATE TABLE table_name_94 (partner VARCHAR, score VARCHAR, outcome VARCHAR, year VARCHAR)
###question:What tournament had a victory of a 1 stroke margin and the final winning score 69-75-71-70?###answer:SELECT tournament FROM table_name_1 WHERE margin_of_victory = "1 stroke" AND winning_score = "69-75-71-70"###context:CREATE TABLE table_name_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VA...
###question:Which Loera has a Source of surveyusa, and a Date of may 16–may 18, 2008?###answer:SELECT loera FROM table_name_47 WHERE source = "surveyusa" AND date = "may 16–may 18, 2008"###context:CREATE TABLE table_name_47 (loera VARCHAR, source VARCHAR, date VARCHAR)
###question:Which Goberman has a Date of april 28–april 30, 2008?###answer:SELECT goberman FROM table_name_63 WHERE date = "april 28–april 30, 2008"###context:CREATE TABLE table_name_63 (goberman VARCHAR, date VARCHAR)
###question:Which Neville has a Novick of 23%?###answer:SELECT neville FROM table_name_62 WHERE novick = "23%"###context:CREATE TABLE table_name_62 (neville VARCHAR, novick VARCHAR)
###question:Which Goberman has an Obrist of 2%, and a Merkley of 34%?###answer:SELECT goberman FROM table_name_9 WHERE obrist = "2%" AND merkley = "34%"###context:CREATE TABLE table_name_9 (goberman VARCHAR, obrist VARCHAR, merkley VARCHAR)
###question:Which Novick has a Source of surveyusa, and a Neville of 8%?###answer:SELECT novick FROM table_name_59 WHERE source = "surveyusa" AND neville = "8%"###context:CREATE TABLE table_name_59 (novick VARCHAR, source VARCHAR, neville VARCHAR)
###question:Which Date has a Novick of 26%?###answer:SELECT date FROM table_name_48 WHERE novick = "26%"###context:CREATE TABLE table_name_48 (date VARCHAR, novick VARCHAR)
###question:What is the Coach with a Big Ten that is 2nd (79)?###answer:SELECT coach FROM table_name_72 WHERE big_ten = "2nd (79)"###context:CREATE TABLE table_name_72 (coach VARCHAR, big_ten VARCHAR)
###question:What is the Season with a Big Ten that is 2nd (386)?###answer:SELECT season FROM table_name_6 WHERE big_ten = "2nd (386)"###context:CREATE TABLE table_name_6 (season VARCHAR, big_ten VARCHAR)
###question:What is the Coach with a Big Ten that is 3rd (278)?###answer:SELECT coach FROM table_name_92 WHERE big_ten = "3rd (278)"###context:CREATE TABLE table_name_92 (coach VARCHAR, big_ten VARCHAR)
###question:What is the Coach with a Big Ten that is 1st (148)?###answer:SELECT coach FROM table_name_39 WHERE big_ten = "1st (148)"###context:CREATE TABLE table_name_39 (coach VARCHAR, big_ten VARCHAR)
###question:What is the total of First Season games with 1537 Wins and a Season greater than 109?###answer:SELECT SUM(first_season) FROM table_name_71 WHERE wins = 1537 AND seasons > 109###context:CREATE TABLE table_name_71 (first_season INTEGER, wins VARCHAR, seasons VARCHAR)
###question:How many wins were there for Washington State College with losses greater than 980 and a first season before 1906 and rank greater than 42?###answer:SELECT COUNT(wins) FROM table_name_29 WHERE losses > 980 AND first_season < 1906 AND college = "washington state" AND rank > 42###context:CREATE TABLE table_na...
###question:What is the total number of rank with losses less than 992, North Carolina State College and a season greater than 101?###answer:SELECT COUNT(rank) FROM table_name_87 WHERE losses < 992 AND college = "north carolina state" AND seasons > 101###context:CREATE TABLE table_name_87 (rank VARCHAR, seasons VARCHAR...
###question:What is the total number of bronzes associated with 1 silver, ranks under 6 and under 6 golds?###answer:SELECT SUM(bronze) FROM table_name_77 WHERE silver = 1 AND rank < 6 AND gold < 6###context:CREATE TABLE table_name_77 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)
###question:What is the highest number of bronzes for teams ranked number 7 with more than 0 silver?###answer:SELECT MAX(bronze) FROM table_name_77 WHERE silver > 0 AND rank = 7###context:CREATE TABLE table_name_77 (bronze INTEGER, silver VARCHAR, rank VARCHAR)
###question:What is the average total for teams with more than 1 gold, ranked over 3 and more than 3 bronze?###answer:SELECT AVG(total) FROM table_name_39 WHERE gold > 1 AND rank > 3 AND bronze > 3###context:CREATE TABLE table_name_39 (total INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
###question:What is the sum of bronzes for teams with more than 2 gold, ranked under 3, and less than 22 silver?###answer:SELECT SUM(bronze) FROM table_name_82 WHERE gold > 2 AND rank < 3 AND silver < 22###context:CREATE TABLE table_name_82 (bronze INTEGER, silver VARCHAR, gold VARCHAR, rank VARCHAR)
###question:What is the sum of silvers for teams with ranks over 3 and totals under 2?###answer:SELECT SUM(silver) FROM table_name_98 WHERE rank > 3 AND total < 2###context:CREATE TABLE table_name_98 (silver INTEGER, rank VARCHAR, total VARCHAR)
###question:What is the number of Games for the Maccabi Tel Aviv Team with less than 208 Rebounds?###answer:SELECT AVG(games) FROM table_name_47 WHERE team = "maccabi tel aviv" AND rebounds < 208###context:CREATE TABLE table_name_47 (games INTEGER, team VARCHAR, rebounds VARCHAR)
###question:How many Rebounds did Novica Veličković get in less than 22 Games?###answer:SELECT SUM(rebounds) FROM table_name_6 WHERE name = "novica veličković" AND games < 22###context:CREATE TABLE table_name_6 (rebounds INTEGER, name VARCHAR, games VARCHAR)
###question:How many Games for Terence Morris?###answer:SELECT games FROM table_name_57 WHERE name = "terence morris"###context:CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR)
###question:What is the number of Games for Partizan Belgrade player Nikola Peković with a Rank of more than 4?###answer:SELECT MIN(games) FROM table_name_25 WHERE team = "partizan belgrade" AND name = "nikola peković" AND rank > 4###context:CREATE TABLE table_name_25 (games INTEGER, rank VARCHAR, team VARCHAR, name VA...
###question:Which year's rank was #4 when the country was the US?###answer:SELECT year FROM table_name_55 WHERE rank = "#4" AND country = "us"###context:CREATE TABLE table_name_55 (year VARCHAR, rank VARCHAR, country VARCHAR)
###question:Which publication happened in the UK?###answer:SELECT publication FROM table_name_75 WHERE country = "uk"###context:CREATE TABLE table_name_75 (publication VARCHAR, country VARCHAR)
###question:Which rank's country is the US when the accolade is 40 best albums of the year?###answer:SELECT rank FROM table_name_96 WHERE country = "us" AND accolade = "40 best albums of the year"###context:CREATE TABLE table_name_96 (rank VARCHAR, country VARCHAR, accolade VARCHAR)
###question:What is the nationality of the HMS Cheshire?###answer:SELECT nationality FROM table_name_32 WHERE name = "hms cheshire"###context:CREATE TABLE table_name_32 (nationality VARCHAR, name VARCHAR)
###question:What was the final score with Guillermo Vilas as the opponent in the final, that happened after 1972?###answer:SELECT score_in_the_final FROM table_name_81 WHERE opponent_in_the_final = "guillermo vilas" AND date > 1972###context:CREATE TABLE table_name_81 (score_in_the_final VARCHAR, opponent_in_the_final ...
###question:Which points has the driver Paul Tracy?###answer:SELECT points FROM table_name_56 WHERE driver = "paul tracy"###context:CREATE TABLE table_name_56 (points VARCHAR, driver VARCHAR)
###question:What grid has 78 laps, and Ronnie Bremer as driver?###answer:SELECT grid FROM table_name_54 WHERE laps = 78 AND driver = "ronnie bremer"###context:CREATE TABLE table_name_54 (grid VARCHAR, laps VARCHAR, driver VARCHAR)
###question:Who scored with a grid of 10 and the highest amount of laps?###answer:SELECT MAX(laps) FROM table_name_21 WHERE grid = 10###context:CREATE TABLE table_name_21 (laps INTEGER, grid VARCHAR)
###question:Who was Fourth in the 2008 Telstra Men's Pro Event?###answer:SELECT fourth FROM table_name_93 WHERE event = "2008 telstra men's pro"###context:CREATE TABLE table_name_93 (fourth VARCHAR, event VARCHAR)
###question:Who was the Winner when Selby Riddle came in Fourth?###answer:SELECT winner FROM table_name_26 WHERE fourth = "selby riddle"###context:CREATE TABLE table_name_26 (winner VARCHAR, fourth VARCHAR)
###question:Who was in Second Place with Isabelle Brayley came in Fourth?###answer:SELECT second FROM table_name_31 WHERE fourth = "isabelle brayley"###context:CREATE TABLE table_name_31 (second VARCHAR, fourth VARCHAR)
###question:What is the average Total Freshwater Withdrawal (km 3 /yr), when Industrial Use (m 3 /p/yr)(in %) is 337(63%), and when Per Capita Withdrawal (m 3 /p/yr) is greater than 535?###answer:SELECT AVG(total_freshwater_withdrawal__km_3__yr_) FROM table_name_5 WHERE industrial_use__m_3__p_yr__in__percentage_ = "337...
###question:What is the highest Per Capita Withdrawal (m 3 /p/yr), when Agricultural Use (m 3 /p/yr)(in %) is 1363(92%), and when Total Freshwater Withdrawal (km 3 /yr) is less than 42.7?###answer:SELECT MAX(per_capita_withdrawal__m_3__p_yr_) FROM table_name_22 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "1363...
###question:What is Agricultural Use (m 3 /p/yr)(in %), when Per Capita Withdrawal (m 3 /p/yr) is greater than 923, and when Domestic Use (m 3 /p/yr)(in %) is 73(7%)?###answer:SELECT agricultural_use__m_3__p_yr__in__percentage_ FROM table_name_7 WHERE per_capita_withdrawal__m_3__p_yr_ > 923 AND domestic_use__m_3__p_yr_...
###question:What is Industrial Use (m 3 /p/yr)(in %), when Total Freshwater Withdrawal (km 3/yr) is less than 82.75, and when Agricultural Use (m 3 /p/yr)(in %) is 1363(92%)?###answer:SELECT industrial_use__m_3__p_yr__in__percentage_ FROM table_name_32 WHERE total_freshwater_withdrawal__km_3__yr_ < 82.75 AND agricultur...
###question:Who was the leading score in the game at the Warriors?###answer:SELECT leading_scorer FROM table_name_54 WHERE home = "warriors"###context:CREATE TABLE table_name_54 (leading_scorer VARCHAR, home VARCHAR)
###question:How many average cuts made when 11 is the Top-10?###answer:SELECT AVG(cuts_made) FROM table_name_38 WHERE top_10 = 11###context:CREATE TABLE table_name_38 (cuts_made INTEGER, top_10 VARCHAR)
###question:When the wins are less than 0 and the Top-5 1 what is the average cuts?###answer:SELECT AVG(cuts_made) FROM table_name_31 WHERE top_5 = 1 AND wins < 0###context:CREATE TABLE table_name_31 (cuts_made INTEGER, top_5 VARCHAR, wins VARCHAR)
###question:What is the average Top-10 with a greater than 11 Top-25 and a less than 2 wins?###answer:SELECT AVG(top_10) FROM table_name_15 WHERE top_25 > 11 AND wins < 2###context:CREATE TABLE table_name_15 (top_10 INTEGER, top_25 VARCHAR, wins VARCHAR)
###question:What is the total of wins when the cuts made is 76 and the events greater than 115?###answer:SELECT SUM(wins) FROM table_name_3 WHERE cuts_made = 76 AND events > 115###context:CREATE TABLE table_name_3 (wins INTEGER, cuts_made VARCHAR, events VARCHAR)
###question:What are the largest cuts made when the events are less than 21?###answer:SELECT MAX(cuts_made) FROM table_name_11 WHERE events < 21###context:CREATE TABLE table_name_11 (cuts_made INTEGER, events INTEGER)
###question:What is the lowest Top-25 that has 3 Events and Wins greater than 0?###answer:SELECT MIN(top_25) FROM table_name_94 WHERE events = 3 AND wins > 0###context:CREATE TABLE table_name_94 (top_25 INTEGER, events VARCHAR, wins VARCHAR)
###question:What is the Wins of the Top-25 of 1 and 7 Events?###answer:SELECT wins FROM table_name_66 WHERE top_25 = 1 AND events = 7###context:CREATE TABLE table_name_66 (wins VARCHAR, top_25 VARCHAR, events VARCHAR)
###question:What is the lowest Top-25 with Wins less than 0?###answer:SELECT MIN(top_25) FROM table_name_2 WHERE wins < 0###context:CREATE TABLE table_name_2 (top_25 INTEGER, wins INTEGER)
###question:What is the total number of cuts made of tournaments with 2 Events?###answer:SELECT COUNT(cuts_made) FROM table_name_81 WHERE events = 2###context:CREATE TABLE table_name_81 (cuts_made VARCHAR, events VARCHAR)
###question:Which Bleeding has a Condition of congenital afibrinogenemia?###answer:SELECT bleeding_time FROM table_name_75 WHERE condition = "congenital afibrinogenemia"###context:CREATE TABLE table_name_75 (bleeding_time VARCHAR, condition VARCHAR)
###question:which Partial thromboplastin time has a Condition of liver failure , early?###answer:SELECT partial_thromboplastin_time FROM table_name_61 WHERE condition = "liver failure , early"###context:CREATE TABLE table_name_61 (partial_thromboplastin_time VARCHAR, condition VARCHAR)
###question:Which Condition has an unaffected Partial thromboplastin time, Platelet count, and a Prothrombin time?###answer:SELECT condition FROM table_name_46 WHERE partial_thromboplastin_time = "unaffected" AND platelet_count = "unaffected" AND prothrombin_time = "unaffected"###context:CREATE TABLE table_name_46 (con...
###question:Which Condition has an unaffected Prothrombin time and a Bleeding time, and a Partial thromboplastin time of prolonged?###answer:SELECT condition FROM table_name_73 WHERE prothrombin_time = "unaffected" AND bleeding_time = "unaffected" AND partial_thromboplastin_time = "prolonged"###context:CREATE TABLE tab...
###question:What margin was in after 1981, and was Roberto De Vicenzo runner-up?###answer:SELECT margin FROM table_name_88 WHERE year > 1981 AND runner_s__up = "roberto de vicenzo"###context:CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, runner_s__up VARCHAR)
###question:What championship was in 1985?###answer:SELECT championship FROM table_name_30 WHERE year = 1985###context:CREATE TABLE table_name_30 (championship VARCHAR, year VARCHAR)
###question:What is the number of bronze medals when the total medals were 78 and there were less than 12 golds?###answer:SELECT SUM(bronze) FROM table_name_39 WHERE total = 78 AND gold < 12###context:CREATE TABLE table_name_39 (bronze INTEGER, total VARCHAR, gold VARCHAR)
###question:What is the average number of gold medals when the total was 1335 medals, with more than 469 bronzes and more than 14 silvers?###answer:SELECT AVG(gold) FROM table_name_89 WHERE silver > 14 AND total = 1335 AND bronze > 469###context:CREATE TABLE table_name_89 (gold INTEGER, bronze VARCHAR, silver VARCHAR, ...
###question:What is the total amount of gold medals when there were more than 20 silvers and there were 135 bronze medals?###answer:SELECT COUNT(gold) FROM table_name_22 WHERE silver > 20 AND bronze = 135###context:CREATE TABLE table_name_22 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)
###question:What is the average number of bronze medals for total of all nations?###answer:SELECT AVG(bronze) FROM table_name_85 WHERE nation = "total"###context:CREATE TABLE table_name_85 (bronze INTEGER, nation VARCHAR)
###question:What is the sum of gold medals for a rank of 14?###answer:SELECT SUM(gold) FROM table_name_95 WHERE rank = "14"###context:CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR)
###question:Which rank has 1 silver medal and more than 1 gold medal?###answer:SELECT rank FROM table_name_38 WHERE silver = 1 AND gold > 1###context:CREATE TABLE table_name_38 (rank VARCHAR, silver VARCHAR, gold VARCHAR)
###question:What is the Clubs when there are 4 for the number of fixtures?###answer:SELECT clubs FROM table_name_3 WHERE number_of_fixtures = 4###context:CREATE TABLE table_name_3 (clubs VARCHAR, number_of_fixtures VARCHAR)
###question:What is the sum of Number of fixtures when the rounds shows quarter-finals?###answer:SELECT SUM(number_of_fixtures) FROM table_name_65 WHERE round = "quarter-finals"###context:CREATE TABLE table_name_65 (number_of_fixtures INTEGER, round VARCHAR)
###question:What is the New entries this round when the round is the semi-finals?###answer:SELECT new_entries_this_round FROM table_name_18 WHERE round = "semi-finals"###context:CREATE TABLE table_name_18 (new_entries_this_round VARCHAR, round VARCHAR)
###question:What is the Round when the number of fixtures is more than 2, and the Main date of 7 and 28 november 2007?###answer:SELECT round FROM table_name_31 WHERE number_of_fixtures > 2 AND main_date = "7 and 28 november 2007"###context:CREATE TABLE table_name_31 (round VARCHAR, number_of_fixtures VARCHAR, main_date...
###question:What is the event average for a top-25 smaller than 0?###answer:SELECT AVG(events) FROM table_name_84 WHERE top_25 < 0###context:CREATE TABLE table_name_84 (events INTEGER, top_25 INTEGER)
###question:What are the highest wins with cuts smaller than 6, events of 4 and a top-5 smaller than 0?###answer:SELECT MAX(wins) FROM table_name_74 WHERE cuts_made < 6 AND events = 4 AND top_5 < 0###context:CREATE TABLE table_name_74 (wins INTEGER, top_5 VARCHAR, cuts_made VARCHAR, events VARCHAR)
###question:What are the lowest top-5 with a top-25 larger than 4, 29 cuts and a top-10 larger than 18?###answer:SELECT MIN(top_5) FROM table_name_62 WHERE top_25 > 4 AND cuts_made = 29 AND top_10 > 18###context:CREATE TABLE table_name_62 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)
###question:What is the lowest for top-25 with events smaller than 42 in a U.S. Open with a top-10 smaller than 5?###answer:SELECT MIN(top_25) FROM table_name_5 WHERE events < 42 AND tournament = "u.s. open" AND top_10 < 5###context:CREATE TABLE table_name_5 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR, tournament V...
###question:Which birthplace's height in inches was more than 192 when the position was d and the birthday was April 5, 1983?###answer:SELECT birthplace FROM table_name_70 WHERE height__in_ > 192 AND position = "d" AND birthdate = "april 5, 1983"###context:CREATE TABLE table_name_70 (birthplace VARCHAR, birthdate VARCH...
###question:What nationality has steve kerr as the player?###answer:SELECT nationality FROM table_name_95 WHERE player = "steve kerr"###context:CREATE TABLE table_name_95 (nationality VARCHAR, player VARCHAR)