Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
36,800 |
<question>: When rudolph kleberg (d) is the successor what is the date of successors taking office? <context>: CREATE TABLE table_2417445_4 (date_of_successors_taking_office VARCHAR, successor VARCHAR)
|
SELECT date_of_successors_taking_office FROM table_2417445_4 WHERE successor = "Rudolph Kleberg (D)"
|
36,801 |
<question>: What geographical region is contestant laura jiménez ynoa from? <context>: CREATE TABLE table_24192031_2 (geographical_regions VARCHAR, contestant VARCHAR)
|
SELECT geographical_regions FROM table_24192031_2 WHERE contestant = "Laura Jiménez Ynoa"
|
36,802 |
<question>: How many hometowns have a height of m (ft 10 1⁄2 in)? <context>: CREATE TABLE table_24192031_2 (hometown VARCHAR, height VARCHAR)
|
SELECT COUNT(hometown) FROM table_24192031_2 WHERE height = "m (ft 10 1⁄2 in)"
|
36,803 |
<question>: How old is the person with the height of m (ft 3⁄4 in)? <context>: CREATE TABLE table_24192031_2 (age VARCHAR, height VARCHAR)
|
SELECT age FROM table_24192031_2 WHERE height = "m (ft 3⁄4 in)"
|
36,804 |
<question>: What was the number of viewers in millions for the broadcast from 2010? <context>: CREATE TABLE table_24212608_1 (viewers__millions_ VARCHAR, broadcast_date VARCHAR)
|
SELECT viewers__millions_ FROM table_24212608_1 WHERE broadcast_date = 2010
|
36,805 |
<question>: Who starred in episode 3? <context>: CREATE TABLE table_24212608_1 (starring VARCHAR, episode VARCHAR)
|
SELECT starring FROM table_24212608_1 WHERE episode = 3
|
36,806 |
<question>: How many episodes were broadcast in 2010? <context>: CREATE TABLE table_24212608_1 (episode VARCHAR, broadcast_date VARCHAR)
|
SELECT COUNT(episode) FROM table_24212608_1 WHERE broadcast_date = 2010
|
36,807 |
<question>: Who was the radio 1 presenter for the broadcast that had 9.73 million viewers? <context>: CREATE TABLE table_24212608_1 (radio_1_presenter VARCHAR, viewers__millions_ VARCHAR)
|
SELECT radio_1_presenter FROM table_24212608_1 WHERE viewers__millions_ = "9.73"
|
36,808 |
<question>: Name the powertrain for kmd and c40lf <context>: CREATE TABLE table_24193494_3 (powertrain__engine_transmission_ VARCHAR, division VARCHAR, model VARCHAR)
|
SELECT powertrain__engine_transmission_ FROM table_24193494_3 WHERE division = "KMD" AND model = "C40LF"
|
36,809 |
<question>: Name the division for detroit diesel series 50egr allison wb-400r <context>: CREATE TABLE table_24193494_3 (division VARCHAR, powertrain__engine_transmission_ VARCHAR)
|
SELECT division FROM table_24193494_3 WHERE powertrain__engine_transmission_ = "Detroit Diesel Series 50EGR Allison WB-400R"
|
36,810 |
<question>: Name the manufacturer for 2011 <context>: CREATE TABLE table_24193494_3 (manufacturer VARCHAR, order_year VARCHAR)
|
SELECT manufacturer FROM table_24193494_3 WHERE order_year = 2011
|
36,811 |
<question>: List the number of locations for the team known as the billikens. <context>: CREATE TABLE table_2419754_1 (location VARCHAR, nickname VARCHAR)
|
SELECT COUNT(location) FROM table_2419754_1 WHERE nickname = "Billikens"
|
36,812 |
<question>: How many people are enrolled at the university in milwaukee, wisconsin <context>: CREATE TABLE table_2419754_1 (enrollment INTEGER, location VARCHAR)
|
SELECT MIN(enrollment) FROM table_2419754_1 WHERE location = "Milwaukee, Wisconsin"
|
36,813 |
<question>: In what year did the teams leave the conference? <context>: CREATE TABLE table_2419754_1 (left INTEGER)
|
SELECT MAX(left) FROM table_2419754_1
|
36,814 |
<question>: What university team is referred to as the tigers? <context>: CREATE TABLE table_2419754_1 (institution VARCHAR, nickname VARCHAR)
|
SELECT institution FROM table_2419754_1 WHERE nickname = "Tigers"
|
36,815 |
<question>: When 43.048° n is the latitude what is the magnitude? <context>: CREATE TABLE table_24192190_1 (magnitude VARCHAR, latitude VARCHAR)
|
SELECT magnitude FROM table_24192190_1 WHERE latitude = "43.048° N"
|
36,816 |
<question>: When 9:47:38 is the time (utc) how many measurements of latitude are there? <context>: CREATE TABLE table_24192190_1 (latitude VARCHAR, time__utc_ VARCHAR)
|
SELECT COUNT(latitude) FROM table_24192190_1 WHERE time__utc_ = "9:47:38"
|
36,817 |
<question>: When 42.903° n is the latitude how many measurements of longitude are there? <context>: CREATE TABLE table_24192190_1 (longitude VARCHAR, latitude VARCHAR)
|
SELECT COUNT(longitude) FROM table_24192190_1 WHERE latitude = "42.903° N"
|
36,818 |
<question>: When 11:40:26 is the time (utc) what is the depth? <context>: CREATE TABLE table_24192190_1 (depth VARCHAR, time__utc_ VARCHAR)
|
SELECT depth FROM table_24192190_1 WHERE time__utc_ = "11:40:26"
|
36,819 |
<question>: Who is every main presenter for the year 2011? <context>: CREATE TABLE table_24224647_2 (main_presenter VARCHAR, year_premiered VARCHAR)
|
SELECT main_presenter FROM table_24224647_2 WHERE year_premiered = 2011
|
36,820 |
<question>: Who is every main presenter for the Estonia region/country? <context>: CREATE TABLE table_24224647_2 (main_presenter VARCHAR, region_country VARCHAR)
|
SELECT main_presenter FROM table_24224647_2 WHERE region_country = "Estonia"
|
36,821 |
<question>: What is the highest year premiered for the TV2 network when main present is øyvind mund? <context>: CREATE TABLE table_24224647_2 (year_premiered INTEGER, network VARCHAR, main_presenter VARCHAR)
|
SELECT MAX(year_premiered) FROM table_24224647_2 WHERE network = "TV2" AND main_presenter = "Øyvind Mund"
|
36,822 |
<question>: How many years premiered have Sa Beining as main presenter? <context>: CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR)
|
SELECT COUNT(year_premiered) FROM table_24224647_2 WHERE main_presenter = "Sa Beining"
|
36,823 |
<question>: What is every year premiered when Behzat Uighur is main presenter? <context>: CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR)
|
SELECT year_premiered FROM table_24224647_2 WHERE main_presenter = "Behzat Uighur"
|
36,824 |
<question>: What is the highest year premiered when Benjamin Castaldi is main presenter? <context>: CREATE TABLE table_24224647_2 (year_premiered INTEGER, main_presenter VARCHAR)
|
SELECT MAX(year_premiered) FROM table_24224647_2 WHERE main_presenter = "Benjamin Castaldi"
|
36,825 |
<question>: Name the episode number for tasers and mind erasers <context>: CREATE TABLE table_24222929_4 (episode_number_production_number VARCHAR, title VARCHAR)
|
SELECT episode_number_production_number FROM table_24222929_4 WHERE title = "Tasers and Mind Erasers"
|
36,826 |
<question>: Name the original air date for 7 1-07 <context>: CREATE TABLE table_24222929_4 (original_airdate VARCHAR, episode_number_production_number VARCHAR)
|
SELECT original_airdate FROM table_24222929_4 WHERE episode_number_production_number = "7 1-07"
|
36,827 |
<question>: Name the total viewers on hallmark for pilot <context>: CREATE TABLE table_24222929_4 (total_viewers_on_hallmark VARCHAR, title VARCHAR)
|
SELECT total_viewers_on_hallmark + 1 FROM table_24222929_4 WHERE title = "Pilot"
|
36,828 |
<question>: Name the rank on channel mooning and crooning <context>: CREATE TABLE table_24222929_4 (rank_on_channel VARCHAR, title VARCHAR)
|
SELECT rank_on_channel FROM table_24222929_4 WHERE title = "Mooning and Crooning"
|
36,829 |
<question>: Name the rank on channel for pilot <context>: CREATE TABLE table_24222929_4 (rank_on_channel VARCHAR, title VARCHAR)
|
SELECT rank_on_channel FROM table_24222929_4 WHERE title = "Pilot"
|
36,830 |
<question>: What is the manner of departure for the team racing santander? <context>: CREATE TABLE table_24231638_3 (manner_of_departure VARCHAR, team VARCHAR)
|
SELECT manner_of_departure FROM table_24231638_3 WHERE team = "Racing Santander"
|
36,831 |
<question>: Who replaced on the date of appointment 2 november 2010? <context>: CREATE TABLE table_24231638_3 (replaced_by VARCHAR, date_of_appointment VARCHAR)
|
SELECT replaced_by FROM table_24231638_3 WHERE date_of_appointment = "2 November 2010"
|
36,832 |
<question>: What is the team for the position in table 19th? <context>: CREATE TABLE table_24231638_3 (team VARCHAR, position_in_table VARCHAR)
|
SELECT team FROM table_24231638_3 WHERE position_in_table = "19th"
|
36,833 |
<question>: What is the team that the replaced by is miroslav đukić? <context>: CREATE TABLE table_24231638_3 (team VARCHAR, replaced_by VARCHAR)
|
SELECT team FROM table_24231638_3 WHERE replaced_by = "Miroslav Đukić"
|
36,834 |
<question>: How many times was the date of vacancy 14 february 2011? <context>: CREATE TABLE table_24231638_3 (position_in_table VARCHAR, date_of_vacancy VARCHAR)
|
SELECT COUNT(position_in_table) FROM table_24231638_3 WHERE date_of_vacancy = "14 February 2011"
|
36,835 |
<question>: what is the date of appointment for the team osasuna? <context>: CREATE TABLE table_24231638_3 (date_of_appointment VARCHAR, team VARCHAR)
|
SELECT date_of_appointment FROM table_24231638_3 WHERE team = "Osasuna"
|
36,836 |
<question>: What is the lowest amount of L in any season? <context>: CREATE TABLE table_24224991_2 (l INTEGER)
|
SELECT MIN(l) FROM table_24224991_2
|
36,837 |
<question>: Name the total number of votes for 3rd voted out day 9 <context>: CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR)
|
SELECT COUNT(vote) FROM table_24233848_2 WHERE finish = "3rd voted Out Day 9"
|
36,838 |
<question>: Name the eliminated 7th voted out day 21 <context>: CREATE TABLE table_24233848_2 (eliminated VARCHAR, finish VARCHAR)
|
SELECT eliminated FROM table_24233848_2 WHERE finish = "7th voted Out Day 21"
|
36,839 |
<question>: Name the vote for thiago <context>: CREATE TABLE table_24233848_2 (vote VARCHAR, eliminated VARCHAR)
|
SELECT vote FROM table_24233848_2 WHERE eliminated = "Thiago"
|
36,840 |
<question>: Name the vote for 9th voted out day 22 <context>: CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR)
|
SELECT vote FROM table_24233848_2 WHERE finish = "9th voted Out Day 22"
|
36,841 |
<question>: Name the reward eliminated hilca <context>: CREATE TABLE table_24233848_2 (reward VARCHAR, eliminated VARCHAR)
|
SELECT reward FROM table_24233848_2 WHERE eliminated = "Hilca"
|
36,842 |
<question>: When the country is vest, what were the exports? <context>: CREATE TABLE table_24239748_2 (exports__us$_mil_ VARCHAR, county VARCHAR)
|
SELECT exports__us$_mil_ FROM table_24239748_2 WHERE county = "Vest"
|
36,843 |
<question>: What was the major version when the webkit version was 528.17? <context>: CREATE TABLE table_24257833_4 (major_version VARCHAR, webkit_version VARCHAR)
|
SELECT major_version FROM table_24257833_4 WHERE webkit_version = "528.17"
|
36,844 |
<question>: List major versions released on May 12, 2009, that had a minor version of 3.2.3. <context>: CREATE TABLE table_24257833_4 (major_version VARCHAR, release_date VARCHAR, minor_version VARCHAR)
|
SELECT major_version FROM table_24257833_4 WHERE release_date = "May 12, 2009" AND minor_version = "3.2.3"
|
36,845 |
<question>: What was the minor version released on April 16, 2008? <context>: CREATE TABLE table_24257833_4 (minor_version VARCHAR, release_date VARCHAR)
|
SELECT minor_version FROM table_24257833_4 WHERE release_date = "April 16, 2008"
|
36,846 |
<question>: List all webkit versions when the major version was Safari 3, and the minor version was 3.1.2. <context>: CREATE TABLE table_24257833_4 (webkit_version VARCHAR, major_version VARCHAR, minor_version VARCHAR)
|
SELECT webkit_version FROM table_24257833_4 WHERE major_version = "Safari 3" AND minor_version = "3.1.2"
|
36,847 |
<question>: List all OS's with a webkit version of 525.29.1. <context>: CREATE TABLE table_24257833_4 (operating_system VARCHAR, webkit_version VARCHAR)
|
SELECT operating_system FROM table_24257833_4 WHERE webkit_version = "525.29.1"
|
36,848 |
<question>: What is the webkit version when the minor version was 3.1.2.? <context>: CREATE TABLE table_24257833_4 (webkit_version VARCHAR, minor_version VARCHAR)
|
SELECT webkit_version FROM table_24257833_4 WHERE minor_version = "3.1.2"
|
36,849 |
<question>: What was the main legion base for the Romans when the notes were "primigenia goddess of fate. xx in batavi revolt"? <context>: CREATE TABLE table_242785_3 (main_legion_base VARCHAR, notes VARCHAR)
|
SELECT main_legion_base FROM table_242785_3 WHERE notes = "Primigenia goddess of Fate. XX in Batavi revolt"
|
36,850 |
<question>: What are the notes during 57 bc caesar? <context>: CREATE TABLE table_242785_3 (notes VARCHAR, date_founded__founder VARCHAR)
|
SELECT notes FROM table_242785_3 WHERE date_founded__founder = "57 BC Caesar"
|
36,851 |
<question>: What is the date founded/founder when the emblem was Hercules? <context>: CREATE TABLE table_242785_3 (date_founded__founder VARCHAR, emblem VARCHAR)
|
SELECT date_founded__founder FROM table_242785_3 WHERE emblem = "Hercules"
|
36,852 |
<question>: What is the main legion base that disbanded 70 xx? <context>: CREATE TABLE table_242785_3 (main_legion_base VARCHAR, date_disband VARCHAR)
|
SELECT main_legion_base FROM table_242785_3 WHERE date_disband = "70 XX"
|
36,853 |
<question>: When did svishtov , bulgaria disband? <context>: CREATE TABLE table_242785_1 (date_disband VARCHAR, main_legionary_base VARCHAR)
|
SELECT date_disband FROM table_242785_1 WHERE main_legionary_base = "Svishtov , Bulgaria"
|
36,854 |
<question>: when notes are prima italica:raised for aborted caucasus war, when was that founded? <context>: CREATE TABLE table_242785_1 (date_founded__founder VARCHAR, notes VARCHAR)
|
SELECT date_founded__founder FROM table_242785_1 WHERE notes = "prima Italica:raised for aborted Caucasus war"
|
36,855 |
<question>: What are the notes for svishtov , bulgaria? <context>: CREATE TABLE table_242785_1 (notes VARCHAR, main_legionary_base VARCHAR)
|
SELECT notes FROM table_242785_1 WHERE main_legionary_base = "Svishtov , Bulgaria"
|
36,856 |
<question>: Name the team ranked 4 <context>: CREATE TABLE table_242813_2 (team VARCHAR, overall_rank VARCHAR)
|
SELECT COUNT(team) FROM table_242813_2 WHERE overall_rank = 4
|
36,857 |
<question>: Name the league for strikeouts being 451 <context>: CREATE TABLE table_242813_2 (league VARCHAR, strikeouts VARCHAR)
|
SELECT league FROM table_242813_2 WHERE strikeouts = 451
|
36,858 |
<question>: Name the most overall rank for nl/ua league <context>: CREATE TABLE table_242813_2 (overall_rank INTEGER, league VARCHAR)
|
SELECT MAX(overall_rank) FROM table_242813_2 WHERE league = "NL/UA"
|
36,859 |
<question>: Name the total number of pitcher for 9 overall rank <context>: CREATE TABLE table_242813_2 (pitcher VARCHAR, overall_rank VARCHAR)
|
SELECT COUNT(pitcher) FROM table_242813_2 WHERE overall_rank = 9
|
36,860 |
<question>: Name the most season for old hoss radbourn <context>: CREATE TABLE table_242813_2 (season INTEGER, pitcher VARCHAR)
|
SELECT MAX(season) FROM table_242813_2 WHERE pitcher = "Old Hoss Radbourn"
|
36,861 |
<question>: What week did they play the amsterdam admirals? <context>: CREATE TABLE table_24278858_2 (week INTEGER, opponent VARCHAR)
|
SELECT MAX(week) FROM table_24278858_2 WHERE opponent = "Amsterdam Admirals"
|
36,862 |
<question>: What date did the team play on week 8? <context>: CREATE TABLE table_24278858_2 (date VARCHAR, week VARCHAR)
|
SELECT date FROM table_24278858_2 WHERE week = 8
|
36,863 |
<question>: What country has the most height in the northwestern peak of rysy? <context>: CREATE TABLE table_24285393_1 (country_or_region VARCHAR, highest_point VARCHAR)
|
SELECT country_or_region FROM table_24285393_1 WHERE highest_point = "Northwestern peak of Rysy"
|
36,864 |
<question>: What are the highest point in latvia <context>: CREATE TABLE table_24285393_1 (highest_point VARCHAR, country_or_region VARCHAR)
|
SELECT highest_point FROM table_24285393_1 WHERE country_or_region = "Latvia"
|
36,865 |
<question>: What is the maximum elevation in netherlands? <context>: CREATE TABLE table_24285393_1 (maximum_elevation VARCHAR, country_or_region VARCHAR)
|
SELECT maximum_elevation FROM table_24285393_1 WHERE country_or_region = "Netherlands"
|
36,866 |
<question>: In what country is mont sokbaro a highest point <context>: CREATE TABLE table_24285393_1 (country_or_region VARCHAR, highest_point VARCHAR)
|
SELECT country_or_region FROM table_24285393_1 WHERE highest_point = "Mont Sokbaro"
|
36,867 |
<question>: how many times was third place held by drnovice? <context>: CREATE TABLE table_2429942_2 (club VARCHAR, third_place VARCHAR)
|
SELECT COUNT(club) FROM table_2429942_2 WHERE third_place = "Drnovice"
|
36,868 |
<question>: Who is the top goalscorer for the season 2010-11? <context>: CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR)
|
SELECT top_goalscorer FROM table_2429942_2 WHERE season = "2010-11"
|
36,869 |
<question>: Who had third place when the champions is baník ostrava (1)? <context>: CREATE TABLE table_2429942_2 (third_place VARCHAR, champions VARCHAR)
|
SELECT third_place FROM table_2429942_2 WHERE champions = "Baník Ostrava (1)"
|
36,870 |
<question>: Who was the top goalscorer for season 2001-02? <context>: CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR)
|
SELECT top_goalscorer FROM table_2429942_2 WHERE season = "2001-02"
|
36,871 |
<question>: Who is the runner-up for the season 2008-09? <context>: CREATE TABLE table_2429942_2 (runner_up VARCHAR, season VARCHAR)
|
SELECT runner_up FROM table_2429942_2 WHERE season = "2008-09"
|
36,872 |
<question>: Who is the top goalscorer for season 1998-99? <context>: CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR)
|
SELECT top_goalscorer FROM table_2429942_2 WHERE season = "1998-99"
|
36,873 |
<question>: Name the written by for john trefor <context>: CREATE TABLE table_2430014_6 (written_by VARCHAR, directed_by VARCHAR)
|
SELECT written_by FROM table_2430014_6 WHERE directed_by = "John Trefor"
|
36,874 |
<question>: How many directors worked on the episode with 2.27m (5) is the ratings? <context>: CREATE TABLE table_2430014_8 (directed_by VARCHAR, uk_ratings__bbc2_rank_ VARCHAR)
|
SELECT COUNT(directed_by) FROM table_2430014_8 WHERE uk_ratings__bbc2_rank_ = "2.27m (5)"
|
36,875 |
<question>: What is the title of episode 2? <context>: CREATE TABLE table_2430014_8 (title VARCHAR, episode_no VARCHAR)
|
SELECT title FROM table_2430014_8 WHERE episode_no = 2
|
36,876 |
<question>: Who wrote the episode what had the rating 2.27m (5)? <context>: CREATE TABLE table_2430014_8 (written_by VARCHAR, uk_ratings__bbc2_rank_ VARCHAR)
|
SELECT written_by FROM table_2430014_8 WHERE uk_ratings__bbc2_rank_ = "2.27m (5)"
|
36,877 |
<question>: Name the 2013 profit for assets being 11.2 <context>: CREATE TABLE table_24307126_3 (assets_2013__bil$_ VARCHAR)
|
SELECT 2013 AS _profit__mil_usd__ FROM table_24307126_3 WHERE assets_2013__bil$_ = "11.2"
|
36,878 |
<question>: Name the assets when the rank is 1435 <context>: CREATE TABLE table_24307126_3 (assets_2013__bil$_ VARCHAR, rank_2013 VARCHAR)
|
SELECT assets_2013__bil$_ FROM table_24307126_3 WHERE rank_2013 = 1435
|
36,879 |
<question>: Name the number of rank for april 2013 for 2012 ran kbeing 225 <context>: CREATE TABLE table_24307126_3 (april_2013_cum_rank VARCHAR, rank_2012 VARCHAR)
|
SELECT COUNT(april_2013_cum_rank) FROM table_24307126_3 WHERE rank_2012 = 225
|
36,880 |
<question>: Name the number of assets for australia <context>: CREATE TABLE table_24307126_3 (assets_2013__bil VARCHAR, base VARCHAR)
|
SELECT COUNT(assets_2013__bil) AS $_ FROM table_24307126_3 WHERE base = "Australia"
|
36,881 |
<question>: What is the position of the player who got 6 (4 in 34.49s) in the 6 atlas stones event? <context>: CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR)
|
SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = "6 (4 in 34.49s)"
|
36,882 |
<question>: Who are all the players from the united states? <context>: CREATE TABLE table_24302700_6 (name VARCHAR, nationality VARCHAR)
|
SELECT name FROM table_24302700_6 WHERE nationality = "United States"
|
36,883 |
<question>: What is the score in the 6 atlas stones event of the player who got 2 (6 in 30.89s) in the 3 dead lift event? <context>: CREATE TABLE table_24302700_6 (event_6_atlas_stones VARCHAR, event_3_dead_lift VARCHAR)
|
SELECT COUNT(event_6_atlas_stones) FROM table_24302700_6 WHERE event_3_dead_lift = "2 (6 in 30.89s)"
|
36,884 |
<question>: What is the position of the player with a 5 (4 in 32.66s) in the 6 atlas stones event? <context>: CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR)
|
SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = "5 (4 in 32.66s)"
|
36,885 |
<question>: What is the score in the 2 truck pull of the player who got 1 (5 in 33.84s) in the 4 fingals fingers? <context>: CREATE TABLE table_24302700_6 (event_2_truck_pull VARCHAR, event_4_fingals_fingers VARCHAR)
|
SELECT event_2_truck_pull FROM table_24302700_6 WHERE event_4_fingals_fingers = "1 (5 in 33.84s)"
|
36,886 |
<question>: When 0 is the top 10's what is the highest amount of cuts made? <context>: CREATE TABLE table_24330912_1 (cuts_made INTEGER, top_10s VARCHAR)
|
SELECT MAX(cuts_made) FROM table_24330912_1 WHERE top_10s = 0
|
36,887 |
<question>: What is the lowest overall amount of times they've been in 3rd? <context>: CREATE TABLE table_24330912_1 (Id VARCHAR)
|
SELECT MIN(3 AS rd) FROM table_24330912_1
|
36,888 |
<question>: When 2011 is the year what is the lowest money list rank? <context>: CREATE TABLE table_24330912_1 (money_list_rank INTEGER, year VARCHAR)
|
SELECT MIN(money_list_rank) FROM table_24330912_1 WHERE year = 2011
|
36,889 |
<question>: What is the lowest overall money list rank? <context>: CREATE TABLE table_24330912_1 (money_list_rank INTEGER)
|
SELECT MIN(money_list_rank) FROM table_24330912_1
|
36,890 |
<question>: When t3 is the best finish what is the lowest amount of tournaments played? <context>: CREATE TABLE table_24330912_1 (tournaments_played INTEGER, best_finish VARCHAR)
|
SELECT MIN(tournaments_played) FROM table_24330912_1 WHERE best_finish = "T3"
|
36,891 |
<question>: What is the latest amount of won legs in the payoffs when the prize money was £2,350? <context>: CREATE TABLE table_24334163_1 (Winners INTEGER, total_money_won VARCHAR)
|
SELECT MAX(Winners) AS play_off_legs_won FROM table_24334163_1 WHERE total_money_won = "£2,350"
|
36,892 |
<question>: How many group legs were won with player Mark Dudbridge? <context>: CREATE TABLE table_24334163_1 (Winners VARCHAR, player VARCHAR)
|
SELECT Winners AS group_legs_won FROM table_24334163_1 WHERE player = "Mark Dudbridge"
|
36,893 |
<question>: What is the highest amount of group legs won when the prize money was £21,850? <context>: CREATE TABLE table_24334163_1 (Winners INTEGER, total_money_won VARCHAR)
|
SELECT MAX(Winners) AS group_legs_won FROM table_24334163_1 WHERE total_money_won = "£21,850"
|
36,894 |
<question>: How many play-off legs were won when the prize money was £10,300? <context>: CREATE TABLE table_24334163_1 (Winners VARCHAR, total_money_won VARCHAR)
|
SELECT COUNT(Winners) AS play_off_legs_won FROM table_24334163_1 WHERE total_money_won = "£10,300"
|
36,895 |
<question>: What is the least amount of playoff legs won? <context>: CREATE TABLE table_24334163_1 (Winners INTEGER)
|
SELECT MIN(Winners) AS play_off_legs_won FROM table_24334163_1
|
36,896 |
<question>: Who directed episode 53 in the series? <context>: CREATE TABLE table_24319661_5 (directed_by VARCHAR, no_in_series VARCHAR)
|
SELECT directed_by FROM table_24319661_5 WHERE no_in_series = 53
|
36,897 |
<question>: What as the production code for the episode directed by Robert Duncan McNeill? <context>: CREATE TABLE table_24319661_5 (production_code VARCHAR, directed_by VARCHAR)
|
SELECT production_code FROM table_24319661_5 WHERE directed_by = "Robert Duncan McNeill"
|
36,898 |
<question>: What episode number of the season had BCW410 as a production code? <context>: CREATE TABLE table_24319661_5 (no_in_season VARCHAR, production_code VARCHAR)
|
SELECT no_in_season FROM table_24319661_5 WHERE production_code = "BCW410"
|
36,899 |
<question>: What episode number in the series had 2.77 million U.S. viewers? <context>: CREATE TABLE table_24319661_5 (no_in_series INTEGER, us_viewers__million_ VARCHAR)
|
SELECT MAX(no_in_series) FROM table_24319661_5 WHERE us_viewers__million_ = "2.77"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.