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