question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Which college has the player Rushel Shell?
CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_11677691_5 WHERE player = \"Rushel Shell\"" }
Which players attend Stanford college?
CREATE TABLE table_11677691_5 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677691_5 WHERE college = \"Stanford\"" }
Which school is in the hometown of Aledo, Texas?
CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677691_5 WHERE hometown = \"Aledo, Texas\"" }
Zach Banner is a player at which school?
CREATE TABLE table_11677691_5 (school VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677691_5 WHERE player = \"Zach Banner\"" }
What position is associated with the hometown of Olney, Maryland?
CREATE TABLE table_11677691_5 (position VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_11677691_5 WHERE hometown = \"Olney, Maryland\"" }
Which college does the player John Theus associate with?
CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_11677691_5 WHERE player = \"John Theus\"" }
What player's hometown is Abilene, Texas?
CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677691_3 WHERE hometown = \"Abilene, Texas\"" }
How many players are from Indianapolis, Indiana?
CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT COUNT(player) FROM table_11677691_3 WHERE hometown = \"Indianapolis, Indiana\"" }
What position is Charone Peake?
CREATE TABLE table_11677691_3 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11677691_3 WHERE player = \"Charone Peake\"" }
Running back Aaron Green went to Nebraska and what high school?
CREATE TABLE table_11677691_3 (school VARCHAR, position VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677691_3 WHERE position = \"Running back\" AND college = \"Nebraska\"" }
What player's hometown is Roebuck, South Carolina?
CREATE TABLE table_11677691_3 (player VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677691_3 WHERE hometown = \"Roebuck, South Carolina\"" }
what are all the positions of players who's hometown is concord, california
CREATE TABLE table_11677691_12 (position VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11677691_12 WHERE hometown = \"Concord, California\"" }
who are all the players for st. thomas aquinas high school
CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677691_12 WHERE school = \"St. Thomas Aquinas High school\"" }
who are all the players for mission viejo high school
CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677691_12 WHERE school = \"Mission Viejo High school\"" }
What is the hometown of the players for de la salle high school
CREATE TABLE table_11677691_12 (hometown VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677691_12 WHERE school = \"De La Salle High school\"" }
who are all the players for armwood high school
CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677691_12 WHERE school = \"Armwood High school\"" }
What is the hometown of the players for placer, california
CREATE TABLE table_11677691_12 (school VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677691_12 WHERE hometown = \"Placer, California\"" }
What is the nba draft for the player from the hometown of virginia beach, va?
CREATE TABLE table_11677760_1 (nba_draft VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT nba_draft FROM table_11677760_1 WHERE hometown = \"Virginia Beach, VA\"" }
what is the college for the player who's school is camden high school?
CREATE TABLE table_11677760_1 (college VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT college FROM table_11677760_1 WHERE school = \"Camden High school\"" }
what is the year for player is derrick favors?
CREATE TABLE table_11677760_1 (year VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT year FROM table_11677760_1 WHERE player = \"Derrick Favors\"" }
how many times was the player felipe lopez?
CREATE TABLE table_11677760_1 (nba_draft VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(nba_draft) FROM table_11677760_1 WHERE player = \"Felipe Lopez\"" }
what is the college for the player damon bailey?
CREATE TABLE table_11677760_1 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_11677760_1 WHERE player = \"Damon Bailey\"" }
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?
CREATE TABLE table_11677760_1 (player VARCHAR, year VARCHAR, college VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677760_1 WHERE college = \"Direct to NBA\" AND school = \"St. Vincent – St. Mary High school\" AND year = \"2001-2002\"" }
Which hometown has the college Louisiana State?
CREATE TABLE table_11677691_9 (hometown VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677691_9 WHERE college = \"Louisiana State\"" }
Which college is present in the hometown of Crete, Illinois?
CREATE TABLE table_11677691_9 (college VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT college FROM table_11677691_9 WHERE hometown = \"Crete, Illinois\"" }
Which school has the player Thomas Tyner?
CREATE TABLE table_11677691_9 (school VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677691_9 WHERE player = \"Thomas Tyner\"" }
Which school is located in the hometown of Centerville, Ohio?
CREATE TABLE table_11677691_9 (school VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677691_9 WHERE hometown = \"Centerville, Ohio\"" }
What player is from Ohio State college?
CREATE TABLE table_11677691_9 (player VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11677691_9 WHERE college = \"Ohio State\"" }
Where is scott starr from?
CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677691_6 WHERE player = \"Scott Starr\"" }
Where is lincoln high school located?
CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677691_6 WHERE school = \"Lincoln High school\"" }
Where is Shaq Thompson from?
CREATE TABLE table_11677691_6 (hometown VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677691_6 WHERE player = \"Shaq Thompson\"" }
Where did Darius Hamilton go?
CREATE TABLE table_11677691_6 (school VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677691_6 WHERE player = \"Darius Hamilton\"" }
Where is Norco HIgh School?
CREATE TABLE table_11677691_6 (hometown VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677691_6 WHERE school = \"Norco High school\"" }
What is the height of the player that went to ohio state?
CREATE TABLE table_11677760_31 (height VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT height FROM table_11677760_31 WHERE college = \"Ohio State\"" }
Name the total number of nba drafts that went to east side high school
CREATE TABLE table_11677760_31 (nba_draft VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT COUNT(nba_draft) FROM table_11677760_31 WHERE school = \"East Side High school\"" }
Name the numbers of the nba draft where the player went to kentucky
CREATE TABLE table_11677760_31 (nba_draft VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT nba_draft FROM table_11677760_31 WHERE college = \"Kentucky\"" }
What was the rating in 1997?
CREATE TABLE table_11691212_2 (ratings VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT ratings FROM table_11691212_2 WHERE year = 1997" }
Who narrated the lap-by-lap to a 13.4 million audience?
CREATE TABLE table_11691212_2 (lap_by_lap VARCHAR, viewers VARCHAR)
{ "SQL_Query": "SELECT lap_by_lap FROM table_11691212_2 WHERE viewers = \"13.4 million\"" }
What was the number for Bötzow where Vehlefanz is 1.800?
CREATE TABLE table_11680175_1 (bötzow VARCHAR, vehlefanz VARCHAR)
{ "SQL_Query": "SELECT bötzow FROM table_11680175_1 WHERE vehlefanz = \"1.800\"" }
What was the number for Vehlefanz where Bärenklau is 1.288?
CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, bärenklau VARCHAR)
{ "SQL_Query": "SELECT vehlefanz FROM table_11680175_1 WHERE bärenklau = \"1.288\"" }
What was the number for Schwante where Bärenklau is 1.270?
CREATE TABLE table_11680175_1 (schwante VARCHAR, bärenklau VARCHAR)
{ "SQL_Query": "SELECT schwante FROM table_11680175_1 WHERE bärenklau = \"1.270\"" }
How many years where Neu-Vehlefanz had a number of 365?
CREATE TABLE table_11680175_1 (year VARCHAR, Neu VARCHAR, vehlefanz VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_11680175_1 WHERE Neu - vehlefanz = 365" }
How many times did Neu-Vehlefanz occur when Schwante had 2.043?
CREATE TABLE table_11680175_1 (vehlefanz VARCHAR, Neu VARCHAR, schwante VARCHAR)
{ "SQL_Query": "SELECT COUNT(Neu) - vehlefanz FROM table_11680175_1 WHERE schwante = \"2.043\"" }
How many years where Eichstädt had a number of 939?
CREATE TABLE table_11680175_1 (year VARCHAR, eichstädt VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_11680175_1 WHERE eichstädt = 939" }
How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?
CREATE TABLE table_11713303_2 (replaced_by VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)
{ "SQL_Query": "SELECT COUNT(replaced_by) FROM table_11713303_2 WHERE date_of_appointment = \"10 December 2007\" AND manner_of_departure = \"Quit\"" }
What is the date of vacancy for 10 december 2007 when quit?
CREATE TABLE table_11713303_2 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)
{ "SQL_Query": "SELECT date_of_vacancy FROM table_11713303_2 WHERE date_of_appointment = \"10 December 2007\" AND manner_of_departure = \"Quit\"" }
How many manners of departure did peter voets have?
CREATE TABLE table_11713303_2 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT COUNT(manner_of_departure) FROM table_11713303_2 WHERE outgoing_manager = \"Peter Voets\"" }
What is the link abilities when the predecessors is ti-85?
CREATE TABLE table_11703336_1 (link_abilities VARCHAR, predecessors VARCHAR)
{ "SQL_Query": "SELECT link_abilities FROM table_11703336_1 WHERE predecessors = \"TI-85\"" }
What is the cpu of the calculator released in 1993?
CREATE TABLE table_11703336_1 (cpu VARCHAR, year_released VARCHAR)
{ "SQL_Query": "SELECT cpu FROM table_11703336_1 WHERE year_released = \"1993\"" }
what is the display size for the calculator released in 1997?
CREATE TABLE table_11703336_1 (display_size VARCHAR, year_released VARCHAR)
{ "SQL_Query": "SELECT display_size FROM table_11703336_1 WHERE year_released = \"1997\"" }
what is the display size for the calculator ti-82?
CREATE TABLE table_11703336_1 (display_size VARCHAR, calculator VARCHAR)
{ "SQL_Query": "SELECT display_size FROM table_11703336_1 WHERE calculator = \"TI-82\"" }
what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?
CREATE TABLE table_11703336_1 (cpu VARCHAR, ram VARCHAR, display_size VARCHAR)
{ "SQL_Query": "SELECT cpu FROM table_11703336_1 WHERE ram = \"28 KB of ram\" AND display_size = \"128×64 pixels 21×8 characters\"" }
Who was the dirctor for season 13?
CREATE TABLE table_11715748_2 (director_s_ VARCHAR, season__number VARCHAR)
{ "SQL_Query": "SELECT director_s_ FROM table_11715748_2 WHERE season__number = 13" }
What is the episode title of the show that had a production code of 3T5764?
CREATE TABLE table_11694832_1 (title VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT title FROM table_11694832_1 WHERE production_code = \"3T5764\"" }
What is the first series number that Adele Lim wrote?
CREATE TABLE table_11694832_1 (no_in_series INTEGER, written_by VARCHAR)
{ "SQL_Query": "SELECT MIN(no_in_series) FROM table_11694832_1 WHERE written_by = \"Adele Lim\"" }
How many millions of U.S. viewers watched the show with a production code of 3T5769?
CREATE TABLE table_11694832_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT us_viewers__millions_ FROM table_11694832_1 WHERE production_code = \"3T5769\"" }
When was the show first aired that was viewed by 3.57 million U.S. viewers?
CREATE TABLE table_11694832_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_11694832_1 WHERE us_viewers__millions_ = \"3.57\"" }
Who directed the show that was viewed by 2.06 million U.S. people?
CREATE TABLE table_11694832_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_11694832_1 WHERE us_viewers__millions_ = \"2.06\"" }
What is the position of the player that came from the school/club team/country of Purdue?
CREATE TABLE table_11734041_11 (position VARCHAR, school_club_team_country VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11734041_11 WHERE school_club_team_country = \"Purdue\"" }
Who is the player who's number is 3?
CREATE TABLE table_11734041_11 (player VARCHAR, no_s_ VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11734041_11 WHERE no_s_ = \"3\"" }
What is the height for the player in 1968-72?
CREATE TABLE table_11734041_11 (height_in_ft VARCHAR, years_for_rockets VARCHAR)
{ "SQL_Query": "SELECT height_in_ft FROM table_11734041_11 WHERE years_for_rockets = \"1968-72\"" }
Which player had a height of 6-0?
CREATE TABLE table_11734041_11 (player VARCHAR, height_in_ft VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11734041_11 WHERE height_in_ft = \"6-0\"" }
What is the position for the player that played in 2006?
CREATE TABLE table_11734041_11 (position VARCHAR, years_for_rockets VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11734041_11 WHERE years_for_rockets = \"2006\"" }
What are all the names of the players who are 7-0 tall?
CREATE TABLE table_11734041_10 (player VARCHAR, height_in_ft VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11734041_10 WHERE height_in_ft = \"7-0\"" }
Kimball, toby toby kimball is a player; How many times at school/ club team/country was the player present?
CREATE TABLE table_11734041_10 (school_club_team_country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(school_club_team_country) FROM table_11734041_10 WHERE player = \"Kimball, Toby Toby Kimball\"" }
In connecticut the school/club team/country had a set height in ft. what is true for them?
CREATE TABLE table_11734041_10 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
{ "SQL_Query": "SELECT height_in_ft FROM table_11734041_10 WHERE school_club_team_country = \"Connecticut\"" }
Rockets height was 6-6 in feet, list the time frame where this was true?
CREATE TABLE table_11734041_10 (years_for_rockets VARCHAR, height_in_ft VARCHAR)
{ "SQL_Query": "SELECT years_for_rockets FROM table_11734041_10 WHERE height_in_ft = \"6-6\"" }
What is the hight of the player who's tenure lasted from 1969-70?
CREATE TABLE table_11734041_17 (height_in_ft VARCHAR, years_for_rockets VARCHAR)
{ "SQL_Query": "SELECT height_in_ft FROM table_11734041_17 WHERE years_for_rockets = \"1969-70\"" }
What school did the 7-4 player attend?
CREATE TABLE table_11734041_17 (school_club_team_country VARCHAR, height_in_ft VARCHAR)
{ "SQL_Query": "SELECT school_club_team_country FROM table_11734041_17 WHERE height_in_ft = \"7-4\"" }
what's the years for rockets where position is guard / forward
CREATE TABLE table_11734041_20 (years_for_rockets VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT years_for_rockets FROM table_11734041_20 WHERE position = \"Guard / Forward\"" }
what is the total number of player where years for rockets is 1975-79
CREATE TABLE table_11734041_20 (player VARCHAR, years_for_rockets VARCHAR)
{ "SQL_Query": "SELECT COUNT(player) FROM table_11734041_20 WHERE years_for_rockets = \"1975-79\"" }
what is the total number of player where years for rockets is 2004-06
CREATE TABLE table_11734041_20 (player VARCHAR, years_for_rockets VARCHAR)
{ "SQL_Query": "SELECT COUNT(player) FROM table_11734041_20 WHERE years_for_rockets = \"2004-06\"" }
what's the position where player is williams, bernie bernie williams
CREATE TABLE table_11734041_20 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11734041_20 WHERE player = \"Williams, Bernie Bernie Williams\"" }
what is the total number of years for rockets where school/club team/country is baylor
CREATE TABLE table_11734041_20 (years_for_rockets VARCHAR, school_club_team_country VARCHAR)
{ "SQL_Query": "SELECT COUNT(years_for_rockets) FROM table_11734041_20 WHERE school_club_team_country = \"Baylor\"" }
How many positions had jersey number 32
CREATE TABLE table_11734041_18 (position VARCHAR, no_s_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_11734041_18 WHERE no_s_ = \"32\"" }
Which years had a jersey number 55
CREATE TABLE table_11734041_18 (years_for_rockets VARCHAR, no_s_ VARCHAR)
{ "SQL_Query": "SELECT years_for_rockets FROM table_11734041_18 WHERE no_s_ = \"55\"" }
Which school, club team, or country played for the rockets in the years 2000-01?
CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)
{ "SQL_Query": "SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = \"2000-01\"" }
During which years did number 13 play for the Rockets?
CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR)
{ "SQL_Query": "SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = \"13\"" }
What is the lowest date settled for chifley?
CREATE TABLE table_1174162_1 (date_first_settled_as_a_suburb INTEGER, suburb VARCHAR)
{ "SQL_Query": "SELECT MIN(date_first_settled_as_a_suburb) FROM table_1174162_1 WHERE suburb = \"Chifley\"" }
What is the density in Garran?
CREATE TABLE table_1174162_1 (density___km²_ INTEGER, suburb VARCHAR)
{ "SQL_Query": "SELECT MIN(density___km²_) FROM table_1174162_1 WHERE suburb = \"Garran\"" }
What is the date settled for 40 years?
CREATE TABLE table_1174162_1 (date_first_settled_as_a_suburb VARCHAR, median_age__in_2006_ VARCHAR)
{ "SQL_Query": "SELECT date_first_settled_as_a_suburb FROM table_1174162_1 WHERE median_age__in_2006_ = \"40 years\"" }
What is the median age where the area is 1.7?
CREATE TABLE table_1174162_1 (median_age__in_2006_ VARCHAR, area__km²_ VARCHAR)
{ "SQL_Query": "SELECT median_age__in_2006_ FROM table_1174162_1 WHERE area__km²_ = \"1.7\"" }
Who is the thursday presenter of the show Big Brother 13?
CREATE TABLE table_11748792_2 (thursday VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT thursday FROM table_11748792_2 WHERE series = \"Big Brother 13\"" }
Who is the friday presenter for each show, when the monday presenter is Emma Willis Jamie East?
CREATE TABLE table_11748792_2 (friday VARCHAR, monday VARCHAR)
{ "SQL_Query": "SELECT friday FROM table_11748792_2 WHERE monday = \"Emma Willis Jamie East\"" }
Who is the Tuesday presenter of Celebrity Big Brother 8?
CREATE TABLE table_11748792_2 (tuesday VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT tuesday FROM table_11748792_2 WHERE series = \"Celebrity Big Brother 8\"" }
Who is the Wednesday presenter of the show Big Brother 13?
CREATE TABLE table_11748792_2 (wednesday VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT wednesday FROM table_11748792_2 WHERE series = \"Big Brother 13\"" }
List all of the shows with Alice Levine Jamie East is the Sunday presenter.
CREATE TABLE table_11748792_2 (series VARCHAR, sunday VARCHAR)
{ "SQL_Query": "SELECT series FROM table_11748792_2 WHERE sunday = \"Alice Levine Jamie East\"" }
What are all the positions for the rockets in 2008?
CREATE TABLE table_11734041_7 (position VARCHAR, years_for_rockets VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11734041_7 WHERE years_for_rockets = \"2008\"" }
What is the height of the school club team members in clemson?
CREATE TABLE table_11734041_7 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
{ "SQL_Query": "SELECT height_in_ft FROM table_11734041_7 WHERE school_club_team_country = \"Clemson\"" }
What years for the rockets did player ford, alton alton ford play?
CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT years_for_rockets FROM table_11734041_6 WHERE player = \"Ford, Alton Alton Ford\"" }
What years for the rockets did the player ford, phil phil ford play?
CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT years_for_rockets FROM table_11734041_6 WHERE player = \"Ford, Phil Phil Ford\"" }
What school/club team/country did the player fitch, gerald gerald fitch play for?
CREATE TABLE table_11734041_6 (school_club_team_country VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school_club_team_country FROM table_11734041_6 WHERE player = \"Fitch, Gerald Gerald Fitch\"" }
What is the weekly rank where the number is 4?
CREATE TABLE table_11753080_2 (weekly_rank VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT weekly_rank FROM table_11753080_2 WHERE _number = 4" }
What is the minimum of t20 matches?
CREATE TABLE table_1176371_1 (t20_matches INTEGER)
{ "SQL_Query": "SELECT MIN(t20_matches) FROM table_1176371_1" }
Where is ropery lane located?
CREATE TABLE table_1176371_1 (location VARCHAR, name_of_ground VARCHAR)
{ "SQL_Query": "SELECT location FROM table_1176371_1 WHERE name_of_ground = \"Ropery Lane\"" }
Where is ropery lane and la matches 7 location?
CREATE TABLE table_1176371_1 (location VARCHAR, la_matches VARCHAR, name_of_ground VARCHAR)
{ "SQL_Query": "SELECT location FROM table_1176371_1 WHERE la_matches = 7 AND name_of_ground = \"Ropery Lane\"" }
What is the maximum fc matches?
CREATE TABLE table_1176371_1 (fc_matches INTEGER)
{ "SQL_Query": "SELECT MAX(fc_matches) FROM table_1176371_1" }
What is the maximum fc matches at the racecourse?
CREATE TABLE table_1176371_1 (fc_matches INTEGER, name_of_ground VARCHAR)
{ "SQL_Query": "SELECT MAX(fc_matches) FROM table_1176371_1 WHERE name_of_ground = \"The Racecourse\"" }
What is the maximum t20 on green lane?
CREATE TABLE table_1176371_1 (t20_matches INTEGER, name_of_ground VARCHAR)
{ "SQL_Query": "SELECT MAX(t20_matches) FROM table_1176371_1 WHERE name_of_ground = \"Green Lane\"" }
what's the cylinders/ valves with model being 1.8 20v
CREATE TABLE table_1176162_3 (cylinders__valves VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT cylinders__valves FROM table_1176162_3 WHERE model = \"1.8 20V\"" }