text
stringlengths
114
1.06k
### question: Which podiums did the Williams team have with a margin of defeat of 2? ### answer: SELECT podiums FROM table_10753917_1 WHERE team = "Williams" AND margin_of_defeat = "2" ### context: CREATE TABLE table_10753917_1 (podiums VARCHAR, team VARCHAR, margin_of_defeat VARCHAR)
### question: How many drivers on the williams team had a margin of defeat of 2? ### answer: SELECT COUNT(driver) FROM table_10753917_1 WHERE team = "Williams" AND margin_of_defeat = "2" ### context: CREATE TABLE table_10753917_1 (driver VARCHAR, team VARCHAR, margin_of_defeat VARCHAR)
### question: How many seasons was clay regazzoni the driver? ### answer: SELECT COUNT(season) FROM table_10753917_1 WHERE driver = "Clay Regazzoni" ### context: CREATE TABLE table_10753917_1 (season VARCHAR, driver VARCHAR)
### question: Which margin of defeats had points of 30? ### answer: SELECT margin_of_defeat FROM table_10753917_1 WHERE points = "30" ### context: CREATE TABLE table_10753917_1 (margin_of_defeat VARCHAR, points VARCHAR)
### question: Which podiums did the alfa romeo team have? ### answer: SELECT podiums FROM table_10753917_1 WHERE team = "Alfa Romeo" ### context: CREATE TABLE table_10753917_1 (podiums VARCHAR, team VARCHAR)
### question: What was the percent of slovenes 1951 for bach? ### answer: SELECT percent_of_slovenes_1951 FROM table_10797636_1 WHERE village__german_ = "Bach" ### context: CREATE TABLE table_10797636_1 (percent_of_slovenes_1951 VARCHAR, village__german_ VARCHAR)
### question: What college's team is the Saskatchewan Roughriders? ### answer: SELECT college FROM table_10812403_4 WHERE cfl_team = "Saskatchewan Roughriders" ### context: CREATE TABLE table_10812403_4 (college VARCHAR, cfl_team VARCHAR)
### question: What position did Calvin Mccarty play? ### answer: SELECT position FROM table_10812403_4 WHERE player = "Calvin McCarty" ### context: CREATE TABLE table_10812403_4 (position VARCHAR, player VARCHAR)
### question: How many people were pick #30? ### answer: SELECT COUNT(position) FROM table_10812403_4 WHERE pick__number = 30 ### context: CREATE TABLE table_10812403_4 (position VARCHAR, pick__number VARCHAR)
### question: What college did Calvin McCarty play at? ### answer: SELECT college FROM table_10812403_4 WHERE player = "Calvin McCarty" ### context: CREATE TABLE table_10812403_4 (college VARCHAR, player VARCHAR)
### question: What college had a LB in the draft? ### answer: SELECT college FROM table_10812403_4 WHERE position = "LB" ### context: CREATE TABLE table_10812403_4 (college VARCHAR, position VARCHAR)
### question: Who got high assists for the game played on February 9? ### answer: SELECT high_assists FROM table_10812293_6 WHERE date = "February 9" ### context: CREATE TABLE table_10812293_6 (high_assists VARCHAR, date VARCHAR)
### question: Which lava domes erupted or had a growth episode during the Holocene period? ### answer: SELECT name_of_lava_dome FROM table_1081235_1 WHERE last_eruption_or_growth_episode = "Holocene" ### context: CREATE TABLE table_1081235_1 (name_of_lava_dome VARCHAR, last_eruption_or_growth_episode VARCHAR)
### question: What is the composition at Valles lava dome? ### answer: SELECT composition FROM table_1081235_1 WHERE name_of_lava_dome = "Valles lava dome" ### context: CREATE TABLE table_1081235_1 (composition VARCHAR, name_of_lava_dome VARCHAR)
### question: How many countries are the Tata Sabaya Lava domes located in? ### answer: SELECT COUNT(country) FROM table_1081235_1 WHERE name_of_lava_dome = "Tata Sabaya lava domes" ### context: CREATE TABLE table_1081235_1 (country VARCHAR, name_of_lava_dome VARCHAR)
### question: What countries have had eruptions of growth episodes in 1986? ### answer: SELECT country FROM table_1081235_1 WHERE last_eruption_or_growth_episode = "1986" ### context: CREATE TABLE table_1081235_1 (country VARCHAR, last_eruption_or_growth_episode VARCHAR)
### question: Who is the lyricist for the song with a length of 3:05? ### answer: SELECT lyricist FROM table_10848177_1 WHERE length = "3:05" ### context: CREATE TABLE table_10848177_1 (lyricist VARCHAR, length VARCHAR)
### question: What song has a length of 3:05? ### answer: SELECT song FROM table_10848177_1 WHERE length = "3:05" ### context: CREATE TABLE table_10848177_1 (song VARCHAR, length VARCHAR)
### question: Which lyricist has a song with a length of 6:14? ### answer: SELECT lyricist FROM table_10848177_1 WHERE length = "6:14" ### context: CREATE TABLE table_10848177_1 (lyricist VARCHAR, length VARCHAR)
### question: What is the highest track number? ### answer: SELECT MAX(track__number) FROM table_10848177_1 ### context: CREATE TABLE table_10848177_1 (track__number INTEGER)
### question: Which song has picturization by only vijay? ### answer: SELECT song FROM table_10848177_1 WHERE picturization = "Vijay" ### context: CREATE TABLE table_10848177_1 (song VARCHAR, picturization VARCHAR)
### question: For which singers was Alangudi Somu the lyricist? ### answer: SELECT singers FROM table_10848177_1 WHERE lyricist = "Alangudi Somu" ### context: CREATE TABLE table_10848177_1 (singers VARCHAR, lyricist VARCHAR)
### question: What publishers were involved with product number SCUS-97265? ### answer: SELECT publisher FROM table_10875694_11 WHERE product_no = "SCUS-97265" ### context: CREATE TABLE table_10875694_11 (publisher VARCHAR, product_no VARCHAR)
### question: What is the total number of James Bond 007: Everything or Nothing for each system? ### answer: SELECT COUNT(system) FROM table_10875694_11 WHERE title = "James Bond 007: Everything or Nothing" ### context: CREATE TABLE table_10875694_11 (system VARCHAR, title VARCHAR)
### question: How many products have the title "Jak 3"? ### answer: SELECT COUNT(product_no) FROM table_10875694_11 WHERE title = "Jak 3" ### context: CREATE TABLE table_10875694_11 (product_no VARCHAR, title VARCHAR)
### question: Which James Bond 007: Agent Under Fire from Electronic Arts is compatible with 60 gb pal/80 gb NTSC PS3 (CECHC/CECHE)? ### answer: SELECT compatible_with_60gb_pal_80gb_ntsc_ps3__cechc_ceche_ FROM table_10875694_11 WHERE publisher = "Electronic Arts" AND title = "James Bond 007: Agent Under Fire" ### context: CREATE TABLE table_10875694_11 (compatible_with_60gb_pal_80gb_ntsc_ps3__cechc_ceche_ VARCHAR, publisher VARCHAR, title VARCHAR)
### question: What publishers produce product number SLUS-20265? ### answer: SELECT publisher FROM table_10875694_11 WHERE product_no = "SLUS-20265" ### context: CREATE TABLE table_10875694_11 (publisher VARCHAR, product_no VARCHAR)
### question: How many titles have the product number SCUS-97330? ### answer: SELECT COUNT(title) FROM table_10875694_11 WHERE product_no = "SCUS-97330" ### context: CREATE TABLE table_10875694_11 (title VARCHAR, product_no VARCHAR)
### question: What is the status when livery is blue? ### answer: SELECT status FROM table_1090916_2 WHERE livery = "Blue" ### context: CREATE TABLE table_1090916_2 (status VARCHAR, livery VARCHAR)
### question: What is the location when the status is in service as coaching stock? ### answer: SELECT location FROM table_1090916_2 WHERE status = "In service as coaching stock" ### context: CREATE TABLE table_1090916_2 (location VARCHAR, status VARCHAR)
### question: What was the first season of the club who last won a title in 2012? ### answer: SELECT first_season FROM table_1096793_1 WHERE last_title = "2012" ### context: CREATE TABLE table_1096793_1 (first_season VARCHAR, last_title VARCHAR)
### question: What was the first season of the club that in 2012 was 2nd in Superettan? ### answer: SELECT first_season FROM table_1096793_1 WHERE position_in_2012 = "2nd in Superettan" ### context: CREATE TABLE table_1096793_1 (first_season VARCHAR, position_in_2012 VARCHAR)
### question: Who directed the second episode of "The Homecoming" which was written by Tommy Thompson? ### answer: SELECT directed_by FROM table_11075747_3 WHERE written_by = "Tommy Thompson" ### context: CREATE TABLE table_11075747_3 (directed_by VARCHAR, written_by VARCHAR)
### question: What percentage of The Bronx voters occured when Manhattan had 29.9% of voters? ### answer: SELECT the_bronx FROM table_1108394_34 WHERE manhattan = "29.9_percentage" ### context: CREATE TABLE table_1108394_34 (the_bronx VARCHAR, manhattan VARCHAR)
### question: What number of voters did the Bronx have when the total number was 2054? ### answer: SELECT the_bronx FROM table_1108394_34 WHERE total = 2054 ### context: CREATE TABLE table_1108394_34 (the_bronx VARCHAR, total VARCHAR)
### question: What number of voters did Queens have when Staten Island had 295 voters? ### answer: SELECT queens FROM table_1108394_34 WHERE richmond_[staten_is] = "295" ### context: CREATE TABLE table_1108394_34 (queens VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
### question: What was Staten Island when Brooklyn was 940? ### answer: SELECT staten_island FROM table_1108394_6 WHERE brooklyn = "940" ### context: CREATE TABLE table_1108394_6 (staten_island VARCHAR, brooklyn VARCHAR)
### question: What was the total number in Manhattan when Staten Island was 12,658? ### answer: SELECT COUNT(manhattan) FROM table_1108394_6 WHERE staten_island = "12,658" ### context: CREATE TABLE table_1108394_6 (manhattan VARCHAR, staten_island VARCHAR)
### question: What was the total in Brooklyn when Manhattan was 3,139? ### answer: SELECT brooklyn FROM table_1108394_6 WHERE manhattan = "3,139" ### context: CREATE TABLE table_1108394_6 (brooklyn VARCHAR, manhattan VARCHAR)
### question: Who was the republican candidate in 2013 when Staten Island was 451? ### answer: SELECT 2013 AS _republican_primary FROM table_1108394_6 WHERE staten_island = "451" ### context: CREATE TABLE table_1108394_6 (staten_island VARCHAR)
### question: What was the amount in Staten Island when The Bronx was 1,281? ### answer: SELECT staten_island FROM table_1108394_6 WHERE the_bronx = "1,281" ### context: CREATE TABLE table_1108394_6 (staten_island VARCHAR, the_bronx VARCHAR)
### question: The candidate who received 133 votes in the Bronx won what percentage overall? ### answer: SELECT _percentage FROM table_1108394_47 WHERE the_bronx = "133" ### context: CREATE TABLE table_1108394_47 (_percentage VARCHAR, the_bronx VARCHAR)
### question: Which candidate won 88 votes in Queens in 1921? ### answer: SELECT 1921 FROM table_1108394_47 WHERE queens = "88" ### context: CREATE TABLE table_1108394_47 (queens VARCHAR)
### question: How many votes in Brooklyn were won by the candidate who won 321 votes in Manhattan? ### answer: SELECT brooklyn FROM table_1108394_47 WHERE manhattan = "321" ### context: CREATE TABLE table_1108394_47 (brooklyn VARCHAR, manhattan VARCHAR)
### question: The man who received 87,676 votes in Queens won what percentage of the total for the election? ### answer: SELECT _percentage FROM table_1108394_47 WHERE queens = "87,676" ### context: CREATE TABLE table_1108394_47 (_percentage VARCHAR, queens VARCHAR)
### question: How many parties received 29.9% of the vote in Manhattan? ### answer: SELECT COUNT(party) FROM table_1108394_47 WHERE manhattan = "29.9_percentage" ### context: CREATE TABLE table_1108394_47 (party VARCHAR, manhattan VARCHAR)
### question: Name the most late 1943 with late 194 in slovenia ### answer: SELECT MAX(late_1943) FROM table_1115992_1 WHERE NOT _late_1941 = "Slovenia" ### context: CREATE TABLE table_1115992_1 (late_1943 INTEGER, _late_1941 VARCHAR)
### question: What is the least september 1943 when late 1943 is 78000 ### answer: SELECT MIN(sept_1943) FROM table_1115992_1 WHERE late_1943 = 78000 ### context: CREATE TABLE table_1115992_1 (sept_1943 INTEGER, late_1943 VARCHAR)
### question: What was Eric Dickerson's longest run? ### answer: SELECT COUNT(longest_run) FROM table_11157122_5 WHERE player = "Eric Dickerson" ### context: CREATE TABLE table_11157122_5 (longest_run VARCHAR, player VARCHAR)
### question: How many attempts did Charles White make? ### answer: SELECT MIN(attempts) FROM table_11157122_5 WHERE player = "Charles White" ### context: CREATE TABLE table_11157122_5 (attempts INTEGER, player VARCHAR)
### question: How many yards did the player with 87 attempts rush? ### answer: SELECT yards FROM table_11157122_5 WHERE attempts = 87 ### context: CREATE TABLE table_11157122_5 (yards VARCHAR, attempts VARCHAR)
### question: What was the highest amount of people that attended the elgin city team? ### answer: SELECT COUNT(highest) FROM table_11206916_1 WHERE team = "Elgin City" ### context: CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR)
### question: The firs park stadium had the lowest average attendence of what? ### answer: SELECT MIN(average) FROM table_11206916_1 WHERE stadium = "Firs Park" ### context: CREATE TABLE table_11206916_1 (average INTEGER, stadium VARCHAR)
### question: What was the lowest highest attendance for the dumbarton team? ### answer: SELECT MIN(highest) FROM table_11206916_1 WHERE team = "Dumbarton" ### context: CREATE TABLE table_11206916_1 (highest INTEGER, team VARCHAR)
### question: The gayfield park stadium had a highest attendance of what? ### answer: SELECT MAX(highest) FROM table_11206916_1 WHERE stadium = "Gayfield Park" ### context: CREATE TABLE table_11206916_1 (highest INTEGER, stadium VARCHAR)
### question: The stenhousemuir team had how many highest attendances? ### answer: SELECT COUNT(highest) FROM table_11206916_1 WHERE team = "Stenhousemuir" ### context: CREATE TABLE table_11206916_1 (highest VARCHAR, team VARCHAR)
### question: what's the premiere with hk viewers of 2.09 million ### answer: SELECT premiere FROM table_11174272_1 WHERE hk_viewers = "2.09 million" ### context: CREATE TABLE table_11174272_1 (premiere VARCHAR, hk_viewers VARCHAR)
### question: what is the minimum rank ### answer: SELECT MIN(rank) FROM table_11174272_1 ### context: CREATE TABLE table_11174272_1 (rank INTEGER)
### question: What is the minimum capacity of Dundee United's stadium? ### answer: SELECT MIN(capacity) FROM table_11208143_9 WHERE team = "Dundee United" ### context: CREATE TABLE table_11208143_9 (capacity INTEGER, team VARCHAR)
### question: Which stadiums have a capacity of 51082? ### answer: SELECT stadium FROM table_11208143_9 WHERE capacity = 51082 ### context: CREATE TABLE table_11208143_9 (stadium VARCHAR, capacity VARCHAR)
### question: How many stadiums are there with a capacity of 7500? ### answer: SELECT COUNT(stadium) FROM table_11208143_9 WHERE capacity = 7500 ### context: CREATE TABLE table_11208143_9 (stadium VARCHAR, capacity VARCHAR)
### question: What is Pittodrie Stadium's maximum capacity? ### answer: SELECT MAX(capacity) FROM table_11208143_9 WHERE stadium = "Pittodrie" ### context: CREATE TABLE table_11208143_9 (capacity INTEGER, stadium VARCHAR)
### question: Which stadiums have an average attendance of 13840? ### answer: SELECT stadium FROM table_11208143_9 WHERE average = 13840 ### context: CREATE TABLE table_11208143_9 (stadium VARCHAR, average VARCHAR)
### question: What are the highest recorded attendance rates of the stadiums with an average attendance of 4752? ### answer: SELECT highest FROM table_11208143_9 WHERE average = 4752 ### context: CREATE TABLE table_11208143_9 (highest VARCHAR, average VARCHAR)
### question: What is the highest number of ties? ### answer: SELECT MAX(ties) FROM table_11233358_2 ### context: CREATE TABLE table_11233358_2 (ties INTEGER)
### question: During the 2013 debut, what is the w-I(total) number? ### answer: SELECT COUNT(w_l__total_) FROM table_11233358_2 WHERE debut = 2013 ### context: CREATE TABLE table_11233358_2 (w_l__total_ VARCHAR, debut VARCHAR)
### question: What is the catalog number named callanetics: 10 years younger in 10 hours ### answer: SELECT catalog_number FROM table_11222744_3 WHERE title = "Callanetics: 10 years Younger In 10 Hours" ### context: CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)
### question: how many studios have the catalog number "cal03 / 0091037137333"? ### answer: SELECT COUNT(studio) FROM table_11222744_3 WHERE catalog_number = "CAL03 / 0091037137333" ### context: CREATE TABLE table_11222744_3 (studio VARCHAR, catalog_number VARCHAR)
### question: what is the format of "callanetics: 10 years younger in 10 hours"? ### answer: SELECT format FROM table_11222744_3 WHERE title = "Callanetics: 10 years Younger In 10 Hours" ### context: CREATE TABLE table_11222744_3 (format VARCHAR, title VARCHAR)
### question: What is the catalog number of the title called "super callanetics"? ### answer: SELECT catalog_number FROM table_11222744_3 WHERE title = "Super Callanetics" ### context: CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)
### question: how many titles have the name "quick callanetics"? ### answer: SELECT COUNT(catalog_number) FROM table_11222744_3 WHERE title = "Quick Callanetics" ### context: CREATE TABLE table_11222744_3 (catalog_number VARCHAR, title VARCHAR)
### question: Who creates the catalog with the number "cal03 / 0091037137333"? ### answer: SELECT studio FROM table_11222744_3 WHERE catalog_number = "CAL03 / 0091037137333" ### context: CREATE TABLE table_11222744_3 (studio VARCHAR, catalog_number VARCHAR)
### question: What was the rating for the episode with 1.83 viewers (millions)? ### answer: SELECT rating FROM table_11238597_4 WHERE viewers__millions_ = "1.83" ### context: CREATE TABLE table_11238597_4 (rating VARCHAR, viewers__millions_ VARCHAR)
### question: What was the share for the episode with the air date december 10, 2008? ### answer: SELECT share FROM table_11238597_4 WHERE air_date = "December 10, 2008" ### context: CREATE TABLE table_11238597_4 (share VARCHAR, air_date VARCHAR)
### question: Which premiere had languages in danish? ### answer: SELECT premiere FROM table_11323532_2 WHERE languages = "Danish" ### context: CREATE TABLE table_11323532_2 (premiere VARCHAR, languages VARCHAR)
### question: What was the number of channels in New Zealand? ### answer: SELECT COUNT(channel) FROM table_11323532_2 WHERE country_region = "New Zealand" ### context: CREATE TABLE table_11323532_2 (channel VARCHAR, country_region VARCHAR)
### question: What is the premiere where the host is lieke van lexmond dennis weening? ### answer: SELECT premiere FROM table_11323532_2 WHERE host = "Lieke van Lexmond Dennis Weening" ### context: CREATE TABLE table_11323532_2 (premiere VARCHAR, host VARCHAR)
### question: What is the premiere on the mega channel? ### answer: SELECT premiere FROM table_11323532_2 WHERE channel = "Mega channel" ### context: CREATE TABLE table_11323532_2 (premiere VARCHAR, channel VARCHAR)
### question: What is the symbol for Windpower in China? ### answer: SELECT wind_power__wp_ FROM table_11347578_1 WHERE country = "China" ### context: CREATE TABLE table_11347578_1 (wind_power__wp_ VARCHAR, country VARCHAR)
### question: who were the winners in west virginia ### answer: SELECT candidates_winning_candidate_in_bold FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = "West Virginia" ### context: CREATE TABLE table_1133844_4 (candidates_winning_candidate_in_bold VARCHAR, state__linked_to_summaries_below_ VARCHAR)
### question: tell the final for lindsey graham ### answer: SELECT result FROM table_1133844_4 WHERE senator = "Lindsey Graham" ### context: CREATE TABLE table_1133844_4 (result VARCHAR, senator VARCHAR)
### question: who won the senate seat in arkansas ### answer: SELECT senator FROM table_1133844_4 WHERE state__linked_to_summaries_below_ = "Arkansas" ### context: CREATE TABLE table_1133844_4 (senator VARCHAR, state__linked_to_summaries_below_ VARCHAR)
### question: What is the dysart of the principal? ### answer: SELECT dysart FROM table_11340432_1 WHERE information = "Principal" ### context: CREATE TABLE table_11340432_1 (dysart VARCHAR, information VARCHAR)
### question: What is williow canyon of Roberta Lockhart? ### answer: SELECT willow_canyon FROM table_11340432_1 WHERE dysart = "Roberta Lockhart" ### context: CREATE TABLE table_11340432_1 (willow_canyon VARCHAR, dysart VARCHAR)
### question: What is the willow canyon of Stallion? ### answer: SELECT willow_canyon FROM table_11340432_1 WHERE shadow_ridge = "Stallion" ### context: CREATE TABLE table_11340432_1 (willow_canyon VARCHAR, shadow_ridge VARCHAR)
### question: Name the Valley Vista of Anthony Capuano ### answer: SELECT valley_vista FROM table_11340432_1 WHERE willow_canyon = "Anthony Capuano" ### context: CREATE TABLE table_11340432_1 (valley_vista VARCHAR, willow_canyon VARCHAR)
### question: How many informations does Michael Hawkins have? ### answer: SELECT COUNT(information) FROM table_11340432_1 WHERE shadow_ridge = "Michael Hawkins" ### context: CREATE TABLE table_11340432_1 (information VARCHAR, shadow_ridge VARCHAR)
### question: How many total rounds did Damon Hill come in First Place? ### answer: SELECT COUNT(round) FROM table_1137694_3 WHERE winning_driver = "Damon Hill" ### context: CREATE TABLE table_1137694_3 (round VARCHAR, winning_driver VARCHAR)
### question: Who drove the winning car constructed by Jordan - Mugen-Honda? ### answer: SELECT winning_driver FROM table_1137694_3 WHERE winning_constructor = "Jordan - Mugen-Honda" ### context: CREATE TABLE table_1137694_3 (winning_driver VARCHAR, winning_constructor VARCHAR)
### question: Which Grand Prix was won by a car constructed by Jordan - Mugen-Honda? ### answer: SELECT grand_prix FROM table_1137694_3 WHERE winning_constructor = "Jordan - Mugen-Honda" ### context: CREATE TABLE table_1137694_3 (grand_prix VARCHAR, winning_constructor VARCHAR)
### question: Which location belongs to the website, http://www.mudgeerabasoccer.com/? ### answer: SELECT location FROM table_11365528_2 WHERE website = "http://www.mudgeerabasoccer.com/" ### context: CREATE TABLE table_11365528_2 (location VARCHAR, website VARCHAR)
### question: The president, peter williamson, had how many home grounds? ### answer: SELECT COUNT(home_ground) FROM table_11365528_2 WHERE president = "Peter Williamson" ### context: CREATE TABLE table_11365528_2 (home_ground VARCHAR, president VARCHAR)
### question: How many head coaches are there for the website, http://www.burleighbulldogs.org/? ### answer: SELECT COUNT(head_coach) FROM table_11365528_2 WHERE website = "http://www.burleighbulldogs.org/" ### context: CREATE TABLE table_11365528_2 (head_coach VARCHAR, website VARCHAR)
### question: The head coach, steve radoslavic, is related to which websites? ### answer: SELECT website FROM table_11365528_2 WHERE head_coach = "Steve Radoslavic" ### context: CREATE TABLE table_11365528_2 (website VARCHAR, head_coach VARCHAR)
### question: Who is the driver of the european grand prix? ### answer: SELECT winning_driver FROM table_1137696_3 WHERE grand_prix = "European grand_prix" ### context: CREATE TABLE table_1137696_3 (winning_driver VARCHAR, grand_prix VARCHAR)
### question: What is the report for round 3? ### answer: SELECT report FROM table_1137696_3 WHERE round = 3 ### context: CREATE TABLE table_1137696_3 (report VARCHAR, round VARCHAR)
### question: What is the winning driver of round 7? ### answer: SELECT winning_driver FROM table_1137696_3 WHERE round = 7 ### context: CREATE TABLE table_1137696_3 (winning_driver VARCHAR, round VARCHAR)
### question: Name the grand prix with a driver of Michael Schumacher and a round of 7? ### answer: SELECT grand_prix FROM table_1137696_3 WHERE winning_driver = "Michael Schumacher" AND fastest_lap = "Michael Schumacher" AND round = 7 ### context: CREATE TABLE table_1137696_3 (grand_prix VARCHAR, round VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)
### question: Which round was the winning constructor was Benetton - Ford and in the Pole Position was Damon Hill? ### answer: SELECT round FROM table_1137702_3 WHERE winning_constructor = "Benetton - Ford" AND pole_position = "Damon Hill" ### context: CREATE TABLE table_1137702_3 (round VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR)
### question: How many Grand Prix were the winning constructor Benetton - Ford and the pole position was Michael Schumacher? ### answer: SELECT COUNT(grand_prix) FROM table_1137702_3 WHERE winning_constructor = "Benetton - Ford" AND pole_position = "Michael Schumacher" ### context: CREATE TABLE table_1137702_3 (grand_prix VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR)