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