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