combined_text stringlengths 106 1.05k |
|---|
###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###context:CREATE TABLE table_11630008_5 (season__number INTEGER, series__number 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###context:CREATE TABLE table_11630008_5 (title VARCHAR, production_code VARCHAR) |
###question:Who directed the episode written by Lamont Ferrell?###answer: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: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"###context:CREATE TABLE table_11636213_7 (date 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"###context:CREATE TABLE table_11636213_7 (partnering VARCHAR, result 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"###context:CREATE TABLE table_11642945_1 (director 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"###context:CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR) |
###question:Margot Kidder had what director?###answer:SELECT director FROM table_11642945_1 WHERE celebrity = "Margot Kidder"###context:CREATE TABLE table_11642945_1 (director VARCHAR, celebrity VARCHAR) |
###question:How many celebrities had an 18October2007 Original air Date?###answer: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:Which viewers had Matt Gallagher as the director?###answer:SELECT viewers FROM table_11642945_1 WHERE director = "Matt Gallagher"###context:CREATE TABLE table_11642945_1 (viewers VARCHAR, director 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###context:CREATE TABLE table_11630008_7 (series__number VARCHAR, production_code VARCHAR) |
###question:What is the title of production code 514?###answer: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 location of the institution barton college###answer:SELECT location FROM table_11658094_1 WHERE institution = "Barton College"###context:CREATE TABLE table_11658094_1 (location VARCHAR, institution VARCHAR) |
###question: Which institutions joined in 1993###answer:SELECT institution FROM table_11658094_1 WHERE joined = "1993"###context:CREATE TABLE table_11658094_1 (institution VARCHAR, joined VARCHAR) |
###question:what are the locations that joined in 2008###answer:SELECT location FROM table_11658094_1 WHERE joined = "2008"###context:CREATE TABLE table_11658094_1 (location VARCHAR, joined VARCHAR) |
###question:What is the minimum enrollment at barton college###answer:SELECT MIN(enrollment) FROM table_11658094_1 WHERE institution = "Barton College"###context:CREATE TABLE table_11658094_1 (enrollment INTEGER, institution VARCHAR) |
###question:When was erskine college founded###answer:SELECT founded FROM table_11658094_1 WHERE institution = "Erskine College"###context:CREATE TABLE table_11658094_1 (founded VARCHAR, institution 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–$190,200"###context:CREATE TABLE table_11647327_2 (married_filing_separately VARCHAR, head_of_household 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 = "$8,351– $33,950"###context:CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, single... |
###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_qualified_widow_er_ FROM table_11647327_2 WHERE married_filing_separately = "$33,951–$68,525"###context:CREATE TABLE table_11647327_2 (married_fil... |
###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"###context:CREATE TABLE table_11647327_2 (head_of_household VARCHAR, single 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_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = "$208,851–$372,950"###context:CREATE TABLE table_1... |
###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"###context:CREATE TABLE table_1165048_1 (coach VARCHAR, dudley_tuckey_medal 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"###context:CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss 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)"###context:CREATE TABLE table_1165048_1 (dudley_tuckey_medal VARCHAR, 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)"###context:CREATE TABLE table_1165048_1 (season INTEGER, leading_goalkicker VARCHAR) |
###question:what are all the win/loss where season is 2009###answer:SELECT win_loss FROM table_1165048_1 WHERE season = 2009###context:CREATE TABLE table_1165048_1 (win_loss VARCHAR, season VARCHAR) |
###question: who is the captain where coach is geoff miles###answer:SELECT captain FROM table_1165048_1 WHERE coach = "Geoff Miles"###context:CREATE TABLE table_1165048_1 (captain VARCHAR, coach VARCHAR) |
###question:In 2005-06 what was the disaster?###answer:SELECT disaster FROM table_11649123_1 WHERE year = "2005-06"###context:CREATE TABLE table_11649123_1 (disaster VARCHAR, year 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###context:CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, no_of_communes 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"###context:CREATE TABLE table_11656578_2 (area_km²__1998_ VARCHAR, abbreviation 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"###context:CREATE TABLE table_11656578_2 (population__1980_ VARCHAR, capital VARCHAR) |
###question:How many different voivodenship have 747 900 citizes?###answer:SELECT COUNT(voivodeship) FROM table_11656578_2 WHERE population__1980_ = "747 900"###context:CREATE TABLE table_11656578_2 (voivodeship VARCHAR, population__1980_ VARCHAR) |
###question:What year did longwood university leave the conference?###answer: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 a school leave that was founded in 1880?###answer:SELECT left FROM table_11658094_3 WHERE founded = 1880###context:CREATE TABLE table_11658094_3 (left VARCHAR, founded VARCHAR) |
###question:What is the nickname of the school with an enrollment of 2386?###answer:SELECT nickname FROM table_11658094_3 WHERE enrollment = 2386###context:CREATE TABLE table_11658094_3 (nickname VARCHAR, enrollment 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"###context:CREATE TABLE table_11658094_3 (joined VARCHAR, location VARCHAR) |
###question:How many times did anderson university leave?###answer:SELECT COUNT(left) FROM table_11658094_3 WHERE institution = "Anderson University"###context:CREATE TABLE table_11658094_3 (left VARCHAR, institution VARCHAR) |
###question:What is the nickname of the newberry college?###answer:SELECT nickname FROM table_11658094_3 WHERE institution = "Newberry College"###context:CREATE TABLE table_11658094_3 (nickname VARCHAR, institution 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"###context:CREATE TABLE table_11662133_1 (gross_tonnage VARCHAR, ended_service VARCHAR) |
###question:What is the minimum gross tonnage of the Munich? ###answer: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 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_by = "Oz Scott"###context:CREATE TABLE table_11665016_2 (original_air_date VARCHAR, written_by VARCHAR, directed_by V... |
###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"###context:CREATE TABLE table_11665016_2 (title VARCHAR, written_by VARCHAR) |
###question:Which episode was directed by steven depaul###answer:SELECT title FROM table_11665016_2 WHERE directed_by = "Steven DePaul"###context:CREATE TABLE table_11665016_2 (title VARCHAR, directed_by VARCHAR) |
###question:What where the tms numbers built in 1923###answer: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 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###context:CREATE TABLE table_1166023_1 (TMS VARCHAR, builder VARCHAR, year_built 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"###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"###context:CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name 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"###context:CREATE TABLE table_11662133_3 (tonnage INTEGER, 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"###context:CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, date_entered_service 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"###context:CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, type_of_ship VARCHAR) |
###question:what are all the date withdrawn for koningin beatrix###answer: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:Where is the first season that Anthony Hemingway appears?###answer: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:What is the original air date of season 18?###answer: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: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"###context:CREATE TABLE table_11664625_2 (no_in_season INTEGER, us_viewers__millions_ VARCHAR) |
###question:How many champions were there in 2009?###answer:SELECT COUNT(champion) FROM table_1167698_1 WHERE season = "2009"###context:CREATE TABLE table_1167698_1 (champion VARCHAR, season 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"###context:CREATE TABLE table_1167698_1 (third_place VARCHAR, runner_up VARCHAR) |
###question:What position does Matt Hobgood play?###answer:SELECT position FROM table_11677100_15 WHERE player = "Matt Hobgood"###context:CREATE TABLE table_11677100_15 (position VARCHAR, player VARCHAR) |
###question:How many players were from high point, nc?###answer: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:What high school did Jeff Malm attend?###answer:SELECT school FROM table_11677100_15 WHERE player = "Jeff Malm"###context:CREATE TABLE table_11677100_15 (school VARCHAR, player VARCHAR) |
###question:How many hometowns does the catcher have?###answer:SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = "Catcher"###context:CREATE TABLE table_11677100_15 (hometown VARCHAR, position 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"###context:CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, school VARCHAR) |
###question:What school did the player Ethan Bennett attend?###answer:SELECT school FROM table_11677100_16 WHERE player = "Ethan Bennett"###context:CREATE TABLE table_11677100_16 (school VARCHAR, player VARCHAR) |
###question:What MLB Drafts have the position pitcher/infielder? ###answer:SELECT mlb_draft FROM table_11677100_16 WHERE position = "Pitcher/Infielder"###context:CREATE TABLE table_11677100_16 (mlb_draft VARCHAR, position VARCHAR) |
###question:What positions were drafted from Las Vegas, NV?###answer:SELECT position FROM table_11677100_16 WHERE hometown = "Las Vegas, NV"###context:CREATE TABLE table_11677100_16 (position VARCHAR, hometown VARCHAR) |
###question:What is the hometown of Bubba Starling?###answer:SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling"###context:CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR) |
###question:How many schools did Bubba Starling attend?###answer:SELECT COUNT(school) FROM table_11677100_17 WHERE player = "Bubba Starling"###context:CREATE TABLE table_11677100_17 (school VARCHAR, player 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"###context:CREATE TABLE table_11677100_5 (hometown VARCHAR, school VARCHAR) |
###question:What school did Pat Osborn attend? ###answer:SELECT school FROM table_11677100_5 WHERE player = "Pat Osborn"###context:CREATE TABLE table_11677100_5 (school VARCHAR, player VARCHAR) |
###question:What is Josh Hamilton's hometown?###answer:SELECT hometown FROM table_11677100_5 WHERE player = "Josh Hamilton"###context:CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR) |
###question:What school does Kerry Wood play for?###answer:SELECT school FROM table_11677100_3 WHERE player = "Kerry Wood"###context:CREATE TABLE table_11677100_3 (school VARCHAR, player VARCHAR) |
###question:What's the position of the player from Germantown, TN?###answer:SELECT position FROM table_11677100_3 WHERE hometown = "Germantown, TN"###context:CREATE TABLE table_11677100_3 (position VARCHAR, hometown VARCHAR) |
###question:What player goes to Torrey Pines High School?###answer:SELECT player FROM table_11677100_3 WHERE school = "Torrey Pines High school"###context:CREATE TABLE table_11677100_3 (player VARCHAR, school VARCHAR) |
###question:What position does Kerry Wood play in?###answer:SELECT position FROM table_11677100_3 WHERE player = "Kerry Wood"###context:CREATE TABLE table_11677100_3 (position VARCHAR, player VARCHAR) |
###question:What's Shion Newton's MLB draft result?###answer:SELECT mlb_draft FROM table_11677100_3 WHERE player = "Shion Newton"###context:CREATE TABLE table_11677100_3 (mlb_draft VARCHAR, player 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 school"###context:CREATE TABLE table_11677100_18 (hometown VARCHAR, position VARCHAR, school 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"###context:CREATE TABLE table_11677100_18 (school VARCHAR, hometown 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"###context:CREATE TABLE table_11677100_18 (mlb_draft VARCHAR, school 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"###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"###context:CREATE TABLE table_11677100_18 (school VARCHAR, hometown 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"###context:CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR) |
###question:What player is from Spring, Tx?###answer:SELECT player FROM table_11677100_4 WHERE hometown = "Spring, TX"###context:CREATE TABLE table_11677100_4 (player VARCHAR, hometown VARCHAR) |
###question:What town is Brighton High School in?###answer:SELECT hometown FROM table_11677100_4 WHERE school = "Brighton High school"###context:CREATE TABLE table_11677100_4 (hometown VARCHAR, school VARCHAR) |
###question:The catcher went to what school? ###answer:SELECT school FROM table_11677100_7 WHERE position = "Catcher"###context:CREATE TABLE table_11677100_7 (school VARCHAR, position VARCHAR) |
###question:How many schools did Mike Jones attend?###answer:SELECT COUNT(school) FROM table_11677100_7 WHERE player = "Mike Jones"###context:CREATE TABLE table_11677100_7 (school VARCHAR, player 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"###context:CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR) |
###question:What player represented Vista Murrieta High School?###answer:SELECT player FROM table_11677691_10 WHERE school = "Vista Murrieta High school"###context:CREATE TABLE table_11677691_10 (player 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"###context:CREATE TABLE table_11677691_10 (position VARCHAR, school VARCHAR) |
###question:What position belonged to the player from Paramus, New Jersey?###answer:SELECT position FROM table_11677691_10 WHERE hometown = "Paramus, New Jersey"###context:CREATE TABLE table_11677691_10 (position VARCHAR, hometown VARCHAR) |
###question:What town is Muscle Shoals High School located in?###answer:SELECT hometown FROM table_11677691_10 WHERE school = "Muscle Shoals High school"###context:CREATE TABLE table_11677691_10 (hometown VARCHAR, school 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"###context:CREATE TABLE table_11677100_8 (mlb_draft VARCHAR, hometown VARCHAR) |
###question:WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?###answer:SELECT school FROM table_11677691_2 WHERE college = "South Carolina"###context:CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR) |
###question:WHAT IS THE HOMETOWN OF TONY STEWARD?###answer:SELECT hometown FROM table_11677691_2 WHERE player = "Tony Steward"###context:CREATE TABLE table_11677691_2 (hometown VARCHAR, player 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"###context:CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR) |
###question:HOW MANY PLAYERS PLAY FOR OREGON?###answer:SELECT COUNT(player) FROM table_11677691_2 WHERE college = "Oregon"###context:CREATE TABLE table_11677691_2 (player VARCHAR, college VARCHAR) |
###question:WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO?###answer:SELECT school FROM table_11677691_2 WHERE player = "Ha'Sean Clinton-Dix"###context:CREATE TABLE table_11677691_2 (school VARCHAR, player VARCHAR) |
###question:How many players are from Delray Beach, Florida?###answer: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 schools did Derrick Green attend?###answer:SELECT COUNT(school) FROM table_11677691_11 WHERE player = "Derrick Green"###context:CREATE TABLE table_11677691_11 (school VARCHAR, player 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"###context:CREATE TABLE table_11677691_11 (hometown VARCHAR, school VARCHAR) |
###question:How many positions does Greg Bryant play?###answer:SELECT COUNT(position) FROM table_11677691_11 WHERE player = "Greg Bryant"###context:CREATE TABLE table_11677691_11 (position VARCHAR, player VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.