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