question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What school did the player Ethan Bennett attend?
CREATE TABLE "table1_11677100_16" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "school" FROM "table1_11677100_16" WHERE "player"='Ethan Bennett';
1-11677100-16
What MLB Drafts have the position pitcher/infielder?
CREATE TABLE "table1_11677100_16" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "mlb_draft" FROM "table1_11677100_16" WHERE "position"='Pitcher/Infielder';
1-11677100-16
What positions were drafted from Las Vegas, NV?
CREATE TABLE "table1_11677100_16" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "position" FROM "table1_11677100_16" WHERE "hometown"='Las Vegas, NV';
1-11677100-16
What is the hometown of Bubba Starling?
CREATE TABLE "table1_11677100_17" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "hometown" FROM "table1_11677100_17" WHERE "player"='Bubba Starling';
1-11677100-17
How many schools did Bubba Starling attend?
CREATE TABLE "table1_11677100_17" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT COUNT("school") FROM "table1_11677100_17" WHERE "player"='Bubba Starling';
1-11677100-17
What was the hometown of the player who attended Athens Drive High School?
CREATE TABLE "table1_11677100_5" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "hometown" FROM "table1_11677100_5" WHERE "school"='Athens Drive High School';
1-11677100-5
What school did Pat Osborn attend?
CREATE TABLE "table1_11677100_5" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "school" FROM "table1_11677100_5" WHERE "player"='Pat Osborn';
1-11677100-5
What is Josh Hamilton's hometown?
CREATE TABLE "table1_11677100_5" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "hometown" FROM "table1_11677100_5" WHERE "player"='Josh Hamilton';
1-11677100-5
What school does Kerry Wood play for?
CREATE TABLE "1995_team" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "school" FROM "1995_team" WHERE "player"='Kerry Wood';
1-11677100-3
What's the position of the player from Germantown, TN?
CREATE TABLE "1995_team" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "position" FROM "1995_team" WHERE "hometown"='Germantown, TN';
1-11677100-3
What player goes to Torrey Pines High School?
CREATE TABLE "1995_team" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "player" FROM "1995_team" WHERE "school"='Torrey Pines High School';
1-11677100-3
What position does Kerry Wood play in?
CREATE TABLE "1995_team" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "position" FROM "1995_team" WHERE "player"='Kerry Wood';
1-11677100-3
What's Shion Newton's MLB draft result?
CREATE TABLE "1995_team" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "mlb_draft" FROM "1995_team" WHERE "player"='Shion Newton';
1-11677100-3
What is the hometown of the pitcher who's school was Saint Joseph Regional High School?
CREATE TABLE "table1_11677100_18" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "hometown" FROM "table1_11677100_18" WHERE "position"='Pitcher' AND "school"='Saint Joseph Regional High School';
1-11677100-18
What is the school of the player from Lake Charles, LA?
CREATE TABLE "table1_11677100_18" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "school" FROM "table1_11677100_18" WHERE "hometown"='Lake Charles, LA';
1-11677100-18
Where was mlb draft for the player who's school was Carl Albert High School?
CREATE TABLE "table1_11677100_18" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "mlb_draft" FROM "table1_11677100_18" WHERE "school"='Carl Albert High School';
1-11677100-18
What school did the player attend who's hometown was Montvale, NJ?
CREATE TABLE "table1_11677100_18" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "school" FROM "table1_11677100_18" WHERE "hometown"='Montvale, NJ';
1-11677100-18
What is the school for the player who's hometown was Irvine, CA?
CREATE TABLE "table1_11677100_18" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "school" FROM "table1_11677100_18" WHERE "hometown"='Irvine, CA';
1-11677100-18
How many positions did the player from Spring High School play?
CREATE TABLE "table1_11677100_4" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT COUNT("position") FROM "table1_11677100_4" WHERE "school"='Spring High School';
1-11677100-4
What player is from Spring, Tx?
CREATE TABLE "table1_11677100_4" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "player" FROM "table1_11677100_4" WHERE "hometown"='Spring, TX';
1-11677100-4
What town is Brighton High School in?
CREATE TABLE "table1_11677100_4" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "hometown" FROM "table1_11677100_4" WHERE "school"='Brighton High School';
1-11677100-4
The catcher went to what school?
CREATE TABLE "table1_11677100_7" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "school" FROM "table1_11677100_7" WHERE "position"='Catcher';
1-11677100-7
How many schools did Mike Jones attend?
CREATE TABLE "table1_11677100_7" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT COUNT("school") FROM "table1_11677100_7" WHERE "player"='Mike Jones';
1-11677100-7
What is the postion of the player listed from Dooly County High School?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "position" FROM "2012_team" WHERE "school"='Dooly County High School';
1-11677691-10
What player represented Vista Murrieta High School?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2012_team" WHERE "school"='Vista Murrieta High School';
1-11677691-10
What was the position of the player from Butler High School?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "position" FROM "2012_team" WHERE "school"='Butler High School';
1-11677691-10
What position belonged to the player from Paramus, New Jersey?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "position" FROM "2012_team" WHERE "hometown"='Paramus, New Jersey';
1-11677691-10
What town is Muscle Shoals High School located in?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2012_team" WHERE "school"='Muscle Shoals High School';
1-11677691-10
What pick was the player from Apopka, FL in the 2002 MLB draft
CREATE TABLE "table1_11677100_8" ( "player" text, "position" text, "school" text, "hometown" text, "mlb_draft" text );
SELECT "mlb_draft" FROM "table1_11677100_8" WHERE "hometown"='Apopka, FL';
1-11677100-8
WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2010_team" WHERE "college"='South Carolina';
1-11677691-2
WHAT IS THE HOMETOWN OF TONY STEWARD?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2010_team" WHERE "player"='Tony Steward';
1-11677691-2
WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "position" FROM "2010_team" WHERE "school"='South Pointe High School';
1-11677691-2
HOW MANY PLAYERS PLAY FOR OREGON?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT COUNT("player") FROM "2010_team" WHERE "college"='Oregon';
1-11677691-2
WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2010_team" WHERE "player"='Ha''Sean Clinton-Dix';
1-11677691-2
How many players are from Delray Beach, Florida?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT COUNT("player") FROM "2012_team" WHERE "hometown"='Delray Beach, Florida';
1-11677691-11
How many schools did Derrick Green attend?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT COUNT("school") FROM "2012_team" WHERE "player"='Derrick Green';
1-11677691-11
What is the hometown of the player who attended American Heritage School?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2012_team" WHERE "school"='American Heritage School';
1-11677691-11
How many positions does Greg Bryant play?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT COUNT("position") FROM "2012_team" WHERE "player"='Greg Bryant';
1-11677691-11
How many schools did Derrick Green attend?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT COUNT("school") FROM "2012_team" WHERE "player"='Derrick Green';
1-11677691-11
Which college has the player Rushel Shell?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "college" FROM "2011_team" WHERE "player"='Rushel Shell';
1-11677691-5
Which players attend Stanford college?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2011_team" WHERE "college"='Stanford';
1-11677691-5
Which school is in the hometown of Aledo, Texas?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2011_team" WHERE "hometown"='Aledo, Texas';
1-11677691-5
Zach Banner is a player at which school?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2011_team" WHERE "player"='Zach Banner';
1-11677691-5
What position is associated with the hometown of Olney, Maryland?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT COUNT("position") FROM "2011_team" WHERE "hometown"='Olney, Maryland';
1-11677691-5
Which college does the player John Theus associate with?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "college" FROM "2011_team" WHERE "player"='John Theus';
1-11677691-5
What player's hometown is Abilene, Texas?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2010_team" WHERE "hometown"='Abilene, Texas';
1-11677691-3
How many players are from Indianapolis, Indiana?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT COUNT("player") FROM "2010_team" WHERE "hometown"='Indianapolis, Indiana';
1-11677691-3
What position is Charone Peake?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "position" FROM "2010_team" WHERE "player"='Charone Peake';
1-11677691-3
Running back Aaron Green went to Nebraska and what high school?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2010_team" WHERE "position"='Running back' AND "college"='Nebraska';
1-11677691-3
What player's hometown is Roebuck, South Carolina?
CREATE TABLE "2010_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2010_team" WHERE "hometown"='Roebuck, South Carolina';
1-11677691-3
what are all the positions of players who's hometown is concord, california
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "position" FROM "2012_team" WHERE "hometown"='Concord, California';
1-11677691-12
who are all the players for st. thomas aquinas high school
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2012_team" WHERE "school"='St. Thomas Aquinas High School';
1-11677691-12
who are all the players for mission viejo high school
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2012_team" WHERE "school"='Mission Viejo High School';
1-11677691-12
What is the hometown of the players for de la salle high school
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2012_team" WHERE "school"='De La Salle High School';
1-11677691-12
who are all the players for armwood high school
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2012_team" WHERE "school"='Armwood High School';
1-11677691-12
What is the hometown of the players for placer, california
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2012_team" WHERE "hometown"='Placer, California';
1-11677691-12
What is the nba draft for the player from the hometown of virginia beach, va?
CREATE TABLE "boys_basketball_players_and_coaches_of_t" ( "year" text, "player" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT "nba_draft" FROM "boys_basketball_players_and_coaches_of_t" WHERE "hometown"='Virginia Beach, VA';
1-11677760-1
what is the college for the player who's school is camden high school?
CREATE TABLE "boys_basketball_players_and_coaches_of_t" ( "year" text, "player" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT "college" FROM "boys_basketball_players_and_coaches_of_t" WHERE "school"='Camden High School';
1-11677760-1
what is the year for player is derrick favors?
CREATE TABLE "boys_basketball_players_and_coaches_of_t" ( "year" text, "player" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT "year" FROM "boys_basketball_players_and_coaches_of_t" WHERE "player"='Derrick Favors';
1-11677760-1
how many times was the player felipe lopez?
CREATE TABLE "boys_basketball_players_and_coaches_of_t" ( "year" text, "player" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT COUNT("nba_draft") FROM "boys_basketball_players_and_coaches_of_t" WHERE "player"='Felipe Lopez';
1-11677760-1
what is the college for the player damon bailey?
CREATE TABLE "boys_basketball_players_and_coaches_of_t" ( "year" text, "player" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT "college" FROM "boys_basketball_players_and_coaches_of_t" WHERE "player"='Damon Bailey';
1-11677760-1
what is the player who's college is listed as direct to nba, school is st. vincent – st. mary high school and the year is 2001-2002?
CREATE TABLE "boys_basketball_players_and_coaches_of_t" ( "year" text, "player" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT "player" FROM "boys_basketball_players_and_coaches_of_t" WHERE "college"='Direct to NBA' AND "school"='St. Vincent – St. Mary High School' AND "year"='2001-2002';
1-11677760-1
Which hometown has the college Louisiana State?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2012_team" WHERE "college"='Louisiana State';
1-11677691-9
Which college is present in the hometown of Crete, Illinois?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "college" FROM "2012_team" WHERE "hometown"='Crete, Illinois';
1-11677691-9
Which school has the player Thomas Tyner?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2012_team" WHERE "player"='Thomas Tyner';
1-11677691-9
Which school is located in the hometown of Centerville, Ohio?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2012_team" WHERE "hometown"='Centerville, Ohio';
1-11677691-9
What player is from Ohio State college?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "player" FROM "2012_team" WHERE "college"='Ohio State';
1-11677691-9
Which school is home to player Thomas Tyner?
CREATE TABLE "2012_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2012_team" WHERE "player"='Thomas Tyner';
1-11677691-9
Where is scott starr from?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2011_team" WHERE "player"='Scott Starr';
1-11677691-6
Where is lincoln high school located?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2011_team" WHERE "school"='Lincoln High School';
1-11677691-6
Where is Shaq Thompson from?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2011_team" WHERE "player"='Shaq Thompson';
1-11677691-6
Where did Darius Hamilton go?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "school" FROM "2011_team" WHERE "player"='Darius Hamilton';
1-11677691-6
Where is Norco HIgh School?
CREATE TABLE "2011_team" ( "player" text, "position" text, "school" text, "hometown" text, "college" text );
SELECT "hometown" FROM "2011_team" WHERE "school"='Norco High School';
1-11677691-6
What is the height of the player that went to ohio state?
CREATE TABLE "2011_boys_team" ( "player" text, "height" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT "height" FROM "2011_boys_team" WHERE "college"='Ohio State';
1-11677760-31
Name the total number of nba drafts that went to east side high school
CREATE TABLE "2011_boys_team" ( "player" text, "height" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT COUNT("nba_draft") FROM "2011_boys_team" WHERE "school"='East Side High School';
1-11677760-31
Name the numbers of the nba draft where the player went to kentucky
CREATE TABLE "2011_boys_team" ( "player" text, "height" text, "school" text, "hometown" text, "college" text, "nba_draft" text );
SELECT "nba_draft" FROM "2011_boys_team" WHERE "college"='Kentucky';
1-11677760-31
What was the rating in 1997?
CREATE TABLE "cbs_era_1979_2000" ( "year" real, "network" text, "lap_by_lap" text, "color_commentator_s" text, "pit_reporters" text, "host" text, "ratings" text, "viewers" text );
SELECT "ratings" FROM "cbs_era_1979_2000" WHERE "year"=1997;
1-11691212-2
Who narrated the lap-by-lap to a 13.4 million audience?
CREATE TABLE "cbs_era_1979_2000" ( "year" real, "network" text, "lap_by_lap" text, "color_commentator_s" text, "pit_reporters" text, "host" text, "ratings" text, "viewers" text );
SELECT "lap_by_lap" FROM "cbs_era_1979_2000" WHERE "viewers"='13.4 million';
1-11691212-2
What was the number for Bötzow where Vehlefanz is 1.800?
CREATE TABLE "subdivisions" ( "year" real, "b_tzow" text, "schwante" text, "vehlefanz" text, "neu_vehlefanz" real, "marwitz" text, "b_renklau" text, "eichst_dt" real );
SELECT "b_tzow" FROM "subdivisions" WHERE "vehlefanz"='1.800';
1-11680175-1
What was the number for Vehlefanz where Bärenklau is 1.288?
CREATE TABLE "subdivisions" ( "year" real, "b_tzow" text, "schwante" text, "vehlefanz" text, "neu_vehlefanz" real, "marwitz" text, "b_renklau" text, "eichst_dt" real );
SELECT "vehlefanz" FROM "subdivisions" WHERE "b_renklau"='1.288';
1-11680175-1
What was the number for Schwante where Bärenklau is 1.270?
CREATE TABLE "subdivisions" ( "year" real, "b_tzow" text, "schwante" text, "vehlefanz" text, "neu_vehlefanz" real, "marwitz" text, "b_renklau" text, "eichst_dt" real );
SELECT "schwante" FROM "subdivisions" WHERE "b_renklau"='1.270';
1-11680175-1
How many years where Neu-Vehlefanz had a number of 365?
CREATE TABLE "subdivisions" ( "year" real, "b_tzow" text, "schwante" text, "vehlefanz" text, "neu_vehlefanz" real, "marwitz" text, "b_renklau" text, "eichst_dt" real );
SELECT COUNT("year") FROM "subdivisions" WHERE "neu_vehlefanz"=365;
1-11680175-1
How many times did Neu-Vehlefanz occur when Schwante had 2.043?
CREATE TABLE "subdivisions" ( "year" real, "b_tzow" text, "schwante" text, "vehlefanz" text, "neu_vehlefanz" real, "marwitz" text, "b_renklau" text, "eichst_dt" real );
SELECT COUNT("neu_vehlefanz") FROM "subdivisions" WHERE "schwante"='2.043';
1-11680175-1
How many years where Eichstädt had a number of 939?
CREATE TABLE "subdivisions" ( "year" real, "b_tzow" text, "schwante" text, "vehlefanz" text, "neu_vehlefanz" real, "marwitz" text, "b_renklau" text, "eichst_dt" real );
SELECT COUNT("year") FROM "subdivisions" WHERE "eichst_dt"=939;
1-11680175-1
How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT COUNT("replaced_by") FROM "managerial_changes" WHERE "date_of_appointment"='10 December 2007' AND "manner_of_departure"='Quit';
1-11713303-2
What is the date of vacancy for 10 december 2007 when quit?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT "date_of_vacancy" FROM "managerial_changes" WHERE "date_of_appointment"='10 December 2007' AND "manner_of_departure"='Quit';
1-11713303-2
How many manners of departure did peter voets have?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT COUNT("manner_of_departure") FROM "managerial_changes" WHERE "outgoing_manager"='Peter Voets';
1-11713303-2
What is the link abilities when the predecessors is ti-85?
CREATE TABLE "table1_11703336_1" ( "calculator" text, "cpu" text, "ram" text, "display_size" text, "programming_languages" text, "link_abilities" text, "year_released" text, "predecessors" text, "successors" text );
SELECT "link_abilities" FROM "table1_11703336_1" WHERE "predecessors"='TI-85';
1-11703336-1
What is the cpu of the calculator released in 1993?
CREATE TABLE "table1_11703336_1" ( "calculator" text, "cpu" text, "ram" text, "display_size" text, "programming_languages" text, "link_abilities" text, "year_released" text, "predecessors" text, "successors" text );
SELECT "cpu" FROM "table1_11703336_1" WHERE "year_released"='1993';
1-11703336-1
what is the display size for the calculator released in 1997?
CREATE TABLE "table1_11703336_1" ( "calculator" text, "cpu" text, "ram" text, "display_size" text, "programming_languages" text, "link_abilities" text, "year_released" text, "predecessors" text, "successors" text );
SELECT "display_size" FROM "table1_11703336_1" WHERE "year_released"='1997';
1-11703336-1
what is the display size for the calculator ti-82?
CREATE TABLE "table1_11703336_1" ( "calculator" text, "cpu" text, "ram" text, "display_size" text, "programming_languages" text, "link_abilities" text, "year_released" text, "predecessors" text, "successors" text );
SELECT "display_size" FROM "table1_11703336_1" WHERE "calculator"='TI-82';
1-11703336-1
what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?
CREATE TABLE "table1_11703336_1" ( "calculator" text, "cpu" text, "ram" text, "display_size" text, "programming_languages" text, "link_abilities" text, "year_released" text, "predecessors" text, "successors" text );
SELECT "cpu" FROM "table1_11703336_1" WHERE "ram"='28 KB of RAM' AND "display_size"='128×64 pixels 21×8 characters';
1-11703336-1
How many series has the title "interior loft"?
CREATE TABLE "table1_11715748_2" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "original_airdate" text );
SELECT COUNT("series_num") FROM "table1_11715748_2" WHERE "title"='\"Interior Loft\"';
1-11715748-2
Who was the dirctor for season 13?
CREATE TABLE "table1_11715748_2" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "original_airdate" text );
SELECT "director_s" FROM "table1_11715748_2" WHERE "season_num"=13;
1-11715748-2
Who was the director for the title, "funhouse"?
CREATE TABLE "table1_11715748_2" ( "series_num" real, "season_num" real, "title" text, "director_s" text, "writer_s" text, "original_airdate" text );
SELECT "director_s" FROM "table1_11715748_2" WHERE "title"='\"Funhouse\"';
1-11715748-2
What is the episode title of the show that had a production code of 3T5764?
CREATE TABLE "table1_11694832_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT "title" FROM "table1_11694832_1" WHERE "production_code"='3T5764';
1-11694832-1
What is the first series number that Adele Lim wrote?
CREATE TABLE "table1_11694832_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT MIN("no_in_series") FROM "table1_11694832_1" WHERE "written_by"='Adele Lim';
1-11694832-1
How many millions of U.S. viewers watched the show with a production code of 3T5769?
CREATE TABLE "table1_11694832_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT "u_s_viewers_millions" FROM "table1_11694832_1" WHERE "production_code"='3T5769';
1-11694832-1
When was the show first aired that was viewed by 3.57 million U.S. viewers?
CREATE TABLE "table1_11694832_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT "original_air_date" FROM "table1_11694832_1" WHERE "u_s_viewers_millions"='3.57';
1-11694832-1
Who directed the show that was viewed by 2.06 million U.S. people?
CREATE TABLE "table1_11694832_1" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "production_code" text, "u_s_viewers_millions" text );
SELECT "directed_by" FROM "table1_11694832_1" WHERE "u_s_viewers_millions"='2.06';
1-11694832-1