Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
28,000 | <question>: Which college has the player Rushel Shell? <context>: CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR) | SELECT college FROM table_11677691_5 WHERE player = "Rushel Shell" |
28,001 | <question>: Which players attend Stanford college? <context>: CREATE TABLE table_11677691_5 (player VARCHAR, college VARCHAR) | SELECT player FROM table_11677691_5 WHERE college = "Stanford" |
28,002 | <question>: Which school is in the hometown of Aledo, Texas? <context>: CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_11677691_5 WHERE hometown = "Aledo, Texas" |
28,003 | <question>: Zach Banner is a player at which school? <context>: CREATE TABLE table_11677691_5 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677691_5 WHERE player = "Zach Banner" |
28,004 | <question>: What position is associated with the hometown of Olney, Maryland? <context>: CREATE TABLE table_11677691_5 (position VARCHAR, hometown VARCHAR) | SELECT COUNT(position) FROM table_11677691_5 WHERE hometown = "Olney, Maryland" |
28,005 | <question>: Which college does the player John Theus associate with? <context>: CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR) | SELECT college FROM table_11677691_5 WHERE player = "John Theus" |
28,006 | <question>: What player's hometown is Abilene, Texas? <context>: CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR) | SELECT player FROM table_11677691_3 WHERE hometown = "Abilene, Texas" |
28,007 | <question>: How many players are from Indianapolis, Indiana? <context>: CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR) | SELECT COUNT(player) FROM table_11677691_3 WHERE hometown = "Indianapolis, Indiana" |
28,008 | <question>: What position is Charone Peake? <context>: CREATE TABLE table_11677691_3 (position VARCHAR, player VARCHAR) | SELECT position FROM table_11677691_3 WHERE player = "Charone Peake" |
28,009 | <question>: Running back Aaron Green went to Nebraska and what high school? <context>: CREATE TABLE table_11677691_3 (school VARCHAR, position VARCHAR, college VARCHAR) | SELECT school FROM table_11677691_3 WHERE position = "Running back" AND college = "Nebraska" |
28,010 | <question>: What player's hometown is Roebuck, South Carolina? <context>: CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR) | SELECT player FROM table_11677691_3 WHERE hometown = "Roebuck, South Carolina" |
28,011 | <question>: what are all the positions of players who's hometown is concord, california <context>: CREATE TABLE table_11677691_12 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_11677691_12 WHERE hometown = "Concord, California" |
28,012 | <question>: who are all the players for st. thomas aquinas high school <context>: CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR) | SELECT player FROM table_11677691_12 WHERE school = "St. Thomas Aquinas High school" |
28,013 | <question>: who are all the players for mission viejo high school <context>: CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR) | SELECT player FROM table_11677691_12 WHERE school = "Mission Viejo High school" |
28,014 | <question>: What is the hometown of the players for de la salle high school <context>: CREATE TABLE table_11677691_12 (hometown VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677691_12 WHERE school = "De La Salle High school" |
28,015 | <question>: who are all the players for armwood high school <context>: CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR) | SELECT player FROM table_11677691_12 WHERE school = "Armwood High school" |
28,016 | <question>: What is the hometown of the players for placer, california <context>: CREATE TABLE table_11677691_12 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_11677691_12 WHERE hometown = "Placer, California" |
28,017 | <question>: What is the nba draft for the player from the hometown of virginia beach, va? <context>: CREATE TABLE table_11677760_1 (nba_draft VARCHAR, hometown VARCHAR) | SELECT nba_draft FROM table_11677760_1 WHERE hometown = "Virginia Beach, VA" |
28,018 | <question>: what is the college for the player who's school is camden high school? <context>: CREATE TABLE table_11677760_1 (college VARCHAR, school VARCHAR) | SELECT college FROM table_11677760_1 WHERE school = "Camden High school" |
28,019 | <question>: what is the year for player is derrick favors? <context>: CREATE TABLE table_11677760_1 (year VARCHAR, player VARCHAR) | SELECT year FROM table_11677760_1 WHERE player = "Derrick Favors" |
28,020 | <question>: how many times was the player felipe lopez? <context>: CREATE TABLE table_11677760_1 (nba_draft VARCHAR, player VARCHAR) | SELECT COUNT(nba_draft) FROM table_11677760_1 WHERE player = "Felipe Lopez" |
28,021 | <question>: what is the college for the player damon bailey? <context>: CREATE TABLE table_11677760_1 (college VARCHAR, player VARCHAR) | SELECT college FROM table_11677760_1 WHERE player = "Damon Bailey" |
28,022 | <question>: what is the player who's college is listed as direct to nba, school is st. vincent – st. mary high school and the year is 2001-2002? <context>: CREATE TABLE table_11677760_1 (player VARCHAR, year VARCHAR, college VARCHAR, school VARCHAR) | SELECT player FROM table_11677760_1 WHERE college = "Direct to NBA" AND school = "St. Vincent – St. Mary High school" AND year = "2001-2002" |
28,023 | <question>: Which hometown has the college Louisiana State? <context>: CREATE TABLE table_11677691_9 (hometown VARCHAR, college VARCHAR) | SELECT hometown FROM table_11677691_9 WHERE college = "Louisiana State" |
28,024 | <question>: Which college is present in the hometown of Crete, Illinois? <context>: CREATE TABLE table_11677691_9 (college VARCHAR, hometown VARCHAR) | SELECT college FROM table_11677691_9 WHERE hometown = "Crete, Illinois" |
28,025 | <question>: Which school has the player Thomas Tyner? <context>: CREATE TABLE table_11677691_9 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677691_9 WHERE player = "Thomas Tyner" |
28,026 | <question>: Which school is located in the hometown of Centerville, Ohio? <context>: CREATE TABLE table_11677691_9 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_11677691_9 WHERE hometown = "Centerville, Ohio" |
28,027 | <question>: What player is from Ohio State college? <context>: CREATE TABLE table_11677691_9 (player VARCHAR, college VARCHAR) | SELECT player FROM table_11677691_9 WHERE college = "Ohio State" |
28,028 | <question>: Where is scott starr from? <context>: CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR) | SELECT hometown FROM table_11677691_6 WHERE player = "Scott Starr" |
28,029 | <question>: Where is lincoln high school located? <context>: CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677691_6 WHERE school = "Lincoln High school" |
28,030 | <question>: Where is Shaq Thompson from? <context>: CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR) | SELECT hometown FROM table_11677691_6 WHERE player = "Shaq Thompson" |
28,031 | <question>: Where did Darius Hamilton go? <context>: CREATE TABLE table_11677691_6 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677691_6 WHERE player = "Darius Hamilton" |
28,032 | <question>: Where is Norco HIgh School? <context>: CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677691_6 WHERE school = "Norco High school" |
28,033 | <question>: What is the height of the player that went to ohio state? <context>: CREATE TABLE table_11677760_31 (height VARCHAR, college VARCHAR) | SELECT height FROM table_11677760_31 WHERE college = "Ohio State" |
28,034 | <question>: Name the total number of nba drafts that went to east side high school <context>: CREATE TABLE table_11677760_31 (nba_draft VARCHAR, school VARCHAR) | SELECT COUNT(nba_draft) FROM table_11677760_31 WHERE school = "East Side High school" |
28,035 | <question>: Name the numbers of the nba draft where the player went to kentucky <context>: CREATE TABLE table_11677760_31 (nba_draft VARCHAR, college VARCHAR) | SELECT nba_draft FROM table_11677760_31 WHERE college = "Kentucky" |
28,036 | <question>: What was the rating in 1997? <context>: CREATE TABLE table_11691212_2 (ratings VARCHAR, year VARCHAR) | SELECT ratings FROM table_11691212_2 WHERE year = 1997 |
28,037 | <question>: Who narrated the lap-by-lap to a 13.4 million audience? <context>: CREATE TABLE table_11691212_2 (lap_by_lap VARCHAR, viewers VARCHAR) | SELECT lap_by_lap FROM table_11691212_2 WHERE viewers = "13.4 million" |
28,038 | <question>: What was the number for Bötzow where Vehlefanz is 1.800? <context>: CREATE TABLE table_11680175_1 (bötzow VARCHAR, vehlefanz VARCHAR) | SELECT bötzow FROM table_11680175_1 WHERE vehlefanz = "1.800" |
28,039 | <question>: What was the number for Vehlefanz where Bärenklau is 1.288? <context>: CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, bärenklau VARCHAR) | SELECT vehlefanz FROM table_11680175_1 WHERE bärenklau = "1.288" |
28,040 | <question>: What was the number for Schwante where Bärenklau is 1.270? <context>: CREATE TABLE table_11680175_1 (schwante VARCHAR, bärenklau VARCHAR) | SELECT schwante FROM table_11680175_1 WHERE bärenklau = "1.270" |
28,041 | <question>: How many years where Neu-Vehlefanz had a number of 365? <context>: CREATE TABLE table_11680175_1 (year VARCHAR, Neu VARCHAR, vehlefanz VARCHAR) | SELECT COUNT(year) FROM table_11680175_1 WHERE Neu - vehlefanz = 365 |
28,042 | <question>: How many times did Neu-Vehlefanz occur when Schwante had 2.043? <context>: CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, Neu VARCHAR, schwante VARCHAR) | SELECT COUNT(Neu) - vehlefanz FROM table_11680175_1 WHERE schwante = "2.043" |
28,043 | <question>: How many years where Eichstädt had a number of 939? <context>: CREATE TABLE table_11680175_1 (year VARCHAR, eichstädt VARCHAR) | SELECT COUNT(year) FROM table_11680175_1 WHERE eichstädt = 939 |
28,044 | <question>: How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit? <context>: CREATE TABLE table_11713303_2 (replaced_by VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR) | SELECT COUNT(replaced_by) FROM table_11713303_2 WHERE date_of_appointment = "10 December 2007" AND manner_of_departure = "Quit" |
28,045 | <question>: What is the date of vacancy for 10 december 2007 when quit? <context>: CREATE TABLE table_11713303_2 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR) | SELECT date_of_vacancy FROM table_11713303_2 WHERE date_of_appointment = "10 December 2007" AND manner_of_departure = "Quit" |
28,046 | <question>: How many manners of departure did peter voets have? <context>: CREATE TABLE table_11713303_2 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT COUNT(manner_of_departure) FROM table_11713303_2 WHERE outgoing_manager = "Peter Voets" |
28,047 | <question>: What is the link abilities when the predecessors is ti-85? <context>: CREATE TABLE table_11703336_1 (link_abilities VARCHAR, predecessors VARCHAR) | SELECT link_abilities FROM table_11703336_1 WHERE predecessors = "TI-85" |
28,048 | <question>: What is the cpu of the calculator released in 1993? <context>: CREATE TABLE table_11703336_1 (cpu VARCHAR, year_released VARCHAR) | SELECT cpu FROM table_11703336_1 WHERE year_released = "1993" |
28,049 | <question>: what is the display size for the calculator released in 1997? <context>: CREATE TABLE table_11703336_1 (display_size VARCHAR, year_released VARCHAR) | SELECT display_size FROM table_11703336_1 WHERE year_released = "1997" |
28,050 | <question>: what is the display size for the calculator ti-82? <context>: CREATE TABLE table_11703336_1 (display_size VARCHAR, calculator VARCHAR) | SELECT display_size FROM table_11703336_1 WHERE calculator = "TI-82" |
28,051 | <question>: what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters? <context>: CREATE TABLE table_11703336_1 (cpu VARCHAR, ram VARCHAR, display_size VARCHAR) | SELECT cpu FROM table_11703336_1 WHERE ram = "28 KB of ram" AND display_size = "128×64 pixels 21×8 characters" |
28,052 | <question>: Who was the dirctor for season 13? <context>: CREATE TABLE table_11715748_2 (director_s_ VARCHAR, season__number VARCHAR) | SELECT director_s_ FROM table_11715748_2 WHERE season__number = 13 |
28,053 | <question>: What is the episode title of the show that had a production code of 3T5764? <context>: CREATE TABLE table_11694832_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_11694832_1 WHERE production_code = "3T5764" |
28,054 | <question>: What is the first series number that Adele Lim wrote? <context>: CREATE TABLE table_11694832_1 (no_in_series INTEGER, written_by VARCHAR) | SELECT MIN(no_in_series) FROM table_11694832_1 WHERE written_by = "Adele Lim" |
28,055 | <question>: How many millions of U.S. viewers watched the show with a production code of 3T5769? <context>: CREATE TABLE table_11694832_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR) | SELECT us_viewers__millions_ FROM table_11694832_1 WHERE production_code = "3T5769" |
28,056 | <question>: When was the show first aired that was viewed by 3.57 million U.S. viewers? <context>: CREATE TABLE table_11694832_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | SELECT original_air_date FROM table_11694832_1 WHERE us_viewers__millions_ = "3.57" |
28,057 | <question>: Who directed the show that was viewed by 2.06 million U.S. people? <context>: CREATE TABLE table_11694832_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT directed_by FROM table_11694832_1 WHERE us_viewers__millions_ = "2.06" |
28,058 | <question>: What is the position of the player that came from the school/club team/country of Purdue? <context>: CREATE TABLE table_11734041_11 (position VARCHAR, school_club_team_country VARCHAR) | SELECT position FROM table_11734041_11 WHERE school_club_team_country = "Purdue" |
28,059 | <question>: Who is the player who's number is 3? <context>: CREATE TABLE table_11734041_11 (player VARCHAR, no_s_ VARCHAR) | SELECT player FROM table_11734041_11 WHERE no_s_ = "3" |
28,060 | <question>: What is the height for the player in 1968-72? <context>: CREATE TABLE table_11734041_11 (height_in_ft VARCHAR, years_for_rockets VARCHAR) | SELECT height_in_ft FROM table_11734041_11 WHERE years_for_rockets = "1968-72" |
28,061 | <question>: Which player had a height of 6-0? <context>: CREATE TABLE table_11734041_11 (player VARCHAR, height_in_ft VARCHAR) | SELECT player FROM table_11734041_11 WHERE height_in_ft = "6-0" |
28,062 | <question>: What is the position for the player that played in 2006? <context>: CREATE TABLE table_11734041_11 (position VARCHAR, years_for_rockets VARCHAR) | SELECT position FROM table_11734041_11 WHERE years_for_rockets = "2006" |
28,063 | <question>: What are all the names of the players who are 7-0 tall? <context>: CREATE TABLE table_11734041_10 (player VARCHAR, height_in_ft VARCHAR) | SELECT player FROM table_11734041_10 WHERE height_in_ft = "7-0" |
28,064 | <question>: Kimball, toby toby kimball is a player; How many times at school/ club team/country was the player present? <context>: CREATE TABLE table_11734041_10 (school_club_team_country VARCHAR, player VARCHAR) | SELECT COUNT(school_club_team_country) FROM table_11734041_10 WHERE player = "Kimball, Toby Toby Kimball" |
28,065 | <question>: In connecticut the school/club team/country had a set height in ft. what is true for them? <context>: CREATE TABLE table_11734041_10 (height_in_ft VARCHAR, school_club_team_country VARCHAR) | SELECT height_in_ft FROM table_11734041_10 WHERE school_club_team_country = "Connecticut" |
28,066 | <question>: Rockets height was 6-6 in feet, list the time frame where this was true? <context>: CREATE TABLE table_11734041_10 (years_for_rockets VARCHAR, height_in_ft VARCHAR) | SELECT years_for_rockets FROM table_11734041_10 WHERE height_in_ft = "6-6" |
28,067 | <question>: What is the hight of the player who's tenure lasted from 1969-70? <context>: CREATE TABLE table_11734041_17 (height_in_ft VARCHAR, years_for_rockets VARCHAR) | SELECT height_in_ft FROM table_11734041_17 WHERE years_for_rockets = "1969-70" |
28,068 | <question>: What school did the 7-4 player attend? <context>: CREATE TABLE table_11734041_17 (school_club_team_country VARCHAR, height_in_ft VARCHAR) | SELECT school_club_team_country FROM table_11734041_17 WHERE height_in_ft = "7-4" |
28,069 | <question>: what's the years for rockets where position is guard / forward <context>: CREATE TABLE table_11734041_20 (years_for_rockets VARCHAR, position VARCHAR) | SELECT years_for_rockets FROM table_11734041_20 WHERE position = "Guard / Forward" |
28,070 | <question>: what is the total number of player where years for rockets is 1975-79 <context>: CREATE TABLE table_11734041_20 (player VARCHAR, years_for_rockets VARCHAR) | SELECT COUNT(player) FROM table_11734041_20 WHERE years_for_rockets = "1975-79" |
28,071 | <question>: what is the total number of player where years for rockets is 2004-06 <context>: CREATE TABLE table_11734041_20 (player VARCHAR, years_for_rockets VARCHAR) | SELECT COUNT(player) FROM table_11734041_20 WHERE years_for_rockets = "2004-06" |
28,072 | <question>: what's the position where player is williams, bernie bernie williams <context>: CREATE TABLE table_11734041_20 (position VARCHAR, player VARCHAR) | SELECT position FROM table_11734041_20 WHERE player = "Williams, Bernie Bernie Williams" |
28,073 | <question>: what is the total number of years for rockets where school/club team/country is baylor <context>: CREATE TABLE table_11734041_20 (years_for_rockets VARCHAR, school_club_team_country VARCHAR) | SELECT COUNT(years_for_rockets) FROM table_11734041_20 WHERE school_club_team_country = "Baylor" |
28,074 | <question>: How many positions had jersey number 32 <context>: CREATE TABLE table_11734041_18 (position VARCHAR, no_s_ VARCHAR) | SELECT COUNT(position) FROM table_11734041_18 WHERE no_s_ = "32" |
28,075 | <question>: Which years had a jersey number 55 <context>: CREATE TABLE table_11734041_18 (years_for_rockets VARCHAR, no_s_ VARCHAR) | SELECT years_for_rockets FROM table_11734041_18 WHERE no_s_ = "55" |
28,076 | <question>: Which school, club team, or country played for the rockets in the years 2000-01? <context>: CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR) | SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = "2000-01" |
28,077 | <question>: During which years did number 13 play for the Rockets? <context>: CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR) | SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = "13" |
28,078 | <question>: What is the lowest date settled for chifley? <context>: CREATE TABLE table_1174162_1 (date_first_settled_as_a_suburb INTEGER, suburb VARCHAR) | SELECT MIN(date_first_settled_as_a_suburb) FROM table_1174162_1 WHERE suburb = "Chifley" |
28,079 | <question>: What is the density in Garran? <context>: CREATE TABLE table_1174162_1 (density___km²_ INTEGER, suburb VARCHAR) | SELECT MIN(density___km²_) FROM table_1174162_1 WHERE suburb = "Garran" |
28,080 | <question>: What is the date settled for 40 years? <context>: CREATE TABLE table_1174162_1 (date_first_settled_as_a_suburb VARCHAR, median_age__in_2006_ VARCHAR) | SELECT date_first_settled_as_a_suburb FROM table_1174162_1 WHERE median_age__in_2006_ = "40 years" |
28,081 | <question>: What is the median age where the area is 1.7? <context>: CREATE TABLE table_1174162_1 (median_age__in_2006_ VARCHAR, area__km²_ VARCHAR) | SELECT median_age__in_2006_ FROM table_1174162_1 WHERE area__km²_ = "1.7" |
28,082 | <question>: Who is the thursday presenter of the show Big Brother 13? <context>: CREATE TABLE table_11748792_2 (thursday VARCHAR, series VARCHAR) | SELECT thursday FROM table_11748792_2 WHERE series = "Big Brother 13" |
28,083 | <question>: Who is the friday presenter for each show, when the monday presenter is Emma Willis Jamie East? <context>: CREATE TABLE table_11748792_2 (friday VARCHAR, monday VARCHAR) | SELECT friday FROM table_11748792_2 WHERE monday = "Emma Willis Jamie East" |
28,084 | <question>: Who is the Tuesday presenter of Celebrity Big Brother 8? <context>: CREATE TABLE table_11748792_2 (tuesday VARCHAR, series VARCHAR) | SELECT tuesday FROM table_11748792_2 WHERE series = "Celebrity Big Brother 8" |
28,085 | <question>: Who is the Wednesday presenter of the show Big Brother 13? <context>: CREATE TABLE table_11748792_2 (wednesday VARCHAR, series VARCHAR) | SELECT wednesday FROM table_11748792_2 WHERE series = "Big Brother 13" |
28,086 | <question>: List all of the shows with Alice Levine Jamie East is the Sunday presenter. <context>: CREATE TABLE table_11748792_2 (series VARCHAR, sunday VARCHAR) | SELECT series FROM table_11748792_2 WHERE sunday = "Alice Levine Jamie East" |
28,087 | <question>: What are all the positions for the rockets in 2008? <context>: CREATE TABLE table_11734041_7 (position VARCHAR, years_for_rockets VARCHAR) | SELECT position FROM table_11734041_7 WHERE years_for_rockets = "2008" |
28,088 | <question>: What is the height of the school club team members in clemson? <context>: CREATE TABLE table_11734041_7 (height_in_ft VARCHAR, school_club_team_country VARCHAR) | SELECT height_in_ft FROM table_11734041_7 WHERE school_club_team_country = "Clemson" |
28,089 | <question>: What years for the rockets did player ford, alton alton ford play? <context>: CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR) | SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Alton Alton Ford" |
28,090 | <question>: What years for the rockets did the player ford, phil phil ford play? <context>: CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR) | SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Phil Phil Ford" |
28,091 | <question>: What school/club team/country did the player fitch, gerald gerald fitch play for? <context>: CREATE TABLE table_11734041_6 (school_club_team_country VARCHAR, player VARCHAR) | SELECT school_club_team_country FROM table_11734041_6 WHERE player = "Fitch, Gerald Gerald Fitch" |
28,092 | <question>: What is the weekly rank where the number is 4? <context>: CREATE TABLE table_11753080_2 (weekly_rank VARCHAR, _number VARCHAR) | SELECT weekly_rank FROM table_11753080_2 WHERE _number = 4 |
28,093 | <question>: What is the minimum of t20 matches? <context>: CREATE TABLE table_1176371_1 (t20_matches INTEGER) | SELECT MIN(t20_matches) FROM table_1176371_1 |
28,094 | <question>: Where is ropery lane located? <context>: CREATE TABLE table_1176371_1 (location VARCHAR, name_of_ground VARCHAR) | SELECT location FROM table_1176371_1 WHERE name_of_ground = "Ropery Lane" |
28,095 | <question>: Where is ropery lane and la matches 7 location? <context>: CREATE TABLE table_1176371_1 (location VARCHAR, la_matches VARCHAR, name_of_ground VARCHAR) | SELECT location FROM table_1176371_1 WHERE la_matches = 7 AND name_of_ground = "Ropery Lane" |
28,096 | <question>: What is the maximum fc matches? <context>: CREATE TABLE table_1176371_1 (fc_matches INTEGER) | SELECT MAX(fc_matches) FROM table_1176371_1 |
28,097 | <question>: What is the maximum fc matches at the racecourse? <context>: CREATE TABLE table_1176371_1 (fc_matches INTEGER, name_of_ground VARCHAR) | SELECT MAX(fc_matches) FROM table_1176371_1 WHERE name_of_ground = "The Racecourse" |
28,098 | <question>: What is the maximum t20 on green lane? <context>: CREATE TABLE table_1176371_1 (t20_matches INTEGER, name_of_ground VARCHAR) | SELECT MAX(t20_matches) FROM table_1176371_1 WHERE name_of_ground = "Green Lane" |
28,099 | <question>: what's the cylinders/ valves with model being 1.8 20v <context>: CREATE TABLE table_1176162_3 (cylinders__valves VARCHAR, model VARCHAR) | SELECT cylinders__valves FROM table_1176162_3 WHERE model = "1.8 20V" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.