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