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