Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
22,700 | <question>: What shows for 2006, when 2013 is 2–4? <context>: CREATE TABLE table_name_64 (Id VARCHAR) | SELECT 2006 FROM table_name_64 WHERE 2013 = "2–4" |
22,701 | <question>: What shows for 2013 when the 2012 is 2r, and a 2009 is 2r? <context>: CREATE TABLE table_name_29 (Id VARCHAR) | SELECT 2013 FROM table_name_29 WHERE 2012 = "2r" AND 2009 = "2r" |
22,702 | <question>: What is the 2006 when the 2013 is 1r, and the 2012 is 1r? <context>: CREATE TABLE table_name_89 (Id VARCHAR) | SELECT 2006 FROM table_name_89 WHERE 2013 = "1r" AND 2012 = "1r" |
22,703 | <question>: What is the 2006 when the 2013 is 2r, and a Tournament was the us open? <context>: CREATE TABLE table_name_91 (tournament VARCHAR) | SELECT 2006 FROM table_name_91 WHERE 2013 = "2r" AND tournament = "us open" |
22,704 | <question>: What is the Tournament when the 2013 is 2r, and a 2006 is 1r? <context>: CREATE TABLE table_name_26 (tournament VARCHAR) | SELECT tournament FROM table_name_26 WHERE 2013 = "2r" AND 2006 = "1r" |
22,705 | <question>: What is the Tournament when the 2013 is 1r? <context>: CREATE TABLE table_name_54 (tournament VARCHAR) | SELECT tournament FROM table_name_54 WHERE 2013 = "1r" |
22,706 | <question>: When in 2008 that has a 2007 of f? <context>: CREATE TABLE table_name_30 (Id VARCHAR) | SELECT 2008 FROM table_name_30 WHERE 2007 = "f" |
22,707 | <question>: Which Tournament has a 2007 of 19–4? <context>: CREATE TABLE table_name_3 (tournament VARCHAR) | SELECT tournament FROM table_name_3 WHERE 2007 = "19–4" |
22,708 | <question>: WHat in 2005 has a Win % of 82.61? <context>: CREATE TABLE table_name_59 (win__percentage VARCHAR) | SELECT 2005 FROM table_name_59 WHERE win__percentage = "82.61" |
22,709 | <question>: What in 2007 has a 2008 of sf, and a 2010 of f? <context>: CREATE TABLE table_name_95 (Id VARCHAR) | SELECT 2007 FROM table_name_95 WHERE 2008 = "sf" AND 2010 = "f" |
22,710 | <question>: What in 2013 has a 2009 of 3r? <context>: CREATE TABLE table_name_29 (Id VARCHAR) | SELECT 2013 FROM table_name_29 WHERE 2009 = "3r" |
22,711 | <question>: What in 2007 has a 2010 of qf, and a 2012 of w? <context>: CREATE TABLE table_name_92 (Id VARCHAR) | SELECT 2007 FROM table_name_92 WHERE 2010 = "qf" AND 2012 = "w" |
22,712 | <question>: What is the name of Team 2 with a Team 1 of Al Qadsia? <context>: CREATE TABLE table_name_4 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_4 WHERE team_1 = "al qadsia" |
22,713 | <question>: What is the 1st leg of the Al Fahaheel Team 1? <context>: CREATE TABLE table_name_11 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_11 WHERE team_1 = "al fahaheel" |
22,714 | <question>: What is the Ground with an Away that is central blues? <context>: CREATE TABLE table_name_7 (ground VARCHAR, away VARCHAR) | SELECT ground FROM table_name_7 WHERE away = "central blues" |
22,715 | <question>: What is the Away with a Time that is 14:00? <context>: CREATE TABLE table_name_28 (away VARCHAR, time VARCHAR) | SELECT away FROM table_name_28 WHERE time = "14:00" |
22,716 | <question>: What is the Date with a Time that is 18:45? <context>: CREATE TABLE table_name_6 (date VARCHAR, time VARCHAR) | SELECT date FROM table_name_6 WHERE time = "18:45" |
22,717 | <question>: What is the Score with a Date that is 2008-06-28? <context>: CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_35 WHERE date = "2008-06-28" |
22,718 | <question>: Which player was in the Omonia Nicosia club? <context>: CREATE TABLE table_name_5 (player VARCHAR, club VARCHAR) | SELECT player FROM table_name_5 WHERE club = "omonia nicosia" |
22,719 | <question>: Which league's nationality was Italy when there were 62 points? <context>: CREATE TABLE table_name_20 (league VARCHAR, nationality VARCHAR, points VARCHAR) | SELECT league FROM table_name_20 WHERE nationality = "italy" AND points = "62" |
22,720 | <question>: What is the value for the item "Lost" when the value "Tries" is 47? <context>: CREATE TABLE table_name_86 (lost VARCHAR, tries_for VARCHAR) | SELECT lost FROM table_name_86 WHERE tries_for = "47" |
22,721 | <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? <context>: CREATE TABLE table_name_16 (tries_for VARCHAR, played VARCHAR, points_against VARCHAR) | SELECT tries_for FROM table_name_16 WHERE played = "18" AND points_against = "375" |
22,722 | <question>: What is the value of the item "Points" when the value of the item "Points against" is 272? <context>: CREATE TABLE table_name_62 (points_for VARCHAR, points_against VARCHAR) | SELECT points_for FROM table_name_62 WHERE points_against = "272" |
22,723 | <question>: Which Height (cm) has a Birthplace of bloomfield hills, michigan? <context>: CREATE TABLE table_name_52 (height__cm_ INTEGER, birthplace VARCHAR) | SELECT AVG(height__cm_) FROM table_name_52 WHERE birthplace = "bloomfield hills, michigan" |
22,724 | <question>: Which Height (cm) has a Birthplace of new canaan, connecticut? <context>: CREATE TABLE table_name_52 (height__cm_ VARCHAR, birthplace VARCHAR) | SELECT COUNT(height__cm_) FROM table_name_52 WHERE birthplace = "new canaan, connecticut" |
22,725 | <question>: Which Class has a Number at Lincoln smaller than 1 and a Wheel Arrangement of 0-6-0? <context>: CREATE TABLE table_name_60 (class VARCHAR, number_at_lincoln VARCHAR, wheel_arrangement VARCHAR) | SELECT class FROM table_name_60 WHERE number_at_lincoln < 1 AND wheel_arrangement = "0-6-0" |
22,726 | <question>: Which Class has a Number at Lincoln larger than 0 and a Number at Doncaster of 8? <context>: CREATE TABLE table_name_88 (class VARCHAR, number_at_lincoln VARCHAR, number_at_doncaster VARCHAR) | SELECT class FROM table_name_88 WHERE number_at_lincoln > 0 AND number_at_doncaster = 8 |
22,727 | <question>: What was the loss for Boris Picano-Nacci? <context>: CREATE TABLE table_name_94 (loss VARCHAR, name VARCHAR) | SELECT loss FROM table_name_94 WHERE name = "boris picano-nacci" |
22,728 | <question>: Which Score has smaller than 1994, and a Partner of elizabeth sayers smylie? <context>: CREATE TABLE table_name_54 (score VARCHAR, year VARCHAR, partner VARCHAR) | SELECT score FROM table_name_54 WHERE year < 1994 AND partner = "elizabeth sayers smylie" |
22,729 | <question>: Who was the Partner that was a winner, a Year smaller than 1993, and a Score of 6–4, 6–2? <context>: CREATE TABLE table_name_94 (partner VARCHAR, score VARCHAR, outcome VARCHAR, year VARCHAR) | SELECT partner FROM table_name_94 WHERE outcome = "winner" AND year < 1993 AND score = "6–4, 6–2" |
22,730 | <question>: What tournament had a victory of a 1 stroke margin and the final winning score 69-75-71-70? <context>: CREATE TABLE table_name_1 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_1 WHERE margin_of_victory = "1 stroke" AND winning_score = "69-75-71-70" |
22,731 | <question>: Which Loera has a Source of surveyusa, and a Date of may 16–may 18, 2008? <context>: CREATE TABLE table_name_47 (loera VARCHAR, source VARCHAR, date VARCHAR) | SELECT loera FROM table_name_47 WHERE source = "surveyusa" AND date = "may 16–may 18, 2008" |
22,732 | <question>: Which Goberman has a Date of april 28–april 30, 2008? <context>: CREATE TABLE table_name_63 (goberman VARCHAR, date VARCHAR) | SELECT goberman FROM table_name_63 WHERE date = "april 28–april 30, 2008" |
22,733 | <question>: Which Neville has a Novick of 23%? <context>: CREATE TABLE table_name_62 (neville VARCHAR, novick VARCHAR) | SELECT neville FROM table_name_62 WHERE novick = "23%" |
22,734 | <question>: Which Goberman has an Obrist of 2%, and a Merkley of 34%? <context>: CREATE TABLE table_name_9 (goberman VARCHAR, obrist VARCHAR, merkley VARCHAR) | SELECT goberman FROM table_name_9 WHERE obrist = "2%" AND merkley = "34%" |
22,735 | <question>: Which Novick has a Source of surveyusa, and a Neville of 8%? <context>: CREATE TABLE table_name_59 (novick VARCHAR, source VARCHAR, neville VARCHAR) | SELECT novick FROM table_name_59 WHERE source = "surveyusa" AND neville = "8%" |
22,736 | <question>: Which Date has a Novick of 26%? <context>: CREATE TABLE table_name_48 (date VARCHAR, novick VARCHAR) | SELECT date FROM table_name_48 WHERE novick = "26%" |
22,737 | <question>: What is the Coach with a Big Ten that is 2nd (79)? <context>: CREATE TABLE table_name_72 (coach VARCHAR, big_ten VARCHAR) | SELECT coach FROM table_name_72 WHERE big_ten = "2nd (79)" |
22,738 | <question>: What is the Season with a Big Ten that is 2nd (386)? <context>: CREATE TABLE table_name_6 (season VARCHAR, big_ten VARCHAR) | SELECT season FROM table_name_6 WHERE big_ten = "2nd (386)" |
22,739 | <question>: What is the Coach with a Big Ten that is 3rd (278)? <context>: CREATE TABLE table_name_92 (coach VARCHAR, big_ten VARCHAR) | SELECT coach FROM table_name_92 WHERE big_ten = "3rd (278)" |
22,740 | <question>: What is the Coach with a Big Ten that is 1st (148)? <context>: CREATE TABLE table_name_39 (coach VARCHAR, big_ten VARCHAR) | SELECT coach FROM table_name_39 WHERE big_ten = "1st (148)" |
22,741 | <question>: What is the total of First Season games with 1537 Wins and a Season greater than 109? <context>: CREATE TABLE table_name_71 (first_season INTEGER, wins VARCHAR, seasons VARCHAR) | SELECT SUM(first_season) FROM table_name_71 WHERE wins = 1537 AND seasons > 109 |
22,742 | <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? <context>: CREATE TABLE table_name_29 (wins VARCHAR, rank VARCHAR, college VARCHAR, losses VARCHAR, first_season VARCHAR) | SELECT COUNT(wins) FROM table_name_29 WHERE losses > 980 AND first_season < 1906 AND college = "washington state" AND rank > 42 |
22,743 | <question>: What is the total number of rank with losses less than 992, North Carolina State College and a season greater than 101? <context>: CREATE TABLE table_name_87 (rank VARCHAR, seasons VARCHAR, losses VARCHAR, college VARCHAR) | SELECT COUNT(rank) FROM table_name_87 WHERE losses < 992 AND college = "north carolina state" AND seasons > 101 |
22,744 | <question>: What is the total number of bronzes associated with 1 silver, ranks under 6 and under 6 golds? <context>: CREATE TABLE table_name_77 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR) | SELECT SUM(bronze) FROM table_name_77 WHERE silver = 1 AND rank < 6 AND gold < 6 |
22,745 | <question>: What is the highest number of bronzes for teams ranked number 7 with more than 0 silver? <context>: CREATE TABLE table_name_77 (bronze INTEGER, silver VARCHAR, rank VARCHAR) | SELECT MAX(bronze) FROM table_name_77 WHERE silver > 0 AND rank = 7 |
22,746 | <question>: What is the average total for teams with more than 1 gold, ranked over 3 and more than 3 bronze? <context>: CREATE TABLE table_name_39 (total INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT AVG(total) FROM table_name_39 WHERE gold > 1 AND rank > 3 AND bronze > 3 |
22,747 | <question>: What is the sum of bronzes for teams with more than 2 gold, ranked under 3, and less than 22 silver? <context>: CREATE TABLE table_name_82 (bronze INTEGER, silver VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT SUM(bronze) FROM table_name_82 WHERE gold > 2 AND rank < 3 AND silver < 22 |
22,748 | <question>: What is the sum of silvers for teams with ranks over 3 and totals under 2? <context>: CREATE TABLE table_name_98 (silver INTEGER, rank VARCHAR, total VARCHAR) | SELECT SUM(silver) FROM table_name_98 WHERE rank > 3 AND total < 2 |
22,749 | <question>: What is the number of Games for the Maccabi Tel Aviv Team with less than 208 Rebounds? <context>: CREATE TABLE table_name_47 (games INTEGER, team VARCHAR, rebounds VARCHAR) | SELECT AVG(games) FROM table_name_47 WHERE team = "maccabi tel aviv" AND rebounds < 208 |
22,750 | <question>: How many Rebounds did Novica Veličković get in less than 22 Games? <context>: CREATE TABLE table_name_6 (rebounds INTEGER, name VARCHAR, games VARCHAR) | SELECT SUM(rebounds) FROM table_name_6 WHERE name = "novica veličković" AND games < 22 |
22,751 | <question>: How many Games for Terence Morris? <context>: CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR) | SELECT games FROM table_name_57 WHERE name = "terence morris" |
22,752 | <question>: What is the number of Games for Partizan Belgrade player Nikola Peković with a Rank of more than 4? <context>: CREATE TABLE table_name_25 (games INTEGER, rank VARCHAR, team VARCHAR, name VARCHAR) | SELECT MIN(games) FROM table_name_25 WHERE team = "partizan belgrade" AND name = "nikola peković" AND rank > 4 |
22,753 | <question>: Which year's rank was #4 when the country was the US? <context>: CREATE TABLE table_name_55 (year VARCHAR, rank VARCHAR, country VARCHAR) | SELECT year FROM table_name_55 WHERE rank = "#4" AND country = "us" |
22,754 | <question>: Which publication happened in the UK? <context>: CREATE TABLE table_name_75 (publication VARCHAR, country VARCHAR) | SELECT publication FROM table_name_75 WHERE country = "uk" |
22,755 | <question>: Which rank's country is the US when the accolade is 40 best albums of the year? <context>: CREATE TABLE table_name_96 (rank VARCHAR, country VARCHAR, accolade VARCHAR) | SELECT rank FROM table_name_96 WHERE country = "us" AND accolade = "40 best albums of the year" |
22,756 | <question>: What is the nationality of the HMS Cheshire? <context>: CREATE TABLE table_name_32 (nationality VARCHAR, name VARCHAR) | SELECT nationality FROM table_name_32 WHERE name = "hms cheshire" |
22,757 | <question>: What was the final score with Guillermo Vilas as the opponent in the final, that happened after 1972? <context>: CREATE TABLE table_name_81 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_81 WHERE opponent_in_the_final = "guillermo vilas" AND date > 1972 |
22,758 | <question>: Which points has the driver Paul Tracy? <context>: CREATE TABLE table_name_56 (points VARCHAR, driver VARCHAR) | SELECT points FROM table_name_56 WHERE driver = "paul tracy" |
22,759 | <question>: What grid has 78 laps, and Ronnie Bremer as driver? <context>: CREATE TABLE table_name_54 (grid VARCHAR, laps VARCHAR, driver VARCHAR) | SELECT grid FROM table_name_54 WHERE laps = 78 AND driver = "ronnie bremer" |
22,760 | <question>: Who scored with a grid of 10 and the highest amount of laps? <context>: CREATE TABLE table_name_21 (laps INTEGER, grid VARCHAR) | SELECT MAX(laps) FROM table_name_21 WHERE grid = 10 |
22,761 | <question>: Who was Fourth in the 2008 Telstra Men's Pro Event? <context>: CREATE TABLE table_name_93 (fourth VARCHAR, event VARCHAR) | SELECT fourth FROM table_name_93 WHERE event = "2008 telstra men's pro" |
22,762 | <question>: Who was the Winner when Selby Riddle came in Fourth? <context>: CREATE TABLE table_name_26 (winner VARCHAR, fourth VARCHAR) | SELECT winner FROM table_name_26 WHERE fourth = "selby riddle" |
22,763 | <question>: Who was in Second Place with Isabelle Brayley came in Fourth? <context>: CREATE TABLE table_name_31 (second VARCHAR, fourth VARCHAR) | SELECT second FROM table_name_31 WHERE fourth = "isabelle brayley" |
22,764 | <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? <context>: CREATE TABLE table_name_5 (total_freshwater_withdrawal__km_3__yr_ INTEGER, industrial_use__m_3__p_yr__in__percentage_ VARC... | SELECT AVG(total_freshwater_withdrawal__km_3__yr_) FROM table_name_5 WHERE industrial_use__m_3__p_yr__in__percentage_ = "337(63%)" AND per_capita_withdrawal__m_3__p_yr_ > 535 |
22,765 | <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? <context>: CREATE TABLE table_name_22 (per_capita_withdrawal__m_3__p_yr_ INTEGER, agricultural_use__m_3__p_yr__in__percentage_ VARCH... | SELECT MAX(per_capita_withdrawal__m_3__p_yr_) FROM table_name_22 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "1363(92%)" AND total_freshwater_withdrawal__km_3__yr_ < 42.7 |
22,766 | <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%)? <context>: CREATE TABLE table_name_7 (agricultural_use__m_3__p_yr__in__percentage_ VARCHAR, per_capita_withdrawal__m_3__p_yr_ VARCHAR, domestic_use__m_3_... | 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__in__percentage_ = "73(7%)" |
22,767 | <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%)? <context>: CREATE TABLE table_name_32 (industrial_use__m_3__p_yr__in__percentage_ VARCHAR, total_freshwater_withdrawal__km_3__yr_ VARCHAR, agricu... | SELECT industrial_use__m_3__p_yr__in__percentage_ FROM table_name_32 WHERE total_freshwater_withdrawal__km_3__yr_ < 82.75 AND agricultural_use__m_3__p_yr__in__percentage_ = "1363(92%)" |
22,768 | <question>: Who was the leading score in the game at the Warriors? <context>: CREATE TABLE table_name_54 (leading_scorer VARCHAR, home VARCHAR) | SELECT leading_scorer FROM table_name_54 WHERE home = "warriors" |
22,769 | <question>: How many average cuts made when 11 is the Top-10? <context>: CREATE TABLE table_name_38 (cuts_made INTEGER, top_10 VARCHAR) | SELECT AVG(cuts_made) FROM table_name_38 WHERE top_10 = 11 |
22,770 | <question>: When the wins are less than 0 and the Top-5 1 what is the average cuts? <context>: CREATE TABLE table_name_31 (cuts_made INTEGER, top_5 VARCHAR, wins VARCHAR) | SELECT AVG(cuts_made) FROM table_name_31 WHERE top_5 = 1 AND wins < 0 |
22,771 | <question>: What is the average Top-10 with a greater than 11 Top-25 and a less than 2 wins? <context>: CREATE TABLE table_name_15 (top_10 INTEGER, top_25 VARCHAR, wins VARCHAR) | SELECT AVG(top_10) FROM table_name_15 WHERE top_25 > 11 AND wins < 2 |
22,772 | <question>: What is the total of wins when the cuts made is 76 and the events greater than 115? <context>: CREATE TABLE table_name_3 (wins INTEGER, cuts_made VARCHAR, events VARCHAR) | SELECT SUM(wins) FROM table_name_3 WHERE cuts_made = 76 AND events > 115 |
22,773 | <question>: What are the largest cuts made when the events are less than 21? <context>: CREATE TABLE table_name_11 (cuts_made INTEGER, events INTEGER) | SELECT MAX(cuts_made) FROM table_name_11 WHERE events < 21 |
22,774 | <question>: What is the lowest Top-25 that has 3 Events and Wins greater than 0? <context>: CREATE TABLE table_name_94 (top_25 INTEGER, events VARCHAR, wins VARCHAR) | SELECT MIN(top_25) FROM table_name_94 WHERE events = 3 AND wins > 0 |
22,775 | <question>: What is the Wins of the Top-25 of 1 and 7 Events? <context>: CREATE TABLE table_name_66 (wins VARCHAR, top_25 VARCHAR, events VARCHAR) | SELECT wins FROM table_name_66 WHERE top_25 = 1 AND events = 7 |
22,776 | <question>: What is the lowest Top-25 with Wins less than 0? <context>: CREATE TABLE table_name_2 (top_25 INTEGER, wins INTEGER) | SELECT MIN(top_25) FROM table_name_2 WHERE wins < 0 |
22,777 | <question>: What is the total number of cuts made of tournaments with 2 Events? <context>: CREATE TABLE table_name_81 (cuts_made VARCHAR, events VARCHAR) | SELECT COUNT(cuts_made) FROM table_name_81 WHERE events = 2 |
22,778 | <question>: Which Bleeding has a Condition of congenital afibrinogenemia? <context>: CREATE TABLE table_name_75 (bleeding_time VARCHAR, condition VARCHAR) | SELECT bleeding_time FROM table_name_75 WHERE condition = "congenital afibrinogenemia" |
22,779 | <question>: which Partial thromboplastin time has a Condition of liver failure , early? <context>: CREATE TABLE table_name_61 (partial_thromboplastin_time VARCHAR, condition VARCHAR) | SELECT partial_thromboplastin_time FROM table_name_61 WHERE condition = "liver failure , early" |
22,780 | <question>: Which Condition has an unaffected Partial thromboplastin time, Platelet count, and a Prothrombin time? <context>: CREATE TABLE table_name_46 (condition VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR) | SELECT condition FROM table_name_46 WHERE partial_thromboplastin_time = "unaffected" AND platelet_count = "unaffected" AND prothrombin_time = "unaffected" |
22,781 | <question>: Which Condition has an unaffected Prothrombin time and a Bleeding time, and a Partial thromboplastin time of prolonged? <context>: CREATE TABLE table_name_73 (condition VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR) | SELECT condition FROM table_name_73 WHERE prothrombin_time = "unaffected" AND bleeding_time = "unaffected" AND partial_thromboplastin_time = "prolonged" |
22,782 | <question>: What margin was in after 1981, and was Roberto De Vicenzo runner-up? <context>: CREATE TABLE table_name_88 (margin VARCHAR, year VARCHAR, runner_s__up VARCHAR) | SELECT margin FROM table_name_88 WHERE year > 1981 AND runner_s__up = "roberto de vicenzo" |
22,783 | <question>: What championship was in 1985? <context>: CREATE TABLE table_name_30 (championship VARCHAR, year VARCHAR) | SELECT championship FROM table_name_30 WHERE year = 1985 |
22,784 | <question>: What is the number of bronze medals when the total medals were 78 and there were less than 12 golds? <context>: CREATE TABLE table_name_39 (bronze INTEGER, total VARCHAR, gold VARCHAR) | SELECT SUM(bronze) FROM table_name_39 WHERE total = 78 AND gold < 12 |
22,785 | <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? <context>: CREATE TABLE table_name_89 (gold INTEGER, bronze VARCHAR, silver VARCHAR, total VARCHAR) | SELECT AVG(gold) FROM table_name_89 WHERE silver > 14 AND total = 1335 AND bronze > 469 |
22,786 | <question>: What is the total amount of gold medals when there were more than 20 silvers and there were 135 bronze medals? <context>: CREATE TABLE table_name_22 (gold VARCHAR, silver VARCHAR, bronze VARCHAR) | SELECT COUNT(gold) FROM table_name_22 WHERE silver > 20 AND bronze = 135 |
22,787 | <question>: What is the average number of bronze medals for total of all nations? <context>: CREATE TABLE table_name_85 (bronze INTEGER, nation VARCHAR) | SELECT AVG(bronze) FROM table_name_85 WHERE nation = "total" |
22,788 | <question>: What is the sum of gold medals for a rank of 14? <context>: CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR) | SELECT SUM(gold) FROM table_name_95 WHERE rank = "14" |
22,789 | <question>: Which rank has 1 silver medal and more than 1 gold medal? <context>: CREATE TABLE table_name_38 (rank VARCHAR, silver VARCHAR, gold VARCHAR) | SELECT rank FROM table_name_38 WHERE silver = 1 AND gold > 1 |
22,790 | <question>: What is the Clubs when there are 4 for the number of fixtures? <context>: CREATE TABLE table_name_3 (clubs VARCHAR, number_of_fixtures VARCHAR) | SELECT clubs FROM table_name_3 WHERE number_of_fixtures = 4 |
22,791 | <question>: What is the sum of Number of fixtures when the rounds shows quarter-finals? <context>: CREATE TABLE table_name_65 (number_of_fixtures INTEGER, round VARCHAR) | SELECT SUM(number_of_fixtures) FROM table_name_65 WHERE round = "quarter-finals" |
22,792 | <question>: What is the New entries this round when the round is the semi-finals? <context>: CREATE TABLE table_name_18 (new_entries_this_round VARCHAR, round VARCHAR) | SELECT new_entries_this_round FROM table_name_18 WHERE round = "semi-finals" |
22,793 | <question>: What is the Round when the number of fixtures is more than 2, and the Main date of 7 and 28 november 2007? <context>: CREATE TABLE table_name_31 (round VARCHAR, number_of_fixtures VARCHAR, main_date VARCHAR) | SELECT round FROM table_name_31 WHERE number_of_fixtures > 2 AND main_date = "7 and 28 november 2007" |
22,794 | <question>: What is the event average for a top-25 smaller than 0? <context>: CREATE TABLE table_name_84 (events INTEGER, top_25 INTEGER) | SELECT AVG(events) FROM table_name_84 WHERE top_25 < 0 |
22,795 | <question>: What are the highest wins with cuts smaller than 6, events of 4 and a top-5 smaller than 0? <context>: CREATE TABLE table_name_74 (wins INTEGER, top_5 VARCHAR, cuts_made VARCHAR, events VARCHAR) | SELECT MAX(wins) FROM table_name_74 WHERE cuts_made < 6 AND events = 4 AND top_5 < 0 |
22,796 | <question>: What are the lowest top-5 with a top-25 larger than 4, 29 cuts and a top-10 larger than 18? <context>: CREATE TABLE table_name_62 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR, cuts_made VARCHAR) | SELECT MIN(top_5) FROM table_name_62 WHERE top_25 > 4 AND cuts_made = 29 AND top_10 > 18 |
22,797 | <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? <context>: CREATE TABLE table_name_5 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR, tournament VARCHAR) | SELECT MIN(top_25) FROM table_name_5 WHERE events < 42 AND tournament = "u.s. open" AND top_10 < 5 |
22,798 | <question>: Which birthplace's height in inches was more than 192 when the position was d and the birthday was April 5, 1983? <context>: CREATE TABLE table_name_70 (birthplace VARCHAR, birthdate VARCHAR, height__in_ VARCHAR, position VARCHAR) | SELECT birthplace FROM table_name_70 WHERE height__in_ > 192 AND position = "d" AND birthdate = "april 5, 1983" |
22,799 | <question>: What nationality has steve kerr as the player? <context>: CREATE TABLE table_name_95 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_95 WHERE player = "steve kerr" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.