question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Who was the winning driver in round 6?
CREATE TABLE table_1137702_3 (winning_driver VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1137702_3 WHERE round = 6" }
Who was the winning driver in the grand prix at Pacific Grand Prix?
CREATE TABLE table_1137702_3 (winning_driver VARCHAR, grand_prix VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = \"Pacific grand_prix\"" }
Who was the winning driver when the grand Prix was at Belgian Grand Prix?
CREATE TABLE table_1137702_3 (winning_driver VARCHAR, grand_prix VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = \"Belgian grand_prix\"" }
Who was the winning driver when the pole position was held by Ayrton Senna and the Fastest lap was Michael Schumacher?
CREATE TABLE table_1137702_3 (winning_driver VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1137702_3 WHERE pole_position = \"Ayrton Senna\" AND fastest_lap = \"Michael Schumacher\"" }
On which date was the winning driver Alain Prost and and had Damon Hill in the pole position?
CREATE TABLE table_1137703_2 (date VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)
{ "SQL_Query": "SELECT date FROM table_1137703_2 WHERE winning_driver = \"Alain Prost\" AND pole_position = \"Damon Hill\"" }
Which round was the Spanish Grand Prix?
CREATE TABLE table_1137703_2 (round VARCHAR, grand_prix VARCHAR)
{ "SQL_Query": "SELECT round FROM table_1137703_2 WHERE grand_prix = \"Spanish grand_prix\"" }
What was the record at week 7
CREATE TABLE table_11391448_2 (record VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11391448_2 WHERE week = 7" }
How many teams did they play week 6
CREATE TABLE table_11391448_2 (opponent VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT COUNT(opponent) FROM table_11391448_2 WHERE week = 6" }
What is the number of reports for the italian grand prix?
CREATE TABLE table_1140078_2 (report VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT COUNT(report) FROM table_1140078_2 WHERE race = \"Italian Grand Prix\"" }
What is the pole position of the belgian grand prix?
CREATE TABLE table_1140078_2 (pole_position VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT pole_position FROM table_1140078_2 WHERE race = \"Belgian Grand Prix\"" }
What is the pole position of paul ricard?
CREATE TABLE table_1140078_2 (pole_position VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT pole_position FROM table_1140078_2 WHERE location = \"Paul Ricard\"" }
What is the report of the united states grand prix west?
CREATE TABLE table_1140078_2 (report VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT report FROM table_1140078_2 WHERE race = \"United States Grand Prix West\"" }
Where is the German Grand Prix?
CREATE TABLE table_1140082_2 (location VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT location FROM table_1140082_2 WHERE race = \"German Grand Prix\"" }
What is the constructor of the Swedish Grand Prix?
CREATE TABLE table_1140082_2 (constructor VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_1140082_2 WHERE race = \"Swedish Grand Prix\"" }
Who did the fastest lap at Watkins glen?
CREATE TABLE table_1140082_2 (fastest_lap VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT fastest_lap FROM table_1140082_2 WHERE location = \"Watkins Glen\"" }
What circuit has a race called ii cape south easter trophy.
CREATE TABLE table_1140099_6 (circuit VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_1140099_6 WHERE race_name = \"II Cape South Easter Trophy\"" }
Which driver won the i race of champions?
CREATE TABLE table_1140099_6 (winning_driver VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1140099_6 WHERE race_name = \"I Race of Champions\"" }
What is the report for the race that Mike Spence won.
CREATE TABLE table_1140099_6 (report VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT report FROM table_1140099_6 WHERE winning_driver = \"Mike Spence\"" }
What is the report for the race i sunday mirror trophy?
CREATE TABLE table_1140099_6 (report VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT report FROM table_1140099_6 WHERE race_name = \"I Sunday Mirror Trophy\"" }
How many winners did I Dessau Autobahnspinne have?
CREATE TABLE table_1140116_6 (winning_driver VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(winning_driver) FROM table_1140116_6 WHERE race_name = \"I Dessau Autobahnspinne\"" }
What is the date on which a race was run at Halle-Saale-Schleife circuit?
CREATE TABLE table_1140116_6 (date VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT date FROM table_1140116_6 WHERE circuit = \"Halle-Saale-Schleife\"" }
How many races take place in Dessau circuit?
CREATE TABLE table_1140116_6 (race_name VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT COUNT(race_name) FROM table_1140116_6 WHERE circuit = \"Dessau\"" }
Which races did Paul Greifzu win?
CREATE TABLE table_1140116_6 (race_name VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT race_name FROM table_1140116_6 WHERE winning_driver = \"Paul Greifzu\"" }
Which driver won at the Sachsenring circuit?
CREATE TABLE table_1140114_5 (winning_driver VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1140114_5 WHERE circuit = \"Sachsenring\"" }
Which constructor was present at the Redex Trophy race?
CREATE TABLE table_1140114_5 (constructor VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_1140114_5 WHERE race_name = \"RedeX Trophy\"" }
How many different constructors had Paul Thiel as a winning driver?
CREATE TABLE table_1140114_5 (constructor VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT COUNT(constructor) FROM table_1140114_5 WHERE winning_driver = \"Paul Thiel\"" }
who is the opponent where tv is abc and game site is tampa stadium
CREATE TABLE table_11406866_2 (opponent VARCHAR, tv VARCHAR, game_site VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_11406866_2 WHERE tv = \"ABC\" AND game_site = \"Tampa Stadium\"" }
what is the total number of opponent where date is november 23, 1980
CREATE TABLE table_11406866_2 (opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(opponent) FROM table_11406866_2 WHERE date = \"November 23, 1980\"" }
what is the total number of kickoff [a ] where week is week
CREATE TABLE table_11406866_2 (a_ VARCHAR, kickoff_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(kickoff_)[a_] FROM table_11406866_2 WHERE \"week\" = \"week\"" }
what's the week where attendance is 77,098
CREATE TABLE table_11406866_2 (week VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT week FROM table_11406866_2 WHERE attendance = \"77,098\"" }
what's the record where attendance is 61,350
CREATE TABLE table_11406866_2 (record VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11406866_2 WHERE attendance = \"61,350\"" }
what's the record where result is l 24-10
CREATE TABLE table_11406866_2 (record VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT record FROM table_11406866_2 WHERE result = \"L 24-10\"" }
What date was the Silverstone circuit driven?
CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT date FROM table_1140119_5 WHERE circuit = \"Silverstone\"" }
When was the Albi circuit race driven?
CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT date FROM table_1140119_5 WHERE circuit = \"Albi\"" }
Would built the winning car in the IV J.C.C. Jersey Road Race?
CREATE TABLE table_1140119_5 (constructor VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_1140119_5 WHERE race_name = \"IV J.C.C. Jersey Road Race\"" }
Who won the race at the Jersey circuit?
CREATE TABLE table_1140119_5 (winning_driver VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_1140119_5 WHERE circuit = \"Jersey\"" }
When did the season air where the viewership was 14.71 million?
CREATE TABLE table_1145977_2 (season VARCHAR, viewers__in_millions_ VARCHAR)
{ "SQL_Query": "SELECT season AS premiere FROM table_1145977_2 WHERE viewers__in_millions_ = \"14.71\"" }
What is the power capacity when the generators were 781?
CREATE TABLE table_11456251_5 (power_capacity__gw_ VARCHAR, number_of_generators VARCHAR)
{ "SQL_Query": "SELECT power_capacity__gw_ FROM table_11456251_5 WHERE number_of_generators = 781" }
What is the percentage of total capacity when the energy is 120.2?
CREATE TABLE table_11456251_5 (_percentage_of_total_capacity VARCHAR, annual_energy__billion_kwh_ VARCHAR)
{ "SQL_Query": "SELECT _percentage_of_total_capacity FROM table_11456251_5 WHERE annual_energy__billion_kwh_ = \"120.2\"" }
What is the % of annual production of solar?
CREATE TABLE table_11456251_5 (_percentage_of_annual_production VARCHAR, power_source VARCHAR)
{ "SQL_Query": "SELECT _percentage_of_annual_production FROM table_11456251_5 WHERE power_source = \"Solar\"" }
What is the number of generators where the power capicity is 78.7?
CREATE TABLE table_11456251_5 (number_of_generators VARCHAR, power_capacity__gw_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(number_of_generators) FROM table_11456251_5 WHERE power_capacity__gw_ = \"78.7\"" }
What is the % of total capacity when the generators is 4048?
CREATE TABLE table_11456251_5 (_percentage_of_total_capacity VARCHAR, number_of_generators VARCHAR)
{ "SQL_Query": "SELECT _percentage_of_total_capacity FROM table_11456251_5 WHERE number_of_generators = 4048" }
If the model is 15.180e, what is the GVM (kg) Technical Capacity?
CREATE TABLE table_11497980_1 (gvm__kg__technical_capacity VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT gvm__kg__technical_capacity FROM table_11497980_1 WHERE model = \"15.180E\"" }
If the engine make/capacity is MWM 6.10 TCA-EURO III (Turbo Intercooler) and GVM (kg) Technical Capacity is 23000, what is the Torque Nm@rpm?
CREATE TABLE table_11497980_1 (torque_nm VARCHAR, gcm__kg__technical_capacity VARCHAR, engine_make_capacity VARCHAR)
{ "SQL_Query": "SELECT torque_nm AS @rpm FROM table_11497980_1 WHERE gcm__kg__technical_capacity = \"23000\" AND engine_make_capacity = \"MWM 6.10 TCA-EURO III (Turbo Intercooler)\"" }
What is the power kw@RPM of the 13.180 model?
CREATE TABLE table_11497980_1 (power_kw VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT COUNT(power_kw) AS @rpm FROM table_11497980_1 WHERE model = \"13.180\"" }
When the transmission make/type/speed is eaton fs 5306-a manual synchromesh 6 speed, what is the value of the gcm (kg) technical capacity?
CREATE TABLE table_11497980_1 (gcm__kg__technical_capacity VARCHAR, transmission_make_type_speed VARCHAR)
{ "SQL_Query": "SELECT gcm__kg__technical_capacity FROM table_11497980_1 WHERE transmission_make_type_speed = \"Eaton FS 5306-A Manual Synchromesh 6 Speed\"" }
Which model possesses a transmission make/type/speed of eaton fs-6306 a manual synchromesh 6 speed?
CREATE TABLE table_11497980_1 (model VARCHAR, transmission_make_type_speed VARCHAR)
{ "SQL_Query": "SELECT model FROM table_11497980_1 WHERE transmission_make_type_speed = \"Eaton FS-6306 A Manual Synchromesh 6 Speed\"" }
Is drawing tablet support part of the semi-DDM class?
CREATE TABLE table_1153898_1 (semi_ddm_class VARCHAR, comparisons VARCHAR)
{ "SQL_Query": "SELECT semi_ddm_class FROM table_1153898_1 WHERE comparisons = \"Drawing Tablet Support\"" }
Is usb re-enumeration required part of the emulated class?
CREATE TABLE table_1153898_1 (emulated_class VARCHAR, comparisons VARCHAR)
{ "SQL_Query": "SELECT emulated_class FROM table_1153898_1 WHERE comparisons = \"USB RE-Enumeration Required\"" }
Is wireless combo keyboard and mouse support part of the hub base class?
CREATE TABLE table_1153898_1 (hub_base_class VARCHAR, comparisons VARCHAR)
{ "SQL_Query": "SELECT hub_base_class FROM table_1153898_1 WHERE comparisons = \"Wireless Combo keyboard and mouse support\"" }
Is the drawing tablet support part of the DDM class?
CREATE TABLE table_1153898_1 (ddm_class VARCHAR, comparisons VARCHAR)
{ "SQL_Query": "SELECT ddm_class FROM table_1153898_1 WHERE comparisons = \"Drawing Tablet Support\"" }
Is wireless combo keyboard and mouse support part of the DDM class?
CREATE TABLE table_1153898_1 (ddm_class VARCHAR, comparisons VARCHAR)
{ "SQL_Query": "SELECT ddm_class FROM table_1153898_1 WHERE comparisons = \"Wireless Combo keyboard and mouse support\"" }
What school or team does Al Jefferson play for?
CREATE TABLE table_11545282_10 (school_club_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school_club_team FROM table_11545282_10 WHERE player = \"Al Jefferson\"" }
Which forward player has the number 22?
CREATE TABLE table_11545282_10 (player VARCHAR, no VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11545282_10 WHERE no = \"22\" AND position = \"Forward\"" }
What number does the player from Ohio play with?
CREATE TABLE table_11545282_10 (no VARCHAR, school_club_team VARCHAR)
{ "SQL_Query": "SELECT no FROM table_11545282_10 WHERE school_club_team = \"Ohio\"" }
During which years did player number 35 play for Jazz?
CREATE TABLE table_11545282_10 (years_for_jazz VARCHAR, no VARCHAR)
{ "SQL_Query": "SELECT years_for_jazz FROM table_11545282_10 WHERE no = \"35\"" }
For driver Mark Skaife what is the result for race 1?
CREATE TABLE table_11581984_2 (race_1 VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT race_1 FROM table_11581984_2 WHERE driver = \"Mark Skaife\"" }
When was the game in Mexico played?
CREATE TABLE table_11602885_1 (date VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11602885_1 WHERE location = \"Mexico\"" }
What University has the acrronym of USF
CREATE TABLE table_1160660_1 (university_name VARCHAR, acronym VARCHAR)
{ "SQL_Query": "SELECT university_name FROM table_1160660_1 WHERE acronym = \"USF\"" }
What is the acronym used for Beirut Arab University?
CREATE TABLE table_1160660_1 (acronym VARCHAR, university_name VARCHAR)
{ "SQL_Query": "SELECT acronym FROM table_1160660_1 WHERE university_name = \"Beirut Arab University\"" }
What is the acronym for the school whose website is ul.edu.lb
CREATE TABLE table_1160660_1 (acronym VARCHAR, website VARCHAR)
{ "SQL_Query": "SELECT acronym FROM table_1160660_1 WHERE website = \"ul.edu.lb\"" }
Are there registration notes on usek.edu.lb?
CREATE TABLE table_1160660_1 (official_registration_notes VARCHAR, website VARCHAR)
{ "SQL_Query": "SELECT official_registration_notes FROM table_1160660_1 WHERE website = \"usek.edu.lb\"" }
What year was USF founded?
CREATE TABLE table_1160660_1 (date_founded VARCHAR, acronym VARCHAR)
{ "SQL_Query": "SELECT date_founded FROM table_1160660_1 WHERE acronym = \"USF\"" }
What is the tournament on Jul 11?
CREATE TABLE table_11621747_1 (tournament VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_11621747_1 WHERE date = \"Jul 11\"" }
What is the tournament of aug 29?
CREATE TABLE table_11621747_1 (tournament VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_11621747_1 WHERE date = \"Aug 29\"" }
How many prizes were there at the transamerica?
CREATE TABLE table_11621747_1 (tournament VARCHAR)
{ "SQL_Query": "SELECT COUNT(1 AS st_prize__) AS $__ FROM table_11621747_1 WHERE tournament = \"The Transamerica\"" }
What is the sum of the largest purse?
CREATE TABLE table_11622392_1 (purse__ INTEGER)
{ "SQL_Query": "SELECT MAX(purse__) AS $__ FROM table_11622392_1" }
When was the tournament in Washington held?
CREATE TABLE table_11622392_1 (date VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT date FROM table_11622392_1 WHERE location = \"Washington\"" }
How many tournaments in Texas had a purse higher than 330105.1624276874?
CREATE TABLE table_11622392_1 (location VARCHAR, purse__$__ VARCHAR)
{ "SQL_Query": "SELECT COUNT(1 AS st_prize__) AS $__ FROM table_11622392_1 WHERE location = \"Texas\" AND purse__$__ > 330105.1624276874" }
What is the first season written by joseph hampton & dani renee?
CREATE TABLE table_11630008_4 (season_no INTEGER, written_by VARCHAR)
{ "SQL_Query": "SELECT MIN(season_no) FROM table_11630008_4 WHERE written_by = \"Joseph Hampton & Dani Renee\"" }
How many air dates are there for production code 206?
CREATE TABLE table_11630008_4 (original_air_date VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT COUNT(original_air_date) FROM table_11630008_4 WHERE production_code = 206" }
What is the title for season 2?
CREATE TABLE table_11630008_4 (title VARCHAR, season_no VARCHAR)
{ "SQL_Query": "SELECT title FROM table_11630008_4 WHERE season_no = 2" }
How many seasons was series number 47 shown?
CREATE TABLE table_11630008_4 (season_no VARCHAR, series_no VARCHAR)
{ "SQL_Query": "SELECT COUNT(season_no) FROM table_11630008_4 WHERE series_no = 47" }
When did the episode with production code 410 air?
CREATE TABLE table_11630008_6 (original_air_date VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_11630008_6 WHERE production_code = 410" }
What is the most series number with season 3?
CREATE TABLE table_11630008_6 (series__number INTEGER, season__number VARCHAR)
{ "SQL_Query": "SELECT MAX(series__number) FROM table_11630008_6 WHERE season__number = 3" }
What is the purse value for the New York location?
CREATE TABLE table_11622896_1 (purse__$__ VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT purse__$__ FROM table_11622896_1 WHERE location = \"New York\"" }
What is the largest 1st prize( $ ) at the South Carolina location?
CREATE TABLE table_11622896_1 (location VARCHAR)
{ "SQL_Query": "SELECT MAX(1 AS st_prize__) AS $__ FROM table_11622896_1 WHERE location = \"South Carolina\"" }
What is the score for the Oregon location?
CREATE TABLE table_11622896_1 (score VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11622896_1 WHERE location = \"Oregon\"" }
List all areas within 1000 km in the city of Lubelskie?
CREATE TABLE table_11654169_1 (area_in_1000km²__1930_ VARCHAR, voivodeship_separate_city VARCHAR)
{ "SQL_Query": "SELECT area_in_1000km²__1930_ FROM table_11654169_1 WHERE voivodeship_separate_city = \"lubelskie\"" }
What is the population in the city of Pomorskie?
CREATE TABLE table_11654169_1 (population_in_1000__1931_ VARCHAR, voivodeship_separate_city VARCHAR)
{ "SQL_Query": "SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE voivodeship_separate_city = \"pomorskie\"" }
List all car plates in the capital of Wilno since the year of 1937.
CREATE TABLE table_11654169_1 (car_plates__since_1937_ VARCHAR, capital VARCHAR)
{ "SQL_Query": "SELECT car_plates__since_1937_ FROM table_11654169_1 WHERE capital = \"Wilno\"" }
List population when their car plates are 30-34.
CREATE TABLE table_11654169_1 (population_in_1000__1931_ VARCHAR, car_plates__since_1937_ VARCHAR)
{ "SQL_Query": "SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE car_plates__since_1937_ = \"30-34\"" }
How many points are there when the lost is 26?
CREATE TABLE table_1166259_1 (points VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT points FROM table_1166259_1 WHERE lost = 26" }
WHAT TEAM CLASSIFIED IN THE STAGE WHERE BRADLEY WIGGINS WON THE POINTS CLASSIFICATION ?
CREATE TABLE table_11667521_17 (team_classification VARCHAR, points_classification VARCHAR)
{ "SQL_Query": "SELECT team_classification FROM table_11667521_17 WHERE points_classification = \"Bradley Wiggins\"" }
IN WHAT STAGE DID ALEXANDER VINOKOUROV WON THE GENERAL CLASSIFICATION?
CREATE TABLE table_11667521_17 (stage__winner_ VARCHAR, general_classification VARCHAR)
{ "SQL_Query": "SELECT stage__winner_ FROM table_11667521_17 WHERE general_classification = \"Alexander Vinokourov\"" }
Name the average for spain delegate
CREATE TABLE table_11674683_2 (average VARCHAR, delegate VARCHAR)
{ "SQL_Query": "SELECT average FROM table_11674683_2 WHERE delegate = \"Spain\"" }
Name the interview for peru delegate
CREATE TABLE table_11674683_2 (interview VARCHAR, delegate VARCHAR)
{ "SQL_Query": "SELECT interview FROM table_11674683_2 WHERE delegate = \"Peru\"" }
Name the number of swimsuit for israel
CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR)
{ "SQL_Query": "SELECT COUNT(swimsuit) FROM table_11674683_2 WHERE delegate = \"Israel\"" }
What are the swimsuits for south africa?
CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR)
{ "SQL_Query": "SELECT swimsuit FROM table_11674683_2 WHERE delegate = \"South Africa\"" }
Who were the MLB draft with the hometown Opa-locka, Fl?
CREATE TABLE table_11677100_12 (mlb_draft VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT mlb_draft FROM table_11677100_12 WHERE hometown = \"Opa-locka, FL\"" }
How many players have the hometown Pennsauken, NJ?
CREATE TABLE table_11677100_12 (player VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT COUNT(player) FROM table_11677100_12 WHERE hometown = \"Pennsauken, NJ\"" }
Which position did the player from the hometown of Dallas, TX play?
CREATE TABLE table_11677100_12 (position VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11677100_12 WHERE hometown = \"Dallas, TX\"" }
What is the hometown of player Jason Place?
CREATE TABLE table_11677100_12 (hometown VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677100_12 WHERE player = \"Jason Place\"" }
What school did the catcher attend?
CREATE TABLE table_11677100_12 (school VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677100_12 WHERE position = \"Catcher\"" }
What is Jay Bruce's hometown?
CREATE TABLE table_11677100_11 (hometown VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677100_11 WHERE player = \"Jay Bruce\"" }
What school is he the catcher for?
CREATE TABLE table_11677100_11 (school VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT school FROM table_11677100_11 WHERE position = \"Catcher\"" }
WHAT HOMETOWN DOES HE PLAY AS THE CATCHER FOR?
CREATE TABLE table_11677100_11 (hometown VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677100_11 WHERE position = \"Catcher\"" }
WHAT POSITION DOES HE PLAY FOR AT WEST BROOK SENIOR HIGH SCHOOL?
CREATE TABLE table_11677100_11 (position VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11677100_11 WHERE school = \"West Brook Senior High school\"" }
WHAT TOWN IS WEST BROOK SENIOR HIGH SCHOOL FROM?
CREATE TABLE table_11677100_11 (hometown VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_11677100_11 WHERE school = \"West Brook Senior High school\"" }
What position did the player from Jersey City, New Jersey play?
CREATE TABLE table_11677691_1 (position VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11677691_1 WHERE hometown = \"Jersey City, New Jersey\"" }