question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the season number for the episode with the series number 61? | CREATE TABLE table_11630008_5 (season__number INTEGER, series__number VARCHAR) | SELECT MAX(season__number) FROM table_11630008_5 WHERE series__number = 61 | ### Context: CREATE TABLE table_11630008_5 (season__number INTEGER, series__number VARCHAR) ### Question: What was the season number for the episode with the series number 61? ### Answer: SELECT MAX(season__number) FROM table_11630008_5 WHERE series__number = 61 |
What was the title of the episode with the production code 311? | CREATE TABLE table_11630008_5 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_11630008_5 WHERE production_code = 311 | ### Context: CREATE TABLE table_11630008_5 (title VARCHAR, production_code VARCHAR) ### Question: What was the title of the episode with the production code 311? ### Answer: SELECT title FROM table_11630008_5 WHERE production_code = 311 |
Who directed the episode written by Lamont Ferrell? | CREATE TABLE table_11630008_5 (directed_by VARCHAR, written_by VARCHAR) | SELECT directed_by FROM table_11630008_5 WHERE written_by = "Lamont Ferrell" | ### Context: CREATE TABLE table_11630008_5 (directed_by VARCHAR, written_by VARCHAR) ### Question: Who directed the episode written by Lamont Ferrell? ### Answer: SELECT directed_by FROM table_11630008_5 WHERE written_by = "Lamont Ferrell" |
What date was the result 6–2, 4–6, 6–4? | CREATE TABLE table_11636213_7 (date VARCHAR, result VARCHAR) | SELECT date FROM table_11636213_7 WHERE result = "6–2, 4–6, 6–4" | ### Context: CREATE TABLE table_11636213_7 (date VARCHAR, result VARCHAR) ### Question: What date was the result 6–2, 4–6, 6–4? ### Answer: SELECT date FROM table_11636213_7 WHERE result = "6–2, 4–6, 6–4" |
How many matches had the result of 6–3, 6–2? | CREATE TABLE table_11636213_7 (partnering VARCHAR, result VARCHAR) | SELECT COUNT(partnering) FROM table_11636213_7 WHERE result = "6–3, 6–2" | ### Context: CREATE TABLE table_11636213_7 (partnering VARCHAR, result VARCHAR) ### Question: How many matches had the result of 6–3, 6–2? ### Answer: SELECT COUNT(partnering) FROM table_11636213_7 WHERE result = "6–3, 6–2" |
If the Original Air Date is 10January2008, what directors released on that date? | CREATE TABLE table_11642945_1 (director VARCHAR, original_air_date VARCHAR) | SELECT director FROM table_11642945_1 WHERE original_air_date = "10January2008" | ### Context: CREATE TABLE table_11642945_1 (director VARCHAR, original_air_date VARCHAR) ### Question: If the Original Air Date is 10January2008, what directors released on that date? ### Answer: SELECT director FROM table_11642945_1 WHERE original_air_date = "10January2008" |
The original air date of 29November2007 has what total no.? | CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR) | SELECT total_no FROM table_11642945_1 WHERE original_air_date = "29November2007" | ### Context: CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR) ### Question: The original air date of 29November2007 has what total no.? ### Answer: SELECT total_no FROM table_11642945_1 WHERE original_air_date = "29November2007" |
Margot Kidder had what director? | CREATE TABLE table_11642945_1 (director VARCHAR, celebrity VARCHAR) | SELECT director FROM table_11642945_1 WHERE celebrity = "Margot Kidder" | ### Context: CREATE TABLE table_11642945_1 (director VARCHAR, celebrity VARCHAR) ### Question: Margot Kidder had what director? ### Answer: SELECT director FROM table_11642945_1 WHERE celebrity = "Margot Kidder" |
How many celebrities had an 18October2007 Original air Date? | CREATE TABLE table_11642945_1 (celebrity VARCHAR, original_air_date VARCHAR) | SELECT COUNT(celebrity) FROM table_11642945_1 WHERE original_air_date = "18October2007" | ### Context: CREATE TABLE table_11642945_1 (celebrity VARCHAR, original_air_date VARCHAR) ### Question: How many celebrities had an 18October2007 Original air Date? ### Answer: SELECT COUNT(celebrity) FROM table_11642945_1 WHERE original_air_date = "18October2007" |
Which viewers had Matt Gallagher as the director? | CREATE TABLE table_11642945_1 (viewers VARCHAR, director VARCHAR) | SELECT viewers FROM table_11642945_1 WHERE director = "Matt Gallagher" | ### Context: CREATE TABLE table_11642945_1 (viewers VARCHAR, director VARCHAR) ### Question: Which viewers had Matt Gallagher as the director? ### Answer: SELECT viewers FROM table_11642945_1 WHERE director = "Matt Gallagher" |
What is the number of series with production code 503? | CREATE TABLE table_11630008_7 (series__number VARCHAR, production_code VARCHAR) | SELECT COUNT(series__number) FROM table_11630008_7 WHERE production_code = 503 | ### Context: CREATE TABLE table_11630008_7 (series__number VARCHAR, production_code VARCHAR) ### Question: What is the number of series with production code 503? ### Answer: SELECT COUNT(series__number) FROM table_11630008_7 WHERE production_code = 503 |
What is the title of production code 514? | CREATE TABLE table_11630008_7 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_11630008_7 WHERE production_code = 514 | ### Context: CREATE TABLE table_11630008_7 (title VARCHAR, production_code VARCHAR) ### Question: What is the title of production code 514? ### Answer: SELECT title FROM table_11630008_7 WHERE production_code = 514 |
What is the location of the institution barton college | CREATE TABLE table_11658094_1 (location VARCHAR, institution VARCHAR) | SELECT location FROM table_11658094_1 WHERE institution = "Barton College" | ### Context: CREATE TABLE table_11658094_1 (location VARCHAR, institution VARCHAR) ### Question: What is the location of the institution barton college ### Answer: SELECT location FROM table_11658094_1 WHERE institution = "Barton College" |
Which institutions joined in 1993 | CREATE TABLE table_11658094_1 (institution VARCHAR, joined VARCHAR) | SELECT institution FROM table_11658094_1 WHERE joined = "1993" | ### Context: CREATE TABLE table_11658094_1 (institution VARCHAR, joined VARCHAR) ### Question: Which institutions joined in 1993 ### Answer: SELECT institution FROM table_11658094_1 WHERE joined = "1993" |
what are the locations that joined in 2008 | CREATE TABLE table_11658094_1 (location VARCHAR, joined VARCHAR) | SELECT location FROM table_11658094_1 WHERE joined = "2008" | ### Context: CREATE TABLE table_11658094_1 (location VARCHAR, joined VARCHAR) ### Question: what are the locations that joined in 2008 ### Answer: SELECT location FROM table_11658094_1 WHERE joined = "2008" |
What is the minimum enrollment at barton college | CREATE TABLE table_11658094_1 (enrollment INTEGER, institution VARCHAR) | SELECT MIN(enrollment) FROM table_11658094_1 WHERE institution = "Barton College" | ### Context: CREATE TABLE table_11658094_1 (enrollment INTEGER, institution VARCHAR) ### Question: What is the minimum enrollment at barton college ### Answer: SELECT MIN(enrollment) FROM table_11658094_1 WHERE institution = "Barton College" |
When was erskine college founded | CREATE TABLE table_11658094_1 (founded VARCHAR, institution VARCHAR) | SELECT founded FROM table_11658094_1 WHERE institution = "Erskine College" | ### Context: CREATE TABLE table_11658094_1 (founded VARCHAR, institution VARCHAR) ### Question: When was erskine college founded ### Answer: SELECT founded FROM table_11658094_1 WHERE institution = "Erskine College" |
What is ithe range for married filing separately where head of household is $117,451–$190,200? | CREATE TABLE table_11647327_2 (married_filing_separately VARCHAR, head_of_household VARCHAR) | SELECT married_filing_separately FROM table_11647327_2 WHERE head_of_household = "$117,451–$190,200" | ### Context: CREATE TABLE table_11647327_2 (married_filing_separately VARCHAR, head_of_household VARCHAR) ### Question: What is ithe range for married filing separately where head of household is $117,451–$190,200? ### Answer: SELECT married_filing_separately FROM table_11647327_2 WHERE head_of_household = "$117,451–$1... |
What is the amount of marginal ordinary income tax rate for single in which the range is $8,351– $33,950? | CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, single VARCHAR) | SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE single = "$8,351– $33,950" | ### Context: CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, single VARCHAR) ### Question: What is the amount of marginal ordinary income tax rate for single in which the range is $8,351– $33,950? ### Answer: SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE single = ... |
What is the range of married filing jointly or qualified widower in which married filing separately is $33,951–$68,525? | CREATE TABLE table_11647327_2 (married_filing_jointly_or_qualified_widow_er_ VARCHAR, married_filing_separately VARCHAR) | SELECT married_filing_jointly_or_qualified_widow_er_ FROM table_11647327_2 WHERE married_filing_separately = "$33,951–$68,525" | ### Context: CREATE TABLE table_11647327_2 (married_filing_jointly_or_qualified_widow_er_ VARCHAR, married_filing_separately VARCHAR) ### Question: What is the range of married filing jointly or qualified widower in which married filing separately is $33,951–$68,525? ### Answer: SELECT married_filing_jointly_or_qualifi... |
What is the range of the head of household whereas single is $171,551–$372,950? | CREATE TABLE table_11647327_2 (head_of_household VARCHAR, single VARCHAR) | SELECT head_of_household FROM table_11647327_2 WHERE single = "$171,551–$372,950" | ### Context: CREATE TABLE table_11647327_2 (head_of_household VARCHAR, single VARCHAR) ### Question: What is the range of the head of household whereas single is $171,551–$372,950? ### Answer: SELECT head_of_household FROM table_11647327_2 WHERE single = "$171,551–$372,950" |
What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950? | CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR) | SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = "$208,851–$372,950" | ### Context: CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR) ### Question: What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950? ### Answer: SELECT COUNT(marginal_ordin... |
who is the coach where dudley tuckey medal is ben howlett | CREATE TABLE table_1165048_1 (coach VARCHAR, dudley_tuckey_medal VARCHAR) | SELECT coach FROM table_1165048_1 WHERE dudley_tuckey_medal = "Ben Howlett" | ### Context: CREATE TABLE table_1165048_1 (coach VARCHAR, dudley_tuckey_medal VARCHAR) ### Question: who is the coach where dudley tuckey medal is ben howlett ### Answer: SELECT coach FROM table_1165048_1 WHERE dudley_tuckey_medal = "Ben Howlett" |
what is the total number of coach where captain is grant welsh and win/loss is 5-15 | CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss VARCHAR) | SELECT COUNT(coach) FROM table_1165048_1 WHERE captain = "Grant Welsh" AND win_loss = "5-15" | ### Context: CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss VARCHAR) ### Question: what is the total number of coach where captain is grant welsh and win/loss is 5-15 ### Answer: SELECT COUNT(coach) FROM table_1165048_1 WHERE captain = "Grant Welsh" AND win_loss = "5-15" |
who is the dudley tuckey medal where leading goalkicker is scott simister (46) | CREATE TABLE table_1165048_1 (dudley_tuckey_medal VARCHAR, leading_goalkicker VARCHAR) | SELECT dudley_tuckey_medal FROM table_1165048_1 WHERE leading_goalkicker = "Scott Simister (46)" | ### Context: CREATE TABLE table_1165048_1 (dudley_tuckey_medal VARCHAR, leading_goalkicker VARCHAR) ### Question: who is the dudley tuckey medal where leading goalkicker is scott simister (46) ### Answer: SELECT dudley_tuckey_medal FROM table_1165048_1 WHERE leading_goalkicker = "Scott Simister (46)" |
what is the maximum season where leading goalkicker is scott simister (54) | CREATE TABLE table_1165048_1 (season INTEGER, leading_goalkicker VARCHAR) | SELECT MAX(season) FROM table_1165048_1 WHERE leading_goalkicker = "Scott Simister (54)" | ### Context: CREATE TABLE table_1165048_1 (season INTEGER, leading_goalkicker VARCHAR) ### Question: what is the maximum season where leading goalkicker is scott simister (54) ### Answer: SELECT MAX(season) FROM table_1165048_1 WHERE leading_goalkicker = "Scott Simister (54)" |
what are all the win/loss where season is 2009 | CREATE TABLE table_1165048_1 (win_loss VARCHAR, season VARCHAR) | SELECT win_loss FROM table_1165048_1 WHERE season = 2009 | ### Context: CREATE TABLE table_1165048_1 (win_loss VARCHAR, season VARCHAR) ### Question: what are all the win/loss where season is 2009 ### Answer: SELECT win_loss FROM table_1165048_1 WHERE season = 2009 |
who is the captain where coach is geoff miles | CREATE TABLE table_1165048_1 (captain VARCHAR, coach VARCHAR) | SELECT captain FROM table_1165048_1 WHERE coach = "Geoff Miles" | ### Context: CREATE TABLE table_1165048_1 (captain VARCHAR, coach VARCHAR) ### Question: who is the captain where coach is geoff miles ### Answer: SELECT captain FROM table_1165048_1 WHERE coach = "Geoff Miles" |
In 2005-06 what was the disaster? | CREATE TABLE table_11649123_1 (disaster VARCHAR, year VARCHAR) | SELECT disaster FROM table_11649123_1 WHERE year = "2005-06" | ### Context: CREATE TABLE table_11649123_1 (disaster VARCHAR, year VARCHAR) ### Question: In 2005-06 what was the disaster? ### Answer: SELECT disaster FROM table_11649123_1 WHERE year = "2005-06" |
What's the area of the voivodenship with 51 communes? | CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, no_of_communes VARCHAR) | SELECT area_km²__1998_ FROM table_11656578_2 WHERE no_of_communes = 51 | ### Context: CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, no_of_communes VARCHAR) ### Question: What's the area of the voivodenship with 51 communes? ### Answer: SELECT area_km²__1998_ FROM table_11656578_2 WHERE no_of_communes = 51 |
How big (in km2) is the voivodenship also known by the abbreviation KN? | CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, abbreviation VARCHAR) | SELECT area_km²__1998_ FROM table_11656578_2 WHERE abbreviation = "kn" | ### Context: CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, abbreviation VARCHAR) ### Question: How big (in km2) is the voivodenship also known by the abbreviation KN? ### Answer: SELECT area_km²__1998_ FROM table_11656578_2 WHERE abbreviation = "kn" |
How many people lived in the voivodenship whose capital is Siedlce in the year of 1980? | CREATE TABLE table_11656578_2 (population__1980_ VARCHAR, capital VARCHAR) | SELECT population__1980_ FROM table_11656578_2 WHERE capital = "Siedlce" | ### Context: CREATE TABLE table_11656578_2 (population__1980_ VARCHAR, capital VARCHAR) ### Question: How many people lived in the voivodenship whose capital is Siedlce in the year of 1980? ### Answer: SELECT population__1980_ FROM table_11656578_2 WHERE capital = "Siedlce" |
How many different voivodenship have 747 900 citizes? | CREATE TABLE table_11656578_2 (voivodeship VARCHAR, population__1980_ VARCHAR) | SELECT COUNT(voivodeship) FROM table_11656578_2 WHERE population__1980_ = "747 900" | ### Context: CREATE TABLE table_11656578_2 (voivodeship VARCHAR, population__1980_ VARCHAR) ### Question: How many different voivodenship have 747 900 citizes? ### Answer: SELECT COUNT(voivodeship) FROM table_11656578_2 WHERE population__1980_ = "747 900" |
What year did longwood university leave the conference? | CREATE TABLE table_11658094_3 (left INTEGER, institution VARCHAR) | SELECT MIN(left) FROM table_11658094_3 WHERE institution = "Longwood University" | ### Context: CREATE TABLE table_11658094_3 (left INTEGER, institution VARCHAR) ### Question: What year did longwood university leave the conference? ### Answer: SELECT MIN(left) FROM table_11658094_3 WHERE institution = "Longwood University" |
What year did a school leave that was founded in 1880? | CREATE TABLE table_11658094_3 (left VARCHAR, founded VARCHAR) | SELECT left FROM table_11658094_3 WHERE founded = 1880 | ### Context: CREATE TABLE table_11658094_3 (left VARCHAR, founded VARCHAR) ### Question: What year did a school leave that was founded in 1880? ### Answer: SELECT left FROM table_11658094_3 WHERE founded = 1880 |
What is the nickname of the school with an enrollment of 2386? | CREATE TABLE table_11658094_3 (nickname VARCHAR, enrollment VARCHAR) | SELECT nickname FROM table_11658094_3 WHERE enrollment = 2386 | ### Context: CREATE TABLE table_11658094_3 (nickname VARCHAR, enrollment VARCHAR) ### Question: What is the nickname of the school with an enrollment of 2386? ### Answer: SELECT nickname FROM table_11658094_3 WHERE enrollment = 2386 |
What year did the school from mars hill, north carolina join? | CREATE TABLE table_11658094_3 (joined VARCHAR, location VARCHAR) | SELECT joined FROM table_11658094_3 WHERE location = "Mars Hill, North Carolina" | ### Context: CREATE TABLE table_11658094_3 (joined VARCHAR, location VARCHAR) ### Question: What year did the school from mars hill, north carolina join? ### Answer: SELECT joined FROM table_11658094_3 WHERE location = "Mars Hill, North Carolina" |
How many times did anderson university leave? | CREATE TABLE table_11658094_3 (left VARCHAR, institution VARCHAR) | SELECT COUNT(left) FROM table_11658094_3 WHERE institution = "Anderson University" | ### Context: CREATE TABLE table_11658094_3 (left VARCHAR, institution VARCHAR) ### Question: How many times did anderson university leave? ### Answer: SELECT COUNT(left) FROM table_11658094_3 WHERE institution = "Anderson University" |
What is the nickname of the newberry college? | CREATE TABLE table_11658094_3 (nickname VARCHAR, institution VARCHAR) | SELECT nickname FROM table_11658094_3 WHERE institution = "Newberry College" | ### Context: CREATE TABLE table_11658094_3 (nickname VARCHAR, institution VARCHAR) ### Question: What is the nickname of the newberry college? ### Answer: SELECT nickname FROM table_11658094_3 WHERE institution = "Newberry College" |
What was the gross tonnage of the ship that ended service in 1866? | CREATE TABLE table_11662133_1 (gross_tonnage VARCHAR, ended_service VARCHAR) | SELECT gross_tonnage FROM table_11662133_1 WHERE ended_service = "1866" | ### Context: CREATE TABLE table_11662133_1 (gross_tonnage VARCHAR, ended_service VARCHAR) ### Question: What was the gross tonnage of the ship that ended service in 1866? ### Answer: SELECT gross_tonnage FROM table_11662133_1 WHERE ended_service = "1866" |
What is the minimum gross tonnage of the Munich? | CREATE TABLE table_11662133_1 (gross_tonnage INTEGER, ships_name VARCHAR) | SELECT MIN(gross_tonnage) FROM table_11662133_1 WHERE ships_name = "Munich" | ### Context: CREATE TABLE table_11662133_1 (gross_tonnage INTEGER, ships_name VARCHAR) ### Question: What is the minimum gross tonnage of the Munich? ### Answer: SELECT MIN(gross_tonnage) FROM table_11662133_1 WHERE ships_name = "Munich" |
What is the air date for the episode written by Wendy Battles and directed by Oz Scott | CREATE TABLE table_11665016_2 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_11665016_2 WHERE written_by = "Wendy Battles" AND directed_by = "Oz Scott" | ### Context: CREATE TABLE table_11665016_2 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR) ### Question: What is the air date for the episode written by Wendy Battles and directed by Oz Scott ### Answer: SELECT original_air_date FROM table_11665016_2 WHERE written_by = "Wendy Battles" AND directed_... |
Which episode was written by anthony e. zuiker & ken solarz | CREATE TABLE table_11665016_2 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_11665016_2 WHERE written_by = "Anthony E. Zuiker & Ken Solarz" | ### Context: CREATE TABLE table_11665016_2 (title VARCHAR, written_by VARCHAR) ### Question: Which episode was written by anthony e. zuiker & ken solarz ### Answer: SELECT title FROM table_11665016_2 WHERE written_by = "Anthony E. Zuiker & Ken Solarz" |
Which episode was directed by steven depaul | CREATE TABLE table_11665016_2 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_11665016_2 WHERE directed_by = "Steven DePaul" | ### Context: CREATE TABLE table_11665016_2 (title VARCHAR, directed_by VARCHAR) ### Question: Which episode was directed by steven depaul ### Answer: SELECT title FROM table_11665016_2 WHERE directed_by = "Steven DePaul" |
What where the tms numbers built in 1923 | CREATE TABLE table_1166023_1 (TMS VARCHAR, year_built VARCHAR) | SELECT TMS AS number FROM table_1166023_1 WHERE year_built = 1923 | ### Context: CREATE TABLE table_1166023_1 (TMS VARCHAR, year_built VARCHAR) ### Question: What where the tms numbers built in 1923 ### Answer: SELECT TMS AS number FROM table_1166023_1 WHERE year_built = 1923 |
What tms were built nzr addington in the year 1913 | CREATE TABLE table_1166023_1 (TMS VARCHAR, builder VARCHAR, year_built VARCHAR) | SELECT TMS AS number FROM table_1166023_1 WHERE builder = "NZR Addington" AND year_built = 1913 | ### Context: CREATE TABLE table_1166023_1 (TMS VARCHAR, builder VARCHAR, year_built VARCHAR) ### Question: What tms were built nzr addington in the year 1913 ### Answer: SELECT TMS AS number FROM table_1166023_1 WHERE builder = "NZR Addington" AND year_built = 1913 |
what's the date entered service with ships name koningin wilhelmina | CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR) | SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = "Koningin Wilhelmina" | ### Context: CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR) ### Question: what's the date entered service with ships name koningin wilhelmina ### Answer: SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = "Koningin Wilhelmina" |
what's the date where ships name is zeeland entered service | CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR) | SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = "Zeeland" | ### Context: CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR) ### Question: what's the date where ships name is zeeland entered service ### Answer: SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = "Zeeland" |
what is the maximum tonnage where date entered service is 25 march 1986 | CREATE TABLE table_11662133_3 (tonnage INTEGER, date_entered_service VARCHAR) | SELECT MAX(tonnage) FROM table_11662133_3 WHERE date_entered_service = "25 March 1986" | ### Context: CREATE TABLE table_11662133_3 (tonnage INTEGER, date_entered_service VARCHAR) ### Question: what is the maximum tonnage where date entered service is 25 march 1986 ### Answer: SELECT MAX(tonnage) FROM table_11662133_3 WHERE date_entered_service = "25 March 1986" |
what are all the date withdrawn for service entered on 21 november 1945 | CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, date_entered_service VARCHAR) | SELECT date_withdrawn FROM table_11662133_3 WHERE date_entered_service = "21 November 1945" | ### Context: CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, date_entered_service VARCHAR) ### Question: what are all the date withdrawn for service entered on 21 november 1945 ### Answer: SELECT date_withdrawn FROM table_11662133_3 WHERE date_entered_service = "21 November 1945" |
what are all the date withdrawn for twin screw ro-ro motorship | CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, type_of_ship VARCHAR) | SELECT date_withdrawn FROM table_11662133_3 WHERE type_of_ship = "Twin Screw Ro-Ro Motorship" | ### Context: CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, type_of_ship VARCHAR) ### Question: what are all the date withdrawn for twin screw ro-ro motorship ### Answer: SELECT date_withdrawn FROM table_11662133_3 WHERE type_of_ship = "Twin Screw Ro-Ro Motorship" |
what are all the date withdrawn for koningin beatrix | CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, ships_name VARCHAR) | SELECT date_withdrawn FROM table_11662133_3 WHERE ships_name = "Koningin Beatrix" | ### Context: CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, ships_name VARCHAR) ### Question: what are all the date withdrawn for koningin beatrix ### Answer: SELECT date_withdrawn FROM table_11662133_3 WHERE ships_name = "Koningin Beatrix" |
Where is the first season that Anthony Hemingway appears? | CREATE TABLE table_11664625_2 (no_in_season INTEGER, directed_by VARCHAR) | SELECT MIN(no_in_season) FROM table_11664625_2 WHERE directed_by = "Anthony Hemingway" | ### Context: CREATE TABLE table_11664625_2 (no_in_season INTEGER, directed_by VARCHAR) ### Question: Where is the first season that Anthony Hemingway appears? ### Answer: SELECT MIN(no_in_season) FROM table_11664625_2 WHERE directed_by = "Anthony Hemingway" |
What is the original air date of season 18? | CREATE TABLE table_11664625_2 (original_air_date VARCHAR, no_in_season VARCHAR) | SELECT original_air_date FROM table_11664625_2 WHERE no_in_season = 18 | ### Context: CREATE TABLE table_11664625_2 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: What is the original air date of season 18? ### Answer: SELECT original_air_date FROM table_11664625_2 WHERE no_in_season = 18 |
When is the first season there were 14.57 million U.S viewers? | CREATE TABLE table_11664625_2 (no_in_season INTEGER, us_viewers__millions_ VARCHAR) | SELECT MIN(no_in_season) FROM table_11664625_2 WHERE us_viewers__millions_ = "14.57" | ### Context: CREATE TABLE table_11664625_2 (no_in_season INTEGER, us_viewers__millions_ VARCHAR) ### Question: When is the first season there were 14.57 million U.S viewers? ### Answer: SELECT MIN(no_in_season) FROM table_11664625_2 WHERE us_viewers__millions_ = "14.57" |
How many champions were there in 2009? | CREATE TABLE table_1167698_1 (champion VARCHAR, season VARCHAR) | SELECT COUNT(champion) FROM table_1167698_1 WHERE season = "2009" | ### Context: CREATE TABLE table_1167698_1 (champion VARCHAR, season VARCHAR) ### Question: How many champions were there in 2009? ### Answer: SELECT COUNT(champion) FROM table_1167698_1 WHERE season = "2009" |
Who won third place with the runner up being dynamo moscow? | CREATE TABLE table_1167698_1 (third_place VARCHAR, runner_up VARCHAR) | SELECT third_place FROM table_1167698_1 WHERE runner_up = "Dynamo Moscow" | ### Context: CREATE TABLE table_1167698_1 (third_place VARCHAR, runner_up VARCHAR) ### Question: Who won third place with the runner up being dynamo moscow? ### Answer: SELECT third_place FROM table_1167698_1 WHERE runner_up = "Dynamo Moscow" |
What position does Matt Hobgood play? | CREATE TABLE table_11677100_15 (position VARCHAR, player VARCHAR) | SELECT position FROM table_11677100_15 WHERE player = "Matt Hobgood" | ### Context: CREATE TABLE table_11677100_15 (position VARCHAR, player VARCHAR) ### Question: What position does Matt Hobgood play? ### Answer: SELECT position FROM table_11677100_15 WHERE player = "Matt Hobgood" |
How many players were from high point, nc? | CREATE TABLE table_11677100_15 (mlb_draft VARCHAR, hometown VARCHAR) | SELECT COUNT(mlb_draft) FROM table_11677100_15 WHERE hometown = "High Point, NC" | ### Context: CREATE TABLE table_11677100_15 (mlb_draft VARCHAR, hometown VARCHAR) ### Question: How many players were from high point, nc? ### Answer: SELECT COUNT(mlb_draft) FROM table_11677100_15 WHERE hometown = "High Point, NC" |
What high school did Jeff Malm attend? | CREATE TABLE table_11677100_15 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677100_15 WHERE player = "Jeff Malm" | ### Context: CREATE TABLE table_11677100_15 (school VARCHAR, player VARCHAR) ### Question: What high school did Jeff Malm attend? ### Answer: SELECT school FROM table_11677100_15 WHERE player = "Jeff Malm" |
How many hometowns does the catcher have? | CREATE TABLE table_11677100_15 (hometown VARCHAR, position VARCHAR) | SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = "Catcher" | ### Context: CREATE TABLE table_11677100_15 (hometown VARCHAR, position VARCHAR) ### Question: How many hometowns does the catcher have? ### Answer: SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = "Catcher" |
Who was drafted from the school Mountain Pointe High School? | CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, school VARCHAR) | SELECT mlb_draft FROM table_11677100_16 WHERE school = "Mountain Pointe High school" | ### Context: CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, school VARCHAR) ### Question: Who was drafted from the school Mountain Pointe High School? ### Answer: SELECT mlb_draft FROM table_11677100_16 WHERE school = "Mountain Pointe High school" |
What school did the player Ethan Bennett attend? | CREATE TABLE table_11677100_16 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677100_16 WHERE player = "Ethan Bennett" | ### Context: CREATE TABLE table_11677100_16 (school VARCHAR, player VARCHAR) ### Question: What school did the player Ethan Bennett attend? ### Answer: SELECT school FROM table_11677100_16 WHERE player = "Ethan Bennett" |
What MLB Drafts have the position pitcher/infielder? | CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, position VARCHAR) | SELECT mlb_draft FROM table_11677100_16 WHERE position = "Pitcher/Infielder" | ### Context: CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, position VARCHAR) ### Question: What MLB Drafts have the position pitcher/infielder? ### Answer: SELECT mlb_draft FROM table_11677100_16 WHERE position = "Pitcher/Infielder" |
What positions were drafted from Las Vegas, NV? | CREATE TABLE table_11677100_16 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_11677100_16 WHERE hometown = "Las Vegas, NV" | ### Context: CREATE TABLE table_11677100_16 (position VARCHAR, hometown VARCHAR) ### Question: What positions were drafted from Las Vegas, NV? ### Answer: SELECT position FROM table_11677100_16 WHERE hometown = "Las Vegas, NV" |
What is the hometown of Bubba Starling? | CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR) | SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling" | ### Context: CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR) ### Question: What is the hometown of Bubba Starling? ### Answer: SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling" |
How many schools did Bubba Starling attend? | CREATE TABLE table_11677100_17 (school VARCHAR, player VARCHAR) | SELECT COUNT(school) FROM table_11677100_17 WHERE player = "Bubba Starling" | ### Context: CREATE TABLE table_11677100_17 (school VARCHAR, player VARCHAR) ### Question: How many schools did Bubba Starling attend? ### Answer: SELECT COUNT(school) FROM table_11677100_17 WHERE player = "Bubba Starling" |
What was the hometown of the player who attended Athens Drive High School? | CREATE TABLE table_11677100_5 (hometown VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677100_5 WHERE school = "Athens Drive High school" | ### Context: CREATE TABLE table_11677100_5 (hometown VARCHAR, school VARCHAR) ### Question: What was the hometown of the player who attended Athens Drive High School? ### Answer: SELECT hometown FROM table_11677100_5 WHERE school = "Athens Drive High school" |
What school did Pat Osborn attend? | CREATE TABLE table_11677100_5 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677100_5 WHERE player = "Pat Osborn" | ### Context: CREATE TABLE table_11677100_5 (school VARCHAR, player VARCHAR) ### Question: What school did Pat Osborn attend? ### Answer: SELECT school FROM table_11677100_5 WHERE player = "Pat Osborn" |
What is Josh Hamilton's hometown? | CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR) | SELECT hometown FROM table_11677100_5 WHERE player = "Josh Hamilton" | ### Context: CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR) ### Question: What is Josh Hamilton's hometown? ### Answer: SELECT hometown FROM table_11677100_5 WHERE player = "Josh Hamilton" |
What school does Kerry Wood play for? | CREATE TABLE table_11677100_3 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677100_3 WHERE player = "Kerry Wood" | ### Context: CREATE TABLE table_11677100_3 (school VARCHAR, player VARCHAR) ### Question: What school does Kerry Wood play for? ### Answer: SELECT school FROM table_11677100_3 WHERE player = "Kerry Wood" |
What's the position of the player from Germantown, TN? | CREATE TABLE table_11677100_3 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_11677100_3 WHERE hometown = "Germantown, TN" | ### Context: CREATE TABLE table_11677100_3 (position VARCHAR, hometown VARCHAR) ### Question: What's the position of the player from Germantown, TN? ### Answer: SELECT position FROM table_11677100_3 WHERE hometown = "Germantown, TN" |
What player goes to Torrey Pines High School? | CREATE TABLE table_11677100_3 (player VARCHAR, school VARCHAR) | SELECT player FROM table_11677100_3 WHERE school = "Torrey Pines High school" | ### Context: CREATE TABLE table_11677100_3 (player VARCHAR, school VARCHAR) ### Question: What player goes to Torrey Pines High School? ### Answer: SELECT player FROM table_11677100_3 WHERE school = "Torrey Pines High school" |
What position does Kerry Wood play in? | CREATE TABLE table_11677100_3 (position VARCHAR, player VARCHAR) | SELECT position FROM table_11677100_3 WHERE player = "Kerry Wood" | ### Context: CREATE TABLE table_11677100_3 (position VARCHAR, player VARCHAR) ### Question: What position does Kerry Wood play in? ### Answer: SELECT position FROM table_11677100_3 WHERE player = "Kerry Wood" |
What's Shion Newton's MLB draft result? | CREATE TABLE table_11677100_3 (mlb_draft VARCHAR, player VARCHAR) | SELECT mlb_draft FROM table_11677100_3 WHERE player = "Shion Newton" | ### Context: CREATE TABLE table_11677100_3 (mlb_draft VARCHAR, player VARCHAR) ### Question: What's Shion Newton's MLB draft result? ### Answer: SELECT mlb_draft FROM table_11677100_3 WHERE player = "Shion Newton" |
What is the hometown of the pitcher who's school was Saint Joseph Regional High School? | CREATE TABLE table_11677100_18 (hometown VARCHAR, position VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677100_18 WHERE position = "Pitcher" AND school = "Saint Joseph Regional High school" | ### Context: CREATE TABLE table_11677100_18 (hometown VARCHAR, position VARCHAR, school VARCHAR) ### Question: What is the hometown of the pitcher who's school was Saint Joseph Regional High School? ### Answer: SELECT hometown FROM table_11677100_18 WHERE position = "Pitcher" AND school = "Saint Joseph Regional High sc... |
What is the school of the player from Lake Charles, LA? | CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_11677100_18 WHERE hometown = "Lake Charles, LA" | ### Context: CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR) ### Question: What is the school of the player from Lake Charles, LA? ### Answer: SELECT school FROM table_11677100_18 WHERE hometown = "Lake Charles, LA" |
Where was mlb draft for the player who's school was Carl Albert High School? | CREATE TABLE table_11677100_18 (mlb_draft VARCHAR, school VARCHAR) | SELECT mlb_draft FROM table_11677100_18 WHERE school = "Carl Albert High school" | ### Context: CREATE TABLE table_11677100_18 (mlb_draft VARCHAR, school VARCHAR) ### Question: Where was mlb draft for the player who's school was Carl Albert High School? ### Answer: SELECT mlb_draft FROM table_11677100_18 WHERE school = "Carl Albert High school" |
What school did the player attend who's hometown was Montvale, NJ? | CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_11677100_18 WHERE hometown = "Montvale, NJ" | ### Context: CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR) ### Question: What school did the player attend who's hometown was Montvale, NJ? ### Answer: SELECT school FROM table_11677100_18 WHERE hometown = "Montvale, NJ" |
What is the school for the player who's hometown was Irvine, CA? | CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR) | SELECT school FROM table_11677100_18 WHERE hometown = "Irvine, CA" | ### Context: CREATE TABLE table_11677100_18 (school VARCHAR, hometown VARCHAR) ### Question: What is the school for the player who's hometown was Irvine, CA? ### Answer: SELECT school FROM table_11677100_18 WHERE hometown = "Irvine, CA" |
How many positions did the player from Spring High School play? | CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR) | SELECT COUNT(position) FROM table_11677100_4 WHERE school = "Spring High school" | ### Context: CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR) ### Question: How many positions did the player from Spring High School play? ### Answer: SELECT COUNT(position) FROM table_11677100_4 WHERE school = "Spring High school" |
What player is from Spring, Tx? | CREATE TABLE table_11677100_4 (player VARCHAR, hometown VARCHAR) | SELECT player FROM table_11677100_4 WHERE hometown = "Spring, TX" | ### Context: CREATE TABLE table_11677100_4 (player VARCHAR, hometown VARCHAR) ### Question: What player is from Spring, Tx? ### Answer: SELECT player FROM table_11677100_4 WHERE hometown = "Spring, TX" |
What town is Brighton High School in? | CREATE TABLE table_11677100_4 (hometown VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677100_4 WHERE school = "Brighton High school" | ### Context: CREATE TABLE table_11677100_4 (hometown VARCHAR, school VARCHAR) ### Question: What town is Brighton High School in? ### Answer: SELECT hometown FROM table_11677100_4 WHERE school = "Brighton High school" |
The catcher went to what school? | CREATE TABLE table_11677100_7 (school VARCHAR, position VARCHAR) | SELECT school FROM table_11677100_7 WHERE position = "Catcher" | ### Context: CREATE TABLE table_11677100_7 (school VARCHAR, position VARCHAR) ### Question: The catcher went to what school? ### Answer: SELECT school FROM table_11677100_7 WHERE position = "Catcher" |
How many schools did Mike Jones attend? | CREATE TABLE table_11677100_7 (school VARCHAR, player VARCHAR) | SELECT COUNT(school) FROM table_11677100_7 WHERE player = "Mike Jones" | ### Context: CREATE TABLE table_11677100_7 (school VARCHAR, player VARCHAR) ### Question: How many schools did Mike Jones attend? ### Answer: SELECT COUNT(school) FROM table_11677100_7 WHERE player = "Mike Jones" |
What is the postion of the player listed from Dooly County High School? | CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR) | SELECT position FROM table_11677691_10 WHERE school = "Dooly County High school" | ### Context: CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR) ### Question: What is the postion of the player listed from Dooly County High School? ### Answer: SELECT position FROM table_11677691_10 WHERE school = "Dooly County High school" |
What player represented Vista Murrieta High School? | CREATE TABLE table_11677691_10 (player VARCHAR, school VARCHAR) | SELECT player FROM table_11677691_10 WHERE school = "Vista Murrieta High school" | ### Context: CREATE TABLE table_11677691_10 (player VARCHAR, school VARCHAR) ### Question: What player represented Vista Murrieta High School? ### Answer: SELECT player FROM table_11677691_10 WHERE school = "Vista Murrieta High school" |
What was the position of the player from Butler High School? | CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR) | SELECT position FROM table_11677691_10 WHERE school = "Butler High school" | ### Context: CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR) ### Question: What was the position of the player from Butler High School? ### Answer: SELECT position FROM table_11677691_10 WHERE school = "Butler High school" |
What position belonged to the player from Paramus, New Jersey? | CREATE TABLE table_11677691_10 (position VARCHAR, hometown VARCHAR) | SELECT position FROM table_11677691_10 WHERE hometown = "Paramus, New Jersey" | ### Context: CREATE TABLE table_11677691_10 (position VARCHAR, hometown VARCHAR) ### Question: What position belonged to the player from Paramus, New Jersey? ### Answer: SELECT position FROM table_11677691_10 WHERE hometown = "Paramus, New Jersey" |
What town is Muscle Shoals High School located in? | CREATE TABLE table_11677691_10 (hometown VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677691_10 WHERE school = "Muscle Shoals High school" | ### Context: CREATE TABLE table_11677691_10 (hometown VARCHAR, school VARCHAR) ### Question: What town is Muscle Shoals High School located in? ### Answer: SELECT hometown FROM table_11677691_10 WHERE school = "Muscle Shoals High school" |
What pick was the player from Apopka, FL in the 2002 MLB draft | CREATE TABLE table_11677100_8 (mlb_draft VARCHAR, hometown VARCHAR) | SELECT mlb_draft FROM table_11677100_8 WHERE hometown = "Apopka, FL" | ### Context: CREATE TABLE table_11677100_8 (mlb_draft VARCHAR, hometown VARCHAR) ### Question: What pick was the player from Apopka, FL in the 2002 MLB draft ### Answer: SELECT mlb_draft FROM table_11677100_8 WHERE hometown = "Apopka, FL" |
WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND? | CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR) | SELECT school FROM table_11677691_2 WHERE college = "South Carolina" | ### Context: CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR) ### Question: WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND? ### Answer: SELECT school FROM table_11677691_2 WHERE college = "South Carolina" |
WHAT IS THE HOMETOWN OF TONY STEWARD? | CREATE TABLE table_11677691_2 (hometown VARCHAR, player VARCHAR) | SELECT hometown FROM table_11677691_2 WHERE player = "Tony Steward" | ### Context: CREATE TABLE table_11677691_2 (hometown VARCHAR, player VARCHAR) ### Question: WHAT IS THE HOMETOWN OF TONY STEWARD? ### Answer: SELECT hometown FROM table_11677691_2 WHERE player = "Tony Steward" |
WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY? | CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR) | SELECT position FROM table_11677691_2 WHERE school = "South Pointe High school" | ### Context: CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR) ### Question: WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY? ### Answer: SELECT position FROM table_11677691_2 WHERE school = "South Pointe High school" |
HOW MANY PLAYERS PLAY FOR OREGON? | CREATE TABLE table_11677691_2 (player VARCHAR, college VARCHAR) | SELECT COUNT(player) FROM table_11677691_2 WHERE college = "Oregon" | ### Context: CREATE TABLE table_11677691_2 (player VARCHAR, college VARCHAR) ### Question: HOW MANY PLAYERS PLAY FOR OREGON? ### Answer: SELECT COUNT(player) FROM table_11677691_2 WHERE college = "Oregon" |
WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO? | CREATE TABLE table_11677691_2 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677691_2 WHERE player = "Ha'Sean Clinton-Dix" | ### Context: CREATE TABLE table_11677691_2 (school VARCHAR, player VARCHAR) ### Question: WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO? ### Answer: SELECT school FROM table_11677691_2 WHERE player = "Ha'Sean Clinton-Dix" |
How many players are from Delray Beach, Florida? | CREATE TABLE table_11677691_11 (player VARCHAR, hometown VARCHAR) | SELECT COUNT(player) FROM table_11677691_11 WHERE hometown = "Delray Beach, Florida" | ### Context: CREATE TABLE table_11677691_11 (player VARCHAR, hometown VARCHAR) ### Question: How many players are from Delray Beach, Florida? ### Answer: SELECT COUNT(player) FROM table_11677691_11 WHERE hometown = "Delray Beach, Florida" |
How many schools did Derrick Green attend? | CREATE TABLE table_11677691_11 (school VARCHAR, player VARCHAR) | SELECT COUNT(school) FROM table_11677691_11 WHERE player = "Derrick Green" | ### Context: CREATE TABLE table_11677691_11 (school VARCHAR, player VARCHAR) ### Question: How many schools did Derrick Green attend? ### Answer: SELECT COUNT(school) FROM table_11677691_11 WHERE player = "Derrick Green" |
What is the hometown of the player who attended American Heritage School? | CREATE TABLE table_11677691_11 (hometown VARCHAR, school VARCHAR) | SELECT hometown FROM table_11677691_11 WHERE school = "American Heritage school" | ### Context: CREATE TABLE table_11677691_11 (hometown VARCHAR, school VARCHAR) ### Question: What is the hometown of the player who attended American Heritage School? ### Answer: SELECT hometown FROM table_11677691_11 WHERE school = "American Heritage school" |
How many positions does Greg Bryant play? | CREATE TABLE table_11677691_11 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_11677691_11 WHERE player = "Greg Bryant" | ### Context: CREATE TABLE table_11677691_11 (position VARCHAR, player VARCHAR) ### Question: How many positions does Greg Bryant play? ### Answer: SELECT COUNT(position) FROM table_11677691_11 WHERE player = "Greg Bryant" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.