answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT COUNT(citrate) FROM table_16083989_1 WHERE species = "Salmonella spp." | CREATE TABLE table_16083989_1 (citrate VARCHAR, species VARCHAR) | What is the result for salmonella spp. if you use citrate? |
SELECT species FROM table_16083989_1 WHERE voges_proskauer = "Negative" AND indole = "Negative" | CREATE TABLE table_16083989_1 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR) | Which species show a negative result with both voges-proskauer and indole? |
SELECT voges_proskauer FROM table_16083989_1 WHERE citrate = "Positive" | CREATE TABLE table_16083989_1 (voges_proskauer VARCHAR, citrate VARCHAR) | What are the results for testing the species with voges-proskauer when citrate yields a positive result? |
SELECT indole FROM table_16083989_1 WHERE species = "Proteus mirabilis" | CREATE TABLE table_16083989_1 (indole VARCHAR, species VARCHAR) | What is the result of proteus mirabilis tested with indole? |
SELECT originalairdate FROM table_16090262_1 WHERE tv_broadcast = "S07E04" | CREATE TABLE table_16090262_1 (originalairdate VARCHAR, tv_broadcast VARCHAR) | When was the show originally aired that had a TV broadcast of S07E04? |
SELECT title FROM table_16090262_1 WHERE no_in_season = 4 | CREATE TABLE table_16090262_1 (title VARCHAR, no_in_season VARCHAR) | Which title was No. 4 in season? |
SELECT directed_by FROM table_16090262_1 WHERE tv_broadcast = "S07E04" | CREATE TABLE table_16090262_1 (directed_by VARCHAR, tv_broadcast VARCHAR) | Who directed the show that had a TV broadcast of S07E04? |
SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE alaska___juneau__ = "90 g/mi (56 g/km)" AND california__san_francisco_ = "110 g/mi (68 g/km)" | CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, alaska___juneau__ VARCHAR, california__san_francisco_ VARCHAR) | What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California? |
SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE midwest__des_moines_ = "300 g/mi (186 g/km)" | CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR) | What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest? |
SELECT us_national_average_electric_mix FROM table_16105186_2 WHERE midwest__des_moines_ = "280 g/mi (174 g/km)" | CREATE TABLE table_16105186_2 (us_national_average_electric_mix VARCHAR, midwest__des_moines_ VARCHAR) | What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest? |
SELECT COUNT(california__san_francisco_) FROM table_16105186_2 WHERE vehicle = "Ford Focus Electric" | CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, vehicle VARCHAR) | How many Ford Focus electric vehicle emission test scores were recorded in California? |
SELECT california__san_francisco_ FROM table_16105186_2 WHERE alaska___juneau__ = "80 g/mi (50 g/km)" AND southeast__atlanta_ = "250 g/mi (155 g/km)" | CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, alaska___juneau__ VARCHAR, southeast__atlanta_ VARCHAR) | What was the emission rating in California for the vehicle that was rated 80 g/mi (50 g/km) in Alaska and 250 g/mi (155 g/km) in the Southeast ? |
SELECT MIN(attendance) FROM table_16119656_1 | CREATE TABLE table_16119656_1 (attendance INTEGER) | What was the lowest no. of attendance on record? |
SELECT date FROM table_16119656_1 WHERE attendance < 6427.0 | CREATE TABLE table_16119656_1 (date VARCHAR, attendance INTEGER) | When was the game played if the attendance is less than 6427.0? |
SELECT attendance FROM table_16119656_1 WHERE date = "January 9, 1988" | CREATE TABLE table_16119656_1 (attendance VARCHAR, date VARCHAR) | How many were in attendance during the game on January 9, 1988? |
SELECT headquarters FROM table_1610301_1 WHERE code = "HY" | CREATE TABLE table_1610301_1 (headquarters VARCHAR, code VARCHAR) | Where is the headquarters of the place whose abbreviation is hy? |
SELECT headquarters FROM table_1610301_1 WHERE population__2011_ = 3811738 | CREATE TABLE table_1610301_1 (headquarters VARCHAR, population__2011_ VARCHAR) | Where is the headquarters of the place whose population in 2011 was 3811738? |
SELECT MIN(population__2011_) FROM table_1610301_1 WHERE district = "Prakasam" | CREATE TABLE table_1610301_1 (population__2011_ INTEGER, district VARCHAR) | What was the minimum population in 2011 of the district of Prakasam? |
SELECT code FROM table_1610301_1 WHERE district = "Mahbubnagar" | CREATE TABLE table_1610301_1 (code VARCHAR, district VARCHAR) | What is the abbreviation of the district of Mahbubnagar? |
SELECT population__2011_ FROM table_1610301_1 WHERE district = "East Godavari" | CREATE TABLE table_1610301_1 (population__2011_ VARCHAR, district VARCHAR) | What is the 2011 population of the district of East Godavari? |
SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_per_capita_nominal__$_ = 2874 | CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_per_capita_nominal__$_ VARCHAR) | What is the adjusted GDP when the nominal GDP per capita is 2874? |
SELECT gdp_per_capita_adjusted__$_ FROM table_1610496_3 WHERE population__millions_ = "37.376" | CREATE TABLE table_1610496_3 (gdp_per_capita_adjusted__$_ VARCHAR, population__millions_ VARCHAR) | What is the adjusted GDP per capita when the population is 37.376 million? |
SELECT MIN(gdp_per_capita_nominal__) AS $_ FROM table_1610496_3 WHERE population__millions_ = "63.056" | CREATE TABLE table_1610496_3 (gdp_per_capita_nominal__ INTEGER, population__millions_ VARCHAR) | What is the nominal GDP per capita when the population is 63.056 million? |
SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE population__millions_ = "5.141" | CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, population__millions_ VARCHAR) | What is the adjusted GDP when the population is 5.141 million? |
SELECT population__millions_ FROM table_1610496_3 WHERE gdp_adjusted__$_billions_ = "492" | CREATE TABLE table_1610496_3 (population__millions_ VARCHAR, gdp_adjusted__$_billions_ VARCHAR) | What is the population in millions when the adjusted GDP is 492 billion? |
SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_nominal__$_billions_ = "8.43" | CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_nominal__$_billions_ VARCHAR) | What is the adjusted GDP when the nominal GDP is 8.43 (in billions)? |
SELECT operating_profit__s$m_ FROM table_161591_2 WHERE expenditure__s$m_ = "12,127.8" | CREATE TABLE table_161591_2 (operating_profit__s$m_ VARCHAR, expenditure__s$m_ VARCHAR) | What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8? |
SELECT expenditure__s$m_ FROM table_161591_2 WHERE operating_profit__s$m_ = "717.1" | CREATE TABLE table_161591_2 (expenditure__s$m_ VARCHAR, operating_profit__s$m_ VARCHAR) | What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1? |
SELECT COUNT(profit_before_taxation__s) AS $m_ FROM table_161591_2 WHERE operating_profit__s$m_ = "717.1" | CREATE TABLE table_161591_2 (profit_before_taxation__s VARCHAR, operating_profit__s$m_ VARCHAR) | How many years was the operating profit (s$m) 717.1? |
SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = "ch'ing-yüan … i-ma" | CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR) | Name the simplified characters for wade giles is ch'ing-yüan … i-ma |
SELECT pinyin FROM table_16162581_1 WHERE date__ce_ = "657" | CREATE TABLE table_16162581_1 (pinyin VARCHAR, date__ce_ VARCHAR) | Name the pinyin for 657 date |
SELECT text FROM table_16162581_1 WHERE simplified_characters = "心猿意马" | CREATE TABLE table_16162581_1 (text VARCHAR, simplified_characters VARCHAR) | Name the text for 心猿意马 |
SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = "hsin-yüan … i-ma" | CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR) | Name the simplified charaacters being hsin-yüan … i-ma |
SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = "hsin-yüan-i-ma" | CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR) | Name the total number of pinyin for hsin-yüan-i-ma |
SELECT date__ce_ FROM table_16162581_1 WHERE pinyin = "qíngyuán … yìmǎ" | CREATE TABLE table_16162581_1 (date__ce_ VARCHAR, pinyin VARCHAR) | Name the date for qíngyuán … yìmǎ |
SELECT line FROM table_1612760_1 WHERE service_pattern = "Fast to Norwood Junction" | CREATE TABLE table_1612760_1 (line VARCHAR, service_pattern VARCHAR) | Which line offers Fast to Norwood Junction? |
SELECT operator FROM table_1612760_1 WHERE destination = "Highbury & Islington" | CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR) | Who is the operator to Highbury & Islington? |
SELECT COUNT(frequency__per_hour_) FROM table_1612760_1 WHERE service_pattern = "Next station" | CREATE TABLE table_1612760_1 (frequency__per_hour_ VARCHAR, service_pattern VARCHAR) | How many frequency figures are given for next station service pattern? |
SELECT operator FROM table_1612760_1 WHERE destination = "Dalston Junction" | CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR) | Who is the operator to destination Dalston Junction? |
SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia" | CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR) | How many tournament wins were at Volvo Masters Andalucia? |
SELECT runner_s__up FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia" | CREATE TABLE table_1615980_4 (runner_s__up VARCHAR, tournament VARCHAR) | Who was the runner up at the Volvo Masters Andalucia? |
SELECT tournament FROM table_1615980_4 WHERE winning_score = 68 - 67 - 65 - 66 = 266 | CREATE TABLE table_1615980_4 (tournament VARCHAR, winning_score VARCHAR) | In what tournament was the winning score 68-67-65-66=266? |
SELECT joined FROM table_16168849_1 WHERE nickname = "Blue Hose" | CREATE TABLE table_16168849_1 (joined VARCHAR, nickname VARCHAR) | Name the joined for blue hose |
SELECT MAX(founded) FROM table_16168849_1 WHERE nickname = "Blue Hose" | CREATE TABLE table_16168849_1 (founded INTEGER, nickname VARCHAR) | Name the maximum founded for blue hose |
SELECT MAX(enrollment) FROM table_16168849_1 WHERE institution = "St. Andrews University" | CREATE TABLE table_16168849_1 (enrollment INTEGER, institution VARCHAR) | Name the maximum enrollment for st. andrews university |
SELECT current_conference FROM table_16168849_1 WHERE left = "1974, 1989" | CREATE TABLE table_16168849_1 (current_conference VARCHAR, left VARCHAR) | Name the current conference for 1974, 1989 |
SELECT COUNT(series__number) FROM table_16175064_3 WHERE writer_s_ = "Alexa Wyatt" | CREATE TABLE table_16175064_3 (series__number VARCHAR, writer_s_ VARCHAR) | What is the total number of episodes where alexa wyatt is the writer? |
SELECT director_s_ FROM table_16175064_3 WHERE writer_s_ = "Chris Hawkshaw" | CREATE TABLE table_16175064_3 (director_s_ VARCHAR, writer_s_ VARCHAR) | Who is the director when Chris Hawkshaw is the writer? |
SELECT season__number FROM table_16175064_3 WHERE director_s_ = "Donald Crombie" AND series__number = 40 | CREATE TABLE table_16175064_3 (season__number VARCHAR, director_s_ VARCHAR, series__number VARCHAR) | What is the season number of the episode directed by Donald Crombie and the series number is 40? |
SELECT released_date FROM table_1616608_2 WHERE western_title = "Super Mario 64 DS" | CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR) | What is the released date for Super Mario 64 DS? |
SELECT game_modes FROM table_1616608_2 WHERE released_date = "2007" | CREATE TABLE table_1616608_2 (game_modes VARCHAR, released_date VARCHAR) | What are the game modes for the game released in 2007? |
SELECT COUNT(western_title) FROM table_1616608_2 WHERE chinese_title = "摸摸耀西-云中漫步" | CREATE TABLE table_1616608_2 (western_title VARCHAR, chinese_title VARCHAR) | How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ? |
SELECT released_date FROM table_1616608_2 WHERE western_title = "Polarium" | CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR) | What was the released date of Polarium? |
SELECT game_modes FROM table_1616608_2 WHERE pinyin = "Zhígǎn Yī Bǐ" | CREATE TABLE table_1616608_2 (game_modes VARCHAR, pinyin VARCHAR) | What game modes are there when the pinyin is zhígǎn yī bǐ ? |
SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = "6 children" AND allowed_recipients = "no data" | CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR) | What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients? |
SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = "12 children to 6 families (2 per family)" | CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR) | What are donor payments in the country where there are 12 children to 6 families (2 per family)? |
SELECT donor_payment FROM table_16175217_1 WHERE country = "Belgium" | CREATE TABLE table_16175217_1 (donor_payment VARCHAR, country VARCHAR) | What is the donor payment in Belgium? |
SELECT country FROM table_16175217_1 WHERE children_per_donor = "8 children" AND donor_payment = "no data" | CREATE TABLE table_16175217_1 (country VARCHAR, children_per_donor VARCHAR, donor_payment VARCHAR) | What is the country where there are 8 children per donor and no data for donor payments? |
SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "Married or in cohabitation" | CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) | What are the children per donor in the country where the allowed recipients are married or in cohabitation? |
SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "no data" | CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) | List the possible children per donor levels for countries where the allowed recipients is no data. |
SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site = "MU, 2-1" | CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_neutral_site VARCHAR) | Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site? |
SELECT missouri_vs FROM table_16201038_4 WHERE at_opponents_venue = "UI, 4-1" | CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_opponents_venue VARCHAR) | Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How |
SELECT COUNT(last_5_meetings) FROM table_16201038_4 WHERE overall_record = "MU, 21-19" | CREATE TABLE table_16201038_4 (last_5_meetings VARCHAR, overall_record VARCHAR) | How many times did the team achieve an overrall record of mu, 21-19? |
SELECT at_neutral_site FROM table_16201038_4 WHERE overall_record = "UI, 27-16" | CREATE TABLE table_16201038_4 (at_neutral_site VARCHAR, overall_record VARCHAR) | What is the record at the neutral site for when the overall record is ui, 27-16? |
SELECT at_opponents_venue FROM table_16201038_4 WHERE last_5_meetings = "MU, 4-1" AND at_neutral_site = "Tied, 0-0" | CREATE TABLE table_16201038_4 (at_opponents_venue VARCHAR, last_5_meetings VARCHAR, at_neutral_site VARCHAR) | What is the record at the opponent's venue against the team for which the record for the last 5 meetings is mu, 4-1 and the record at the neutral site is tied, 0-0? |
SELECT stamp_duty_reserve_tax FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = "0.79" | CREATE TABLE table_1618358_1 (stamp_duty_reserve_tax VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR) | What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79? |
SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE standard_stamp_duty = "367" | CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, standard_stamp_duty VARCHAR) | When the standard stamp duty is 367 what is the percentage over gdp? |
SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE stamp_duty_reserve_tax = "3,669" | CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR) | When the stamp duty reserve tax is 3,669 what is the percentage over gdp? |
SELECT year FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = "0.65" | CREATE TABLE table_1618358_1 (year VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR) | During what years are the percentage over total tax revenue is 0.65? |
SELECT COUNT(at_opponents_venue) FROM table_16201038_3 WHERE missouri_vs = "Oklahoma" | CREATE TABLE table_16201038_3 (at_opponents_venue VARCHAR, missouri_vs VARCHAR) | Name the total number of opponets venue for oklahoma |
SELECT COUNT(last_5_meetings) FROM table_16201038_3 WHERE missouri_vs = "Texas Tech" | CREATE TABLE table_16201038_3 (last_5_meetings VARCHAR, missouri_vs VARCHAR) | Name the total number of last 5 meetings for texas tech |
SELECT COUNT(series_sorted) FROM table_1620397_2 WHERE released = "April 2010" | CREATE TABLE table_1620397_2 (series_sorted VARCHAR, released VARCHAR) | Name the total number of series sorted for when released is april 2010 |
SELECT author FROM table_1620397_2 WHERE series_sorted = "6Y/AE" | CREATE TABLE table_1620397_2 (author VARCHAR, series_sorted VARCHAR) | Name the author for 6y/ae |
SELECT author FROM table_1620397_2 WHERE featuring = "Peri" AND released = "April 2010" | CREATE TABLE table_1620397_2 (author VARCHAR, featuring VARCHAR, released VARCHAR) | Name the author for peri and april 2010 |
SELECT released FROM table_1620397_2 WHERE author = "Pat Mills" | CREATE TABLE table_1620397_2 (released VARCHAR, author VARCHAR) | Name the released for pat mills |
SELECT featuring FROM table_1620397_2 WHERE author = "Pat Mills" | CREATE TABLE table_1620397_2 (featuring VARCHAR, author VARCHAR) | Name the featuring for pat mills |
SELECT last_5_meetings FROM table_16201038_5 WHERE overall_record = "UM, 2-1" | CREATE TABLE table_16201038_5 (last_5_meetings VARCHAR, overall_record VARCHAR) | What are the outcomes of the last 5 meetings where the overall record is UM, 2-1? |
SELECT overall_record FROM table_16201038_5 WHERE at_opponents_venue = "UF, 1-0" | CREATE TABLE table_16201038_5 (overall_record VARCHAR, at_opponents_venue VARCHAR) | What is the record of wins/losses that were played at opponents venue (uf, 1-0) |
SELECT missouri_vs FROM table_16201038_5 WHERE overall_record = "MU, 3-1" | CREATE TABLE table_16201038_5 (missouri_vs VARCHAR, overall_record VARCHAR) | Who are the opponents of Missouri that have an overall record of MU, 3-1? |
SELECT at_columbia FROM table_16201038_5 WHERE overall_record = "MU, 3-1" | CREATE TABLE table_16201038_5 (at_columbia VARCHAR, overall_record VARCHAR) | What is the record at Columbia for the team overall record of MU, 3-1? |
SELECT COUNT(length_feet) FROM table_16226584_1 WHERE length_meters = "106.1" | CREATE TABLE table_16226584_1 (length_feet VARCHAR, length_meters VARCHAR) | How many feet in length are there when the length is 106.1 meters? |
SELECT MIN(length_feet) FROM table_16226584_1 WHERE km_from_kingston = "105.4" | CREATE TABLE table_16226584_1 (length_feet INTEGER, km_from_kingston VARCHAR) | When the kilometers from kingston is 105.4 what is the minimum amount of length in feet? |
SELECT parish FROM table_16226584_1 WHERE length_meters = "51.8" | CREATE TABLE table_16226584_1 (parish VARCHAR, length_meters VARCHAR) | Which parishes have a railroad length of 51.8 meters? |
SELECT mi_from_kingston FROM table_16226584_1 WHERE length_feet = 362 | CREATE TABLE table_16226584_1 (mi_from_kingston VARCHAR, length_feet VARCHAR) | When the railroad length is 362 feet how many miles is it from kingston? |
SELECT parish FROM table_16226584_1 WHERE name = "Highworth" | CREATE TABLE table_16226584_1 (parish VARCHAR, name VARCHAR) | Which parishes have the highworth railroad? |
SELECT name FROM table_16226584_1 WHERE km_from_kingston = "112.6" | CREATE TABLE table_16226584_1 (name VARCHAR, km_from_kingston VARCHAR) | Which railroad is 112.6 kilometers from kingston? |
SELECT MAX(_number) FROM table_16227492_1 WHERE opponent = "New England Blazers" | CREATE TABLE table_16227492_1 (_number INTEGER, opponent VARCHAR) | Name the most number for new england blazers |
SELECT MAX(attendance) FROM table_16227492_1 | CREATE TABLE table_16227492_1 (attendance INTEGER) | Name the most attendance |
SELECT MAX(attendance) FROM table_16227492_1 WHERE _number = 4 | CREATE TABLE table_16227492_1 (attendance INTEGER, _number VARCHAR) | Name the most attendance for number 4 |
SELECT preliminary_average FROM table_16268026_3 WHERE semifinal_average = "8.834 (3)" | CREATE TABLE table_16268026_3 (preliminary_average VARCHAR, semifinal_average VARCHAR) | What is the preliminary average when the semifinal average is 8.834 (3) ? |
SELECT interview FROM table_16268026_3 WHERE preliminary_average = "8.662 (3)" | CREATE TABLE table_16268026_3 (interview VARCHAR, preliminary_average VARCHAR) | What is the interview when preliminary average is 8.662 (3) ? |
SELECT state FROM table_16268026_3 WHERE semifinal_average = "8.538 (8)" | CREATE TABLE table_16268026_3 (state VARCHAR, semifinal_average VARCHAR) | What state has a semifinal average of 8.538 (8) ? |
SELECT state FROM table_16268026_3 WHERE interview = "8.313 (8)" | CREATE TABLE table_16268026_3 (state VARCHAR, interview VARCHAR) | What state has an interview of 8.313 (8) ? |
SELECT semifinal_average FROM table_16268026_3 WHERE preliminary_average = "9.084 (1)" | CREATE TABLE table_16268026_3 (semifinal_average VARCHAR, preliminary_average VARCHAR) | What is the semifinal average where the preliminary average is 9.084 (1) ? |
SELECT swimsuit FROM table_16268026_3 WHERE evening_gown = "8.774 (6)" | CREATE TABLE table_16268026_3 (swimsuit VARCHAR, evening_gown VARCHAR) | What is the swimsuit when evening gown is 8.774 (6) ? |
SELECT pop_density__per_km²_ FROM table_16278602_1 WHERE english_name = "Capital Region of Denmark" | CREATE TABLE table_16278602_1 (pop_density__per_km²_ VARCHAR, english_name VARCHAR) | What is the population density of the Capital Region of Denmark? |
SELECT seat_of_administration FROM table_16278602_1 WHERE largest_city = "Roskilde" | CREATE TABLE table_16278602_1 (seat_of_administration VARCHAR, largest_city VARCHAR) | In the region where Roskilde is the largest city, what is the seat of administration? |
SELECT MIN(population__january_1), _2008_ FROM table_16278602_1 WHERE largest_city = "Roskilde" | CREATE TABLE table_16278602_1 (_2008_ VARCHAR, population__january_1 INTEGER, largest_city VARCHAR) | What is the minimum population of the region in which Roskilde is the largest city? |
SELECT COUNT(language_s_) FROM table_16254861_1 WHERE year__ceremony_ = "2001 (74th)" | CREATE TABLE table_16254861_1 (language_s_ VARCHAR, year__ceremony_ VARCHAR) | How many languages for the 2001 (74th) awards? |
SELECT result FROM table_16254861_1 WHERE year__ceremony_ = "2009 (82nd)" | CREATE TABLE table_16254861_1 (result VARCHAR, year__ceremony_ VARCHAR) | What was the result for the 2009 (82nd) awards? |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.