answer stringlengths 18 557 | index int64 1 78.6k | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|---|
SELECT winning_driver FROM table_1137702_3 WHERE round = 6 | 4,701 | Who was the winning driver in round 6? | CREATE TABLE table_1137702_3 (winning_driver VARCHAR, round VARCHAR) |
SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = "Pacific grand_prix" | 4,702 | Who was the winning driver in the grand prix at Pacific Grand Prix? | CREATE TABLE table_1137702_3 (winning_driver VARCHAR, grand_prix VARCHAR) |
SELECT winning_driver FROM table_1137702_3 WHERE grand_prix = "Belgian grand_prix" | 4,703 | 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) |
SELECT winning_driver FROM table_1137702_3 WHERE pole_position = "Ayrton Senna" AND fastest_lap = "Michael Schumacher" | 4,704 | 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) |
SELECT date FROM table_1137703_2 WHERE winning_driver = "Alain Prost" AND pole_position = "Damon Hill" | 4,705 | 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) |
SELECT round FROM table_1137703_2 WHERE grand_prix = "Spanish grand_prix" | 4,706 | Which round was the Spanish Grand Prix? | CREATE TABLE table_1137703_2 (round VARCHAR, grand_prix VARCHAR) |
SELECT record FROM table_11391448_2 WHERE week = 7 | 4,707 | What was the record at week 7 | CREATE TABLE table_11391448_2 (record VARCHAR, week VARCHAR) |
SELECT COUNT(opponent) FROM table_11391448_2 WHERE week = 6 | 4,708 | How many teams did they play week 6 | CREATE TABLE table_11391448_2 (opponent VARCHAR, week VARCHAR) |
SELECT COUNT(report) FROM table_1140078_2 WHERE race = "Italian Grand Prix" | 4,709 | What is the number of reports for the italian grand prix? | CREATE TABLE table_1140078_2 (report VARCHAR, race VARCHAR) |
SELECT pole_position FROM table_1140078_2 WHERE race = "Belgian Grand Prix" | 4,710 | What is the pole position of the belgian grand prix? | CREATE TABLE table_1140078_2 (pole_position VARCHAR, race VARCHAR) |
SELECT pole_position FROM table_1140078_2 WHERE location = "Paul Ricard" | 4,711 | What is the pole position of paul ricard? | CREATE TABLE table_1140078_2 (pole_position VARCHAR, location VARCHAR) |
SELECT report FROM table_1140078_2 WHERE race = "United States Grand Prix West" | 4,712 | What is the report of the united states grand prix west? | CREATE TABLE table_1140078_2 (report VARCHAR, race VARCHAR) |
SELECT location FROM table_1140082_2 WHERE race = "German Grand Prix" | 4,713 | Where is the German Grand Prix? | CREATE TABLE table_1140082_2 (location VARCHAR, race VARCHAR) |
SELECT constructor FROM table_1140082_2 WHERE race = "Swedish Grand Prix" | 4,714 | What is the constructor of the Swedish Grand Prix? | CREATE TABLE table_1140082_2 (constructor VARCHAR, race VARCHAR) |
SELECT fastest_lap FROM table_1140082_2 WHERE location = "Watkins Glen" | 4,715 | Who did the fastest lap at Watkins glen? | CREATE TABLE table_1140082_2 (fastest_lap VARCHAR, location VARCHAR) |
SELECT circuit FROM table_1140099_6 WHERE race_name = "II Cape South Easter Trophy" | 4,716 | What circuit has a race called ii cape south easter trophy. | CREATE TABLE table_1140099_6 (circuit VARCHAR, race_name VARCHAR) |
SELECT winning_driver FROM table_1140099_6 WHERE race_name = "I Race of Champions" | 4,717 | Which driver won the i race of champions? | CREATE TABLE table_1140099_6 (winning_driver VARCHAR, race_name VARCHAR) |
SELECT report FROM table_1140099_6 WHERE winning_driver = "Mike Spence" | 4,718 | What is the report for the race that Mike Spence won. | CREATE TABLE table_1140099_6 (report VARCHAR, winning_driver VARCHAR) |
SELECT report FROM table_1140099_6 WHERE race_name = "I Sunday Mirror Trophy" | 4,719 | What is the report for the race i sunday mirror trophy? | CREATE TABLE table_1140099_6 (report VARCHAR, race_name VARCHAR) |
SELECT COUNT(winning_driver) FROM table_1140116_6 WHERE race_name = "I Dessau Autobahnspinne" | 4,720 | How many winners did I Dessau Autobahnspinne have? | CREATE TABLE table_1140116_6 (winning_driver VARCHAR, race_name VARCHAR) |
SELECT date FROM table_1140116_6 WHERE circuit = "Halle-Saale-Schleife" | 4,721 | What is the date on which a race was run at Halle-Saale-Schleife circuit? | CREATE TABLE table_1140116_6 (date VARCHAR, circuit VARCHAR) |
SELECT COUNT(race_name) FROM table_1140116_6 WHERE circuit = "Dessau" | 4,722 | How many races take place in Dessau circuit? | CREATE TABLE table_1140116_6 (race_name VARCHAR, circuit VARCHAR) |
SELECT race_name FROM table_1140116_6 WHERE winning_driver = "Paul Greifzu" | 4,723 | Which races did Paul Greifzu win? | CREATE TABLE table_1140116_6 (race_name VARCHAR, winning_driver VARCHAR) |
SELECT winning_driver FROM table_1140114_5 WHERE circuit = "Sachsenring" | 4,724 | Which driver won at the Sachsenring circuit? | CREATE TABLE table_1140114_5 (winning_driver VARCHAR, circuit VARCHAR) |
SELECT constructor FROM table_1140114_5 WHERE race_name = "RedeX Trophy" | 4,725 | Which constructor was present at the Redex Trophy race? | CREATE TABLE table_1140114_5 (constructor VARCHAR, race_name VARCHAR) |
SELECT COUNT(constructor) FROM table_1140114_5 WHERE winning_driver = "Paul Thiel" | 4,726 | How many different constructors had Paul Thiel as a winning driver? | CREATE TABLE table_1140114_5 (constructor VARCHAR, winning_driver VARCHAR) |
SELECT opponent FROM table_11406866_2 WHERE tv = "ABC" AND game_site = "Tampa Stadium" | 4,727 | 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) |
SELECT COUNT(opponent) FROM table_11406866_2 WHERE date = "November 23, 1980" | 4,728 | what is the total number of opponent where date is november 23, 1980 | CREATE TABLE table_11406866_2 (opponent VARCHAR, date VARCHAR) |
SELECT COUNT(kickoff_)[a_] FROM table_11406866_2 WHERE "week" = "week" | 4,729 | what is the total number of kickoff [a ] where week is week | CREATE TABLE table_11406866_2 (a_ VARCHAR, kickoff_ VARCHAR) |
SELECT week FROM table_11406866_2 WHERE attendance = "77,098" | 4,730 | what's the week where attendance is 77,098 | CREATE TABLE table_11406866_2 (week VARCHAR, attendance VARCHAR) |
SELECT record FROM table_11406866_2 WHERE attendance = "61,350" | 4,731 | what's the record where attendance is 61,350 | CREATE TABLE table_11406866_2 (record VARCHAR, attendance VARCHAR) |
SELECT record FROM table_11406866_2 WHERE result = "L 24-10" | 4,732 | what's the record where result is l 24-10 | CREATE TABLE table_11406866_2 (record VARCHAR, result VARCHAR) |
SELECT date FROM table_1140119_5 WHERE circuit = "Silverstone" | 4,733 | What date was the Silverstone circuit driven? | CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR) |
SELECT date FROM table_1140119_5 WHERE circuit = "Albi" | 4,734 | When was the Albi circuit race driven? | CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR) |
SELECT constructor FROM table_1140119_5 WHERE race_name = "IV J.C.C. Jersey Road Race" | 4,735 | Would built the winning car in the IV J.C.C. Jersey Road Race? | CREATE TABLE table_1140119_5 (constructor VARCHAR, race_name VARCHAR) |
SELECT winning_driver FROM table_1140119_5 WHERE circuit = "Jersey" | 4,736 | Who won the race at the Jersey circuit? | CREATE TABLE table_1140119_5 (winning_driver VARCHAR, circuit VARCHAR) |
SELECT season AS premiere FROM table_1145977_2 WHERE viewers__in_millions_ = "14.71" | 4,737 | When did the season air where the viewership was 14.71 million? | CREATE TABLE table_1145977_2 (season VARCHAR, viewers__in_millions_ VARCHAR) |
SELECT power_capacity__gw_ FROM table_11456251_5 WHERE number_of_generators = 781 | 4,738 | What is the power capacity when the generators were 781? | CREATE TABLE table_11456251_5 (power_capacity__gw_ VARCHAR, number_of_generators VARCHAR) |
SELECT _percentage_of_total_capacity FROM table_11456251_5 WHERE annual_energy__billion_kwh_ = "120.2" | 4,739 | 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) |
SELECT _percentage_of_annual_production FROM table_11456251_5 WHERE power_source = "Solar" | 4,740 | What is the % of annual production of solar? | CREATE TABLE table_11456251_5 (_percentage_of_annual_production VARCHAR, power_source VARCHAR) |
SELECT COUNT(number_of_generators) FROM table_11456251_5 WHERE power_capacity__gw_ = "78.7" | 4,741 | 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) |
SELECT _percentage_of_total_capacity FROM table_11456251_5 WHERE number_of_generators = 4048 | 4,742 | 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) |
SELECT gvm__kg__technical_capacity FROM table_11497980_1 WHERE model = "15.180E" | 4,743 | 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) |
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)" | 4,744 | 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) |
SELECT COUNT(power_kw) AS @rpm FROM table_11497980_1 WHERE model = "13.180" | 4,745 | What is the power kw@RPM of the 13.180 model? | CREATE TABLE table_11497980_1 (power_kw VARCHAR, model VARCHAR) |
SELECT gcm__kg__technical_capacity FROM table_11497980_1 WHERE transmission_make_type_speed = "Eaton FS 5306-A Manual Synchromesh 6 Speed" | 4,746 | 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) |
SELECT model FROM table_11497980_1 WHERE transmission_make_type_speed = "Eaton FS-6306 A Manual Synchromesh 6 Speed" | 4,747 | 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) |
SELECT semi_ddm_class FROM table_1153898_1 WHERE comparisons = "Drawing Tablet Support" | 4,748 | Is drawing tablet support part of the semi-DDM class? | CREATE TABLE table_1153898_1 (semi_ddm_class VARCHAR, comparisons VARCHAR) |
SELECT emulated_class FROM table_1153898_1 WHERE comparisons = "USB RE-Enumeration Required" | 4,749 | Is usb re-enumeration required part of the emulated class? | CREATE TABLE table_1153898_1 (emulated_class VARCHAR, comparisons VARCHAR) |
SELECT hub_base_class FROM table_1153898_1 WHERE comparisons = "Wireless Combo keyboard and mouse support" | 4,750 | Is wireless combo keyboard and mouse support part of the hub base class? | CREATE TABLE table_1153898_1 (hub_base_class VARCHAR, comparisons VARCHAR) |
SELECT ddm_class FROM table_1153898_1 WHERE comparisons = "Drawing Tablet Support" | 4,751 | Is the drawing tablet support part of the DDM class? | CREATE TABLE table_1153898_1 (ddm_class VARCHAR, comparisons VARCHAR) |
SELECT ddm_class FROM table_1153898_1 WHERE comparisons = "Wireless Combo keyboard and mouse support" | 4,752 | Is wireless combo keyboard and mouse support part of the DDM class? | CREATE TABLE table_1153898_1 (ddm_class VARCHAR, comparisons VARCHAR) |
SELECT school_club_team FROM table_11545282_10 WHERE player = "Al Jefferson" | 4,753 | What school or team does Al Jefferson play for? | CREATE TABLE table_11545282_10 (school_club_team VARCHAR, player VARCHAR) |
SELECT player FROM table_11545282_10 WHERE no = "22" AND position = "Forward" | 4,754 | Which forward player has the number 22? | CREATE TABLE table_11545282_10 (player VARCHAR, no VARCHAR, position VARCHAR) |
SELECT no FROM table_11545282_10 WHERE school_club_team = "Ohio" | 4,755 | What number does the player from Ohio play with? | CREATE TABLE table_11545282_10 (no VARCHAR, school_club_team VARCHAR) |
SELECT years_for_jazz FROM table_11545282_10 WHERE no = "35" | 4,756 | During which years did player number 35 play for Jazz? | CREATE TABLE table_11545282_10 (years_for_jazz VARCHAR, no VARCHAR) |
SELECT race_1 FROM table_11581984_2 WHERE driver = "Mark Skaife" | 4,757 | For driver Mark Skaife what is the result for race 1? | CREATE TABLE table_11581984_2 (race_1 VARCHAR, driver VARCHAR) |
SELECT date FROM table_11602885_1 WHERE location = "Mexico" | 4,758 | When was the game in Mexico played? | CREATE TABLE table_11602885_1 (date VARCHAR, location VARCHAR) |
SELECT university_name FROM table_1160660_1 WHERE acronym = "USF" | 4,759 | What University has the acrronym of USF | CREATE TABLE table_1160660_1 (university_name VARCHAR, acronym VARCHAR) |
SELECT acronym FROM table_1160660_1 WHERE university_name = "Beirut Arab University" | 4,760 | What is the acronym used for Beirut Arab University? | CREATE TABLE table_1160660_1 (acronym VARCHAR, university_name VARCHAR) |
SELECT acronym FROM table_1160660_1 WHERE website = "ul.edu.lb" | 4,761 | What is the acronym for the school whose website is ul.edu.lb | CREATE TABLE table_1160660_1 (acronym VARCHAR, website VARCHAR) |
SELECT official_registration_notes FROM table_1160660_1 WHERE website = "usek.edu.lb" | 4,762 | Are there registration notes on usek.edu.lb? | CREATE TABLE table_1160660_1 (official_registration_notes VARCHAR, website VARCHAR) |
SELECT date_founded FROM table_1160660_1 WHERE acronym = "USF" | 4,763 | What year was USF founded? | CREATE TABLE table_1160660_1 (date_founded VARCHAR, acronym VARCHAR) |
SELECT tournament FROM table_11621747_1 WHERE date = "Jul 11" | 4,764 | What is the tournament on Jul 11? | CREATE TABLE table_11621747_1 (tournament VARCHAR, date VARCHAR) |
SELECT tournament FROM table_11621747_1 WHERE date = "Aug 29" | 4,765 | What is the tournament of aug 29? | CREATE TABLE table_11621747_1 (tournament VARCHAR, date VARCHAR) |
SELECT COUNT(1 AS st_prize__) AS $__ FROM table_11621747_1 WHERE tournament = "The Transamerica" | 4,766 | How many prizes were there at the transamerica? | CREATE TABLE table_11621747_1 (tournament VARCHAR) |
SELECT MAX(purse__) AS $__ FROM table_11622392_1 | 4,767 | What is the sum of the largest purse? | CREATE TABLE table_11622392_1 (purse__ INTEGER) |
SELECT date FROM table_11622392_1 WHERE location = "Washington" | 4,768 | When was the tournament in Washington held? | CREATE TABLE table_11622392_1 (date VARCHAR, location VARCHAR) |
SELECT COUNT(1 AS st_prize__) AS $__ FROM table_11622392_1 WHERE location = "Texas" AND purse__$__ > 330105.1624276874 | 4,769 | How many tournaments in Texas had a purse higher than 330105.1624276874? | CREATE TABLE table_11622392_1 (location VARCHAR, purse__$__ VARCHAR) |
SELECT MIN(season_no) FROM table_11630008_4 WHERE written_by = "Joseph Hampton & Dani Renee" | 4,770 | What is the first season written by joseph hampton & dani renee? | CREATE TABLE table_11630008_4 (season_no INTEGER, written_by VARCHAR) |
SELECT COUNT(original_air_date) FROM table_11630008_4 WHERE production_code = 206 | 4,771 | How many air dates are there for production code 206? | CREATE TABLE table_11630008_4 (original_air_date VARCHAR, production_code VARCHAR) |
SELECT title FROM table_11630008_4 WHERE season_no = 2 | 4,772 | What is the title for season 2? | CREATE TABLE table_11630008_4 (title VARCHAR, season_no VARCHAR) |
SELECT COUNT(season_no) FROM table_11630008_4 WHERE series_no = 47 | 4,773 | How many seasons was series number 47 shown? | CREATE TABLE table_11630008_4 (season_no VARCHAR, series_no VARCHAR) |
SELECT original_air_date FROM table_11630008_6 WHERE production_code = 410 | 4,774 | When did the episode with production code 410 air? | CREATE TABLE table_11630008_6 (original_air_date VARCHAR, production_code VARCHAR) |
SELECT MAX(series__number) FROM table_11630008_6 WHERE season__number = 3 | 4,775 | What is the most series number with season 3? | CREATE TABLE table_11630008_6 (series__number INTEGER, season__number VARCHAR) |
SELECT purse__$__ FROM table_11622896_1 WHERE location = "New York" | 4,776 | What is the purse value for the New York location? | CREATE TABLE table_11622896_1 (purse__$__ VARCHAR, location VARCHAR) |
SELECT MAX(1 AS st_prize__) AS $__ FROM table_11622896_1 WHERE location = "South Carolina" | 4,777 | What is the largest 1st prize( $ ) at the South Carolina location? | CREATE TABLE table_11622896_1 (location VARCHAR) |
SELECT score FROM table_11622896_1 WHERE location = "Oregon" | 4,778 | What is the score for the Oregon location? | CREATE TABLE table_11622896_1 (score VARCHAR, location VARCHAR) |
SELECT area_in_1000km²__1930_ FROM table_11654169_1 WHERE voivodeship_separate_city = "lubelskie" | 4,779 | 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) |
SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE voivodeship_separate_city = "pomorskie" | 4,780 | What is the population in the city of Pomorskie? | CREATE TABLE table_11654169_1 (population_in_1000__1931_ VARCHAR, voivodeship_separate_city VARCHAR) |
SELECT car_plates__since_1937_ FROM table_11654169_1 WHERE capital = "Wilno" | 4,781 | 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) |
SELECT population_in_1000__1931_ FROM table_11654169_1 WHERE car_plates__since_1937_ = "30-34" | 4,782 | List population when their car plates are 30-34. | CREATE TABLE table_11654169_1 (population_in_1000__1931_ VARCHAR, car_plates__since_1937_ VARCHAR) |
SELECT points FROM table_1166259_1 WHERE lost = 26 | 4,783 | How many points are there when the lost is 26? | CREATE TABLE table_1166259_1 (points VARCHAR, lost VARCHAR) |
SELECT team_classification FROM table_11667521_17 WHERE points_classification = "Bradley Wiggins" | 4,784 | WHAT TEAM CLASSIFIED IN THE STAGE WHERE BRADLEY WIGGINS WON THE POINTS CLASSIFICATION ? | CREATE TABLE table_11667521_17 (team_classification VARCHAR, points_classification VARCHAR) |
SELECT stage__winner_ FROM table_11667521_17 WHERE general_classification = "Alexander Vinokourov" | 4,785 | IN WHAT STAGE DID ALEXANDER VINOKOUROV WON THE GENERAL CLASSIFICATION? | CREATE TABLE table_11667521_17 (stage__winner_ VARCHAR, general_classification VARCHAR) |
SELECT average FROM table_11674683_2 WHERE delegate = "Spain" | 4,786 | Name the average for spain delegate | CREATE TABLE table_11674683_2 (average VARCHAR, delegate VARCHAR) |
SELECT interview FROM table_11674683_2 WHERE delegate = "Peru" | 4,787 | Name the interview for peru delegate | CREATE TABLE table_11674683_2 (interview VARCHAR, delegate VARCHAR) |
SELECT COUNT(swimsuit) FROM table_11674683_2 WHERE delegate = "Israel" | 4,788 | Name the number of swimsuit for israel | CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR) |
SELECT swimsuit FROM table_11674683_2 WHERE delegate = "South Africa" | 4,789 | What are the swimsuits for south africa? | CREATE TABLE table_11674683_2 (swimsuit VARCHAR, delegate VARCHAR) |
SELECT mlb_draft FROM table_11677100_12 WHERE hometown = "Opa-locka, FL" | 4,790 | Who were the MLB draft with the hometown Opa-locka, Fl? | CREATE TABLE table_11677100_12 (mlb_draft VARCHAR, hometown VARCHAR) |
SELECT COUNT(player) FROM table_11677100_12 WHERE hometown = "Pennsauken, NJ" | 4,791 | How many players have the hometown Pennsauken, NJ? | CREATE TABLE table_11677100_12 (player VARCHAR, hometown VARCHAR) |
SELECT position FROM table_11677100_12 WHERE hometown = "Dallas, TX" | 4,792 | Which position did the player from the hometown of Dallas, TX play? | CREATE TABLE table_11677100_12 (position VARCHAR, hometown VARCHAR) |
SELECT hometown FROM table_11677100_12 WHERE player = "Jason Place" | 4,793 | What is the hometown of player Jason Place? | CREATE TABLE table_11677100_12 (hometown VARCHAR, player VARCHAR) |
SELECT school FROM table_11677100_12 WHERE position = "Catcher" | 4,794 | What school did the catcher attend? | CREATE TABLE table_11677100_12 (school VARCHAR, position VARCHAR) |
SELECT hometown FROM table_11677100_11 WHERE player = "Jay Bruce" | 4,795 | What is Jay Bruce's hometown? | CREATE TABLE table_11677100_11 (hometown VARCHAR, player VARCHAR) |
SELECT school FROM table_11677100_11 WHERE position = "Catcher" | 4,796 | What school is he the catcher for? | CREATE TABLE table_11677100_11 (school VARCHAR, position VARCHAR) |
SELECT hometown FROM table_11677100_11 WHERE position = "Catcher" | 4,797 | WHAT HOMETOWN DOES HE PLAY AS THE CATCHER FOR? | CREATE TABLE table_11677100_11 (hometown VARCHAR, position VARCHAR) |
SELECT position FROM table_11677100_11 WHERE school = "West Brook Senior High school" | 4,798 | WHAT POSITION DOES HE PLAY FOR AT WEST BROOK SENIOR HIGH SCHOOL? | CREATE TABLE table_11677100_11 (position VARCHAR, school VARCHAR) |
SELECT hometown FROM table_11677100_11 WHERE school = "West Brook Senior High school" | 4,799 | WHAT TOWN IS WEST BROOK SENIOR HIGH SCHOOL FROM? | CREATE TABLE table_11677100_11 (hometown VARCHAR, school VARCHAR) |
SELECT position FROM table_11677691_1 WHERE hometown = "Jersey City, New Jersey" | 4,800 | What position did the player from Jersey City, New Jersey play? | 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.