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