question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
what's the thursday time with location being hawthorne
CREATE TABLE table_11019212_1 (thursday VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT thursday FROM table_11019212_1 WHERE location = \"Hawthorne\"" }
what's the saturday time with wednesday being 10:00-5:00
CREATE TABLE table_11019212_1 (saturday VARCHAR, wednesday VARCHAR)
{ "SQL_Query": "SELECT saturday FROM table_11019212_1 WHERE wednesday = \"10:00-5:00\"" }
what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00
CREATE TABLE table_11019212_1 (thursday VARCHAR, sunday VARCHAR, tuesday VARCHAR)
{ "SQL_Query": "SELECT thursday FROM table_11019212_1 WHERE sunday = \"1:00-5:00\" AND tuesday = \"1:00-7:00\"" }
what's the monday time with tuesday being 9:00-6:00
CREATE TABLE table_11019212_1 (monday VARCHAR, tuesday VARCHAR)
{ "SQL_Query": "SELECT monday FROM table_11019212_1 WHERE tuesday = \"9:00-6:00\"" }
What are all the reports where Paul Tracy had the fastest lap?
CREATE TABLE table_11056278_3 (report VARCHAR, fastest_lap VARCHAR)
{ "SQL_Query": "SELECT report FROM table_11056278_3 WHERE fastest_lap = \"Paul Tracy\"" }
Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?
CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT fastest_lap FROM table_11056278_3 WHERE race_name = \"Tenneco Automotive Grand Prix of Detroit\"" }
Who had the fastest lap in the races won by Max Papis?
CREATE TABLE table_11056278_3 (fastest_lap VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT fastest_lap FROM table_11056278_3 WHERE winning_driver = \"Max Papis\"" }
In Round 6, how many winning drivers were there?
CREATE TABLE table_11056278_3 (winning_driver VARCHAR, rnd VARCHAR)
{ "SQL_Query": "SELECT COUNT(winning_driver) FROM table_11056278_3 WHERE rnd = 6" }
What are the original names of the districts where the population in the 2010 census was 210450?
CREATE TABLE table_1104312_5 (original_name VARCHAR, population_at_2010_census VARCHAR)
{ "SQL_Query": "SELECT original_name FROM table_1104312_5 WHERE population_at_2010_census = 210450" }
What is the original name of the district with the current English name of South Bogor?
CREATE TABLE table_1104312_5 (original_name VARCHAR, english_name VARCHAR)
{ "SQL_Query": "SELECT original_name FROM table_1104312_5 WHERE english_name = \"South Bogor\"" }
What is the listed population from the 2010 census of West Bogor?
CREATE TABLE table_1104312_5 (population_at_2010_census INTEGER, english_name VARCHAR)
{ "SQL_Query": "SELECT MIN(population_at_2010_census) FROM table_1104312_5 WHERE english_name = \"West Bogor\"" }
How many districts have an area of 17.72 KM2?
CREATE TABLE table_1104312_5 (english_name VARCHAR, area_in_km² VARCHAR)
{ "SQL_Query": "SELECT COUNT(english_name) FROM table_1104312_5 WHERE area_in_km² = \"17.72\"" }
What is the area in km2 for the district whose original name was Kecamatan Bogor Timur?
CREATE TABLE table_1104312_5 (area_in_km² VARCHAR, original_name VARCHAR)
{ "SQL_Query": "SELECT area_in_km² FROM table_1104312_5 WHERE original_name = \"Kecamatan Bogor Timur\"" }
What is the number of colour with the regisration number of mg-509?
CREATE TABLE table_11066073_1 (colour VARCHAR, registration_no VARCHAR)
{ "SQL_Query": "SELECT COUNT(colour) FROM table_11066073_1 WHERE registration_no = \"MG-509\"" }
What is the title of the episode directed by Mark Tinker?
CREATE TABLE table_11058032_1 (title VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_11058032_1 WHERE directed_by = \"Mark Tinker\"" }
What episode in the season was directed by Jeff Melman?
CREATE TABLE table_11058032_1 (no_in_season INTEGER, directed_by VARCHAR)
{ "SQL_Query": "SELECT MIN(no_in_season) FROM table_11058032_1 WHERE directed_by = \"Jeff Melman\"" }
How many episodes had 16.03 million viewers?
CREATE TABLE table_11058032_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(no_in_series) FROM table_11058032_1 WHERE us_viewers__millions_ = \"16.03\"" }
What is the number of interregnum for duration 3 months, 6 days?
CREATE TABLE table_11071897_1 (interregnum_ended VARCHAR, duration VARCHAR)
{ "SQL_Query": "SELECT COUNT(interregnum_ended) FROM table_11071897_1 WHERE duration = \"3 months, 6 days\"" }
Who directed Episode 8?
CREATE TABLE table_11075747_4 (directed_by VARCHAR, episode__number VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_11075747_4 WHERE episode__number = 8" }
What was the original air date for Series 36?
CREATE TABLE table_11075747_4 (original_air_date VARCHAR, series__number VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_11075747_4 WHERE series__number = 36" }
Who wrote Series 38?
CREATE TABLE table_11075747_4 (written_by VARCHAR, series__number VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_11075747_4 WHERE series__number = 38" }
What is the percentage for manhattan 45,901?
CREATE TABLE table_1108394_24 (_percentage VARCHAR, manhattan VARCHAR)
{ "SQL_Query": "SELECT COUNT(_percentage) FROM table_1108394_24 WHERE manhattan = \"45,901\"" }
Who won the 1973 democratic initial primary for queens of 19%?
CREATE TABLE table_1108394_24 (queens VARCHAR)
{ "SQL_Query": "SELECT 1973 AS _democratic_initial_primary FROM table_1108394_24 WHERE queens = \"19_percentage\"" }
What is the manhattan for richmond 35%?
CREATE TABLE table_1108394_24 (manhattan VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
{ "SQL_Query": "SELECT manhattan FROM table_1108394_24 WHERE richmond_[staten_is] = \"35_percentage\"" }
What is the queens where richmond staten is 42%?
CREATE TABLE table_1108394_24 (queens VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
{ "SQL_Query": "SELECT queens FROM table_1108394_24 WHERE richmond_[staten_is] = \"42_percentage\"" }
what's the party with brooklyn value of 51.0%
CREATE TABLE table_1108394_43 (party VARCHAR, brooklyn VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1108394_43 WHERE brooklyn = \"51.0_percentage\"" }
what's the brooklyn with queens value of 16.8%
CREATE TABLE table_1108394_43 (brooklyn VARCHAR, queens VARCHAR)
{ "SQL_Query": "SELECT brooklyn FROM table_1108394_43 WHERE queens = \"16.8_percentage\"" }
what is the minimum total
CREATE TABLE table_1108394_43 (total INTEGER)
{ "SQL_Query": "SELECT MIN(total) FROM table_1108394_43" }
what's the % with total value of 249887 and queens value of 6.8%
CREATE TABLE table_1108394_43 (_percentage VARCHAR, total VARCHAR, queens VARCHAR)
{ "SQL_Query": "SELECT _percentage FROM table_1108394_43 WHERE total = 249887 AND queens = \"6.8_percentage\"" }
Which teams were in the central division and located in livonia?
CREATE TABLE table_11094950_1 (team VARCHAR, division VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11094950_1 WHERE division = \"Central\" AND location = \"Livonia\"" }
Which teams are located in highland township?
CREATE TABLE table_11094950_1 (team VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11094950_1 WHERE location = \"Highland Township\"" }
What conference was the churchill chargers team in?
CREATE TABLE table_11094950_1 (conference VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT conference FROM table_11094950_1 WHERE team = \"Churchill Chargers\"" }
What was the titles of the episodes written by ken lazebnik?
CREATE TABLE table_11111116_7 (title VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_11111116_7 WHERE written_by = \"Ken LaZebnik\"" }
Who directed an episode that had 2.81 million U.S. viewers?
CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = \"2.81\"" }
What were the names of the episodes that had 3.02 million U.S. viewers?
CREATE TABLE table_11111116_7 (title VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT title FROM table_11111116_7 WHERE us_viewers__million_ = \"3.02\"" }
Who directed episodes that had 2.61 million U.S. viewers?
CREATE TABLE table_11111116_7 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_11111116_7 WHERE us_viewers__million_ = \"2.61\"" }
How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?
CREATE TABLE table_11111116_8 (us_viewers__million_ VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT us_viewers__million_ FROM table_11111116_8 WHERE original_air_date = \"March 31, 2013\"" }
Who wrote the episodes that were viewed by 2.12 million viewers?
CREATE TABLE table_11111116_8 (written_by VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_11111116_8 WHERE us_viewers__million_ = \"2.12\"" }
The episode written by Rebecca Dameron aired on what date?
CREATE TABLE table_11111116_6 (original_air_date VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_11111116_6 WHERE written_by = \"Rebecca Dameron\"" }
Which episode in the series drew 3.6 million U.S. viewers?
CREATE TABLE table_11111116_6 (no_in_series INTEGER, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT MIN(no_in_series) FROM table_11111116_6 WHERE us_viewers__million_ = \"3.6\"" }
Who wrote the episode that aired on April 17, 2011?
CREATE TABLE table_11111116_6 (written_by VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_11111116_6 WHERE original_air_date = \"April 17, 2011\"" }
How many times did episode 79 originally air?
CREATE TABLE table_11111116_6 (original_air_date VARCHAR, no_in_series VARCHAR)
{ "SQL_Query": "SELECT COUNT(original_air_date) FROM table_11111116_6 WHERE no_in_series = 79" }
What is the name of the shield winner in which the mls cup winner and mls cup runner up is colorado rapids?
CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_cup_runner_up VARCHAR)
{ "SQL_Query": "SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_cup_runner_up = \"Colorado Rapids\"" }
What is the name of the shield winner in which the mls cup winner and mls supporters shield runner up is Chivas usa?
CREATE TABLE table_11148572_1 (mls_cup_winner VARCHAR, mls_supporters_shield_runner_up VARCHAR)
{ "SQL_Query": "SELECT mls_cup_winner FROM table_11148572_1 WHERE mls_supporters_shield_runner_up = \"Chivas USA\"" }
who is the of the shield winnerin which the mls cup runner-up and mls cup winner is real salt lake?
CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, mls_cup_winner VARCHAR)
{ "SQL_Query": "SELECT mls_cup_runner_up FROM table_11148572_1 WHERE mls_cup_winner = \"Real Salt Lake\"" }
Which shield winner has the mls cup runner up and the season is 2000?
CREATE TABLE table_11148572_1 (mls_cup_runner_up VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT mls_cup_runner_up FROM table_11148572_1 WHERE season = 2000" }
League apps (sub) maximum?
CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER)
{ "SQL_Query": "SELECT MAX(league_apps__sub_) FROM table_1112176_1" }
When total goals is 11 what was the league apps (sub)?
CREATE TABLE table_1112176_1 (league_apps__sub_ INTEGER, total_goals VARCHAR)
{ "SQL_Query": "SELECT MAX(league_apps__sub_) FROM table_1112176_1 WHERE total_goals = 11" }
Which city had the charleston area convention center as its callback location
CREATE TABLE table_11129123_1 (audition_city VARCHAR, callback_venue VARCHAR)
{ "SQL_Query": "SELECT audition_city FROM table_11129123_1 WHERE callback_venue = \"Charleston Area Convention Center\"" }
When did the callbacks from rancho bernardo inn air
CREATE TABLE table_11129123_1 (episode_air_date VARCHAR, callback_venue VARCHAR)
{ "SQL_Query": "SELECT episode_air_date FROM table_11129123_1 WHERE callback_venue = \"Rancho Bernardo Inn\"" }
The station located in Albuquerque has been owned since what year?
CREATE TABLE table_11147852_1 (owned_since VARCHAR, city_of_license_market VARCHAR)
{ "SQL_Query": "SELECT owned_since FROM table_11147852_1 WHERE city_of_license_market = \"Albuquerque\"" }
What channels have stations that were affiliated in 2002?
CREATE TABLE table_11147852_1 (channel_tv___dt__ VARCHAR, year_of_affiliation VARCHAR)
{ "SQL_Query": "SELECT channel_tv___dt__ FROM table_11147852_1 WHERE year_of_affiliation = \"2002\"" }
What market is KTFK-DT in?
CREATE TABLE table_11147852_1 (city_of_license_market VARCHAR, station VARCHAR)
{ "SQL_Query": "SELECT city_of_license_market FROM table_11147852_1 WHERE station = \"KTFK-DT\"" }
what's the engine where performance is 0–100km/h: 10.5s, vmax km/h (mph)
CREATE TABLE table_11167610_1 (engine VARCHAR, performance VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_11167610_1 WHERE performance = \"0–100km/h: 10.5s, VMax km/h (mph)\"" }
what's the turbo where trim is 2.0 20v
CREATE TABLE table_11167610_1 (turbo VARCHAR, trim VARCHAR)
{ "SQL_Query": "SELECT turbo FROM table_11167610_1 WHERE trim = \"2.0 20v\"" }
what's the torque where performance is 0–100km/h: 7.5s auto, vmax: km/h (mph)
CREATE TABLE table_11167610_1 (torque VARCHAR, performance VARCHAR)
{ "SQL_Query": "SELECT torque FROM table_11167610_1 WHERE performance = \"0–100km/h: 7.5s auto, VMax: km/h (mph)\"" }
what's the transmission where turbo is yes (mitsubishi td04-16t )
CREATE TABLE table_11167610_1 (transmission VARCHAR, turbo VARCHAR)
{ "SQL_Query": "SELECT transmission FROM table_11167610_1 WHERE turbo = \"Yes (Mitsubishi TD04-16t )\"" }
what's the fuel delivery where power is hp (kw) @6500 rpm
CREATE TABLE table_11167610_1 (fuel_delivery VARCHAR, power VARCHAR)
{ "SQL_Query": "SELECT fuel_delivery FROM table_11167610_1 WHERE power = \"hp (kW) @6500 rpm\"" }
" what's the engine with turbo being yes (mitsubishi td04-15g ) "
CREATE TABLE table_11167610_1 (engine VARCHAR, turbo VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_11167610_1 WHERE turbo = \"Yes (Mitsubishi TD04-15g )\"" }
What is the english title that has finale as 33 and peak as 42?
CREATE TABLE table_11173827_1 (english_title VARCHAR, finale VARCHAR, peak VARCHAR)
{ "SQL_Query": "SELECT english_title FROM table_11173827_1 WHERE finale = 33 AND peak = 42" }
What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0?
CREATE TABLE table_11173827_1 (english_title VARCHAR, premiere VARCHAR, finale VARCHAR)
{ "SQL_Query": "SELECT english_title FROM table_11173827_1 WHERE premiere < 30.0 AND finale > 36.0" }
What is the rank of the chinese title 緣來自有機?
CREATE TABLE table_11173827_1 (rank VARCHAR, chinese_title VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_11173827_1 WHERE chinese_title = \"緣來自有機\"" }
What amount is the number of hk viewers where chinese title is 十兄弟?
CREATE TABLE table_11173827_1 (hk_viewers VARCHAR, chinese_title VARCHAR)
{ "SQL_Query": "SELECT hk_viewers FROM table_11173827_1 WHERE chinese_title = \"十兄弟\"" }
What is the weekly rank with an air date is november 12, 2007?
CREATE TABLE table_11178271_1 (weekly_rank VARCHAR, air_date VARCHAR)
{ "SQL_Query": "SELECT weekly_rank FROM table_11178271_1 WHERE air_date = \"November 12, 2007\"" }
What is the lowest weekly rank with an air date of november 26, 2007?
CREATE TABLE table_11178271_1 (weekly_rank INTEGER, air_date VARCHAR)
{ "SQL_Query": "SELECT MIN(weekly_rank) FROM table_11178271_1 WHERE air_date = \"November 26, 2007\"" }
What is the viewers where the rating is 5.3?
CREATE TABLE table_11178271_1 (viewers__m_ VARCHAR, rating VARCHAR)
{ "SQL_Query": "SELECT viewers__m_ FROM table_11178271_1 WHERE rating = \"5.3\"" }
What is the highest of balmoor/
CREATE TABLE table_11206787_5 (highest VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT highest FROM table_11206787_5 WHERE stadium = \"Balmoor\"" }
What is the number of capacity at somerset park?
CREATE TABLE table_11206787_5 (capacity VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT COUNT(capacity) FROM table_11206787_5 WHERE stadium = \"Somerset Park\"" }
What is the minimum capacity where airdrie united is?
CREATE TABLE table_11206787_5 (capacity INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MIN(capacity) FROM table_11206787_5 WHERE team = \"Airdrie United\"" }
What is the stadium for alloa athletic?
CREATE TABLE table_11206787_5 (stadium VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_11206787_5 WHERE team = \"Alloa Athletic\"" }
What is the highest of ayr united?
CREATE TABLE table_11206787_5 (highest INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MIN(highest) FROM table_11206787_5 WHERE team = \"Ayr United\"" }
What is the average?
CREATE TABLE table_11206787_5 (average INTEGER)
{ "SQL_Query": "SELECT MIN(average) FROM table_11206787_5" }
When are team Galway's dates of appointment?
CREATE TABLE table_11190568_7 (date_of_appointment VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date_of_appointment FROM table_11190568_7 WHERE team = \"Galway\"" }
When are the vacancy dates for outgoing manager Damien Fox?
CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT date_of_vacancy FROM table_11190568_7 WHERE outgoing_manager = \"Damien Fox\"" }
When is the date of vacancy of Davy Fitzgerald being a replacement?
CREATE TABLE table_11190568_7 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
{ "SQL_Query": "SELECT date_of_vacancy FROM table_11190568_7 WHERE replaced_by = \"Davy FitzGerald\"" }
Which team has the outgoing manager John Meyler?
CREATE TABLE table_11190568_7 (team VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11190568_7 WHERE outgoing_manager = \"John Meyler\"" }
How many 4 credits is the hand two pair?
CREATE TABLE table_11200856_1 (hand VARCHAR)
{ "SQL_Query": "SELECT COUNT(4 AS _credits) FROM table_11200856_1 WHERE hand = \"Two pair\"" }
What duration is listed for Christian de la Fuente?
CREATE TABLE table_11210576_3 (duration VARCHAR, actor VARCHAR)
{ "SQL_Query": "SELECT duration FROM table_11210576_3 WHERE actor = \"Christian de la Fuente\"" }
What was the final episode for Dea Agent?
CREATE TABLE table_11210576_3 (final_episode VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT final_episode FROM table_11210576_3 WHERE position = \"DEA Agent\"" }
What days is greenock morton vacant?
CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT date_of_vacancy FROM table_11207040_6 WHERE team = \"Greenock Morton\"" }
What are the dates of the outgoing manager colin hendry does appointments?
CREATE TABLE table_11207040_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT date_of_appointment FROM table_11207040_6 WHERE outgoing_manager = \"Colin Hendry\"" }
What teams does jim mcinally manage?
CREATE TABLE table_11207040_6 (team VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11207040_6 WHERE outgoing_manager = \"Jim McInally\"" }
What days are vacant that were replaced by john brown?
CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
{ "SQL_Query": "SELECT date_of_vacancy FROM table_11207040_6 WHERE replaced_by = \"John Brown\"" }
What manner of departure is listed with an appointment date of 13 march 2008
CREATE TABLE table_11206916_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT manner_of_departure FROM table_11206916_2 WHERE date_of_appointment = \"13 March 2008\"" }
What is the date of appointment for outgoing manager Campbell Money
CREATE TABLE table_11206916_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT date_of_appointment FROM table_11206916_2 WHERE outgoing_manager = \"Campbell Money\"" }
What is the lowest attendance that East End Park has ever had?
CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)
{ "SQL_Query": "SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = \"East End Park\"" }
What team plays at Palmerston Park?
CREATE TABLE table_11207040_5 (team VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11207040_5 WHERE stadium = \"Palmerston Park\"" }
What is the lowest attandance recorded at Cappielow?
CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR)
{ "SQL_Query": "SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = \"Cappielow\"" }
What is the highest attendance at a game played by St. Johnstone?
CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MAX(highest) FROM table_11207040_5 WHERE team = \"St. Johnstone\"" }
What is the highest attandence at a Hamilton Academical game?
CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MIN(highest) FROM table_11207040_5 WHERE team = \"Hamilton Academical\"" }
who is the champion where semi-finalist #2 is na and location is morrisville, nc
CREATE TABLE table_11214772_1 (champion VARCHAR, semi_finalist__number2 VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT champion FROM table_11214772_1 WHERE semi_finalist__number2 = \"NA\" AND location = \"Morrisville, NC\"" }
what's the score where year is 2007
CREATE TABLE table_11214772_1 (score VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11214772_1 WHERE year = \"2007\"" }
what is the total number of semi-finalist #2 where runner-up is east carolina
CREATE TABLE table_11214772_1 (semi_finalist__number2 VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT COUNT(semi_finalist__number2) FROM table_11214772_1 WHERE runner_up = \"East Carolina\"" }
who is the semi-finalist #1 where runner-up is elon university
CREATE TABLE table_11214772_1 (semi_finalist__number1 VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT semi_finalist__number1 FROM table_11214772_1 WHERE runner_up = \"Elon University\"" }
who is the runner-up where year is 2004 and champion is north carolina state
CREATE TABLE table_11214772_1 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_11214772_1 WHERE year = \"2004\" AND champion = \"North Carolina State\"" }
who is the runner-up where location is ellenton, fl and year is 2004
CREATE TABLE table_11214772_1 (runner_up VARCHAR, location VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_11214772_1 WHERE location = \"Ellenton, FL\" AND year = \"2004\"" }
what's the naturalisation by marriage with numer of jamaicans granted british citizenship being 3165
CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, numer_of_jamaicans_granted_british_citizenship VARCHAR)
{ "SQL_Query": "SELECT naturalisation_by_marriage FROM table_11214212_1 WHERE numer_of_jamaicans_granted_british_citizenship = 3165" }
how many numer of jamaicans granted british citizenship with naturalisation by marriage being 1060
CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_marriage VARCHAR)
{ "SQL_Query": "SELECT COUNT(numer_of_jamaicans_granted_british_citizenship) FROM table_11214212_1 WHERE naturalisation_by_marriage = 1060" }
what's the naturalisation by marriage with regbeingtration of a minor child being 114
CREATE TABLE table_11214212_1 (naturalisation_by_marriage VARCHAR, registration_of_a_minor_child VARCHAR)
{ "SQL_Query": "SELECT naturalisation_by_marriage FROM table_11214212_1 WHERE registration_of_a_minor_child = 114" }
what's the numer of jamaicans granted british citizenship with naturalisation by residence being 927
CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_residence VARCHAR)
{ "SQL_Query": "SELECT numer_of_jamaicans_granted_british_citizenship FROM table_11214212_1 WHERE naturalisation_by_residence = 927" }