question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the m r romaja for kwanbuk
CREATE TABLE table_160510_5 (m_r_romaja VARCHAR, region VARCHAR)
SELECT m_r_romaja FROM table_160510_5 WHERE region = "Kwanbuk"
### Context: CREATE TABLE table_160510_5 (m_r_romaja VARCHAR, region VARCHAR) ### Question: Name the m r romaja for kwanbuk ### Answer: SELECT m_r_romaja FROM table_160510_5 WHERE region = "Kwanbuk"
Name the population density where population % is 1.1% for slovakia
CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR, member_state VARCHAR)
SELECT pop_density_people_km_2 FROM table_1606824_1 WHERE population__percentage_of_eu = "1.1%" AND member_state = "Slovakia"
### Context: CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR, member_state VARCHAR) ### Question: Name the population density where population % is 1.1% for slovakia ### Answer: SELECT pop_density_people_km_2 FROM table_1606824_1 WHERE population__percentage_of_eu = "...
Name the population density people where population % eu for 1.7%
CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR)
SELECT COUNT(pop_density_people_km_2) FROM table_1606824_1 WHERE population__percentage_of_eu = "1.7%"
### Context: CREATE TABLE table_1606824_1 (pop_density_people_km_2 VARCHAR, population__percentage_of_eu VARCHAR) ### Question: Name the population density people where population % eu for 1.7% ### Answer: SELECT COUNT(pop_density_people_km_2) FROM table_1606824_1 WHERE population__percentage_of_eu = "1.7%"
Name the number of area km 2 for population density is 87
CREATE TABLE table_1606824_1 (area_km_2 VARCHAR, pop_density_people_km_2 VARCHAR)
SELECT COUNT(area_km_2) FROM table_1606824_1 WHERE pop_density_people_km_2 = "87"
### Context: CREATE TABLE table_1606824_1 (area_km_2 VARCHAR, pop_density_people_km_2 VARCHAR) ### Question: Name the number of area km 2 for population density is 87 ### Answer: SELECT COUNT(area_km_2) FROM table_1606824_1 WHERE pop_density_people_km_2 = "87"
Name the population % of eu for greece
CREATE TABLE table_1606824_1 (population__percentage_of_eu VARCHAR, member_state VARCHAR)
SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = "Greece"
### Context: CREATE TABLE table_1606824_1 (population__percentage_of_eu VARCHAR, member_state VARCHAR) ### Question: Name the population % of eu for greece ### Answer: SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = "Greece"
How many networks are there that have a channel number 7?
CREATE TABLE table_160728_4 (network VARCHAR, channel VARCHAR)
SELECT COUNT(network) FROM table_160728_4 WHERE channel = 7
### Context: CREATE TABLE table_160728_4 (network VARCHAR, channel VARCHAR) ### Question: How many networks are there that have a channel number 7? ### Answer: SELECT COUNT(network) FROM table_160728_4 WHERE channel = 7
What station on the network is tv3?
CREATE TABLE table_160728_4 (network VARCHAR, station VARCHAR)
SELECT network FROM table_160728_4 WHERE station = "TV3"
### Context: CREATE TABLE table_160728_4 (network VARCHAR, station VARCHAR) ### Question: What station on the network is tv3? ### Answer: SELECT network FROM table_160728_4 WHERE station = "TV3"
What year was the team named the Raiders established?
CREATE TABLE table_16078390_2 (founded INTEGER, team_nickname VARCHAR)
SELECT MAX(founded) FROM table_16078390_2 WHERE team_nickname = "Raiders"
### Context: CREATE TABLE table_16078390_2 (founded INTEGER, team_nickname VARCHAR) ### Question: What year was the team named the Raiders established? ### Answer: SELECT MAX(founded) FROM table_16078390_2 WHERE team_nickname = "Raiders"
What conference does Gonzaga University play in?
CREATE TABLE table_16078390_2 (primary_conference VARCHAR, institution VARCHAR)
SELECT primary_conference FROM table_16078390_2 WHERE institution = "Gonzaga University"
### Context: CREATE TABLE table_16078390_2 (primary_conference VARCHAR, institution VARCHAR) ### Question: What conference does Gonzaga University play in? ### Answer: SELECT primary_conference FROM table_16078390_2 WHERE institution = "Gonzaga University"
How many Universities were founded in Tacoma, Washington?
CREATE TABLE table_16078390_2 (founded VARCHAR, location VARCHAR)
SELECT COUNT(founded) FROM table_16078390_2 WHERE location = "Tacoma, Washington"
### Context: CREATE TABLE table_16078390_2 (founded VARCHAR, location VARCHAR) ### Question: How many Universities were founded in Tacoma, Washington? ### Answer: SELECT COUNT(founded) FROM table_16078390_2 WHERE location = "Tacoma, Washington"
Which school's team has the nickname of the Wildcats?
CREATE TABLE table_16078390_2 (institution VARCHAR, team_nickname VARCHAR)
SELECT institution FROM table_16078390_2 WHERE team_nickname = "Wildcats"
### Context: CREATE TABLE table_16078390_2 (institution VARCHAR, team_nickname VARCHAR) ### Question: Which school's team has the nickname of the Wildcats? ### Answer: SELECT institution FROM table_16078390_2 WHERE team_nickname = "Wildcats"
What year was the university that is located in Ellensburg, Washington established?
CREATE TABLE table_16078390_2 (founded INTEGER, location VARCHAR)
SELECT MIN(founded) FROM table_16078390_2 WHERE location = "Ellensburg, Washington"
### Context: CREATE TABLE table_16078390_2 (founded INTEGER, location VARCHAR) ### Question: What year was the university that is located in Ellensburg, Washington established? ### Answer: SELECT MIN(founded) FROM table_16078390_2 WHERE location = "Ellensburg, Washington"
Where is the university located that's nicknamed the Wolves?
CREATE TABLE table_16078390_2 (location VARCHAR, team_nickname VARCHAR)
SELECT location FROM table_16078390_2 WHERE team_nickname = "Wolves"
### Context: CREATE TABLE table_16078390_2 (location VARCHAR, team_nickname VARCHAR) ### Question: Where is the university located that's nicknamed the Wolves? ### Answer: SELECT location FROM table_16078390_2 WHERE team_nickname = "Wolves"
What is the total number of viewers where the share is 7 and the week rank is 64?
CREATE TABLE table_16072430_1 (viewers VARCHAR, share VARCHAR, weekly_rank VARCHAR)
SELECT COUNT(viewers) FROM table_16072430_1 WHERE share = 7 AND weekly_rank = "64"
### Context: CREATE TABLE table_16072430_1 (viewers VARCHAR, share VARCHAR, weekly_rank VARCHAR) ### Question: What is the total number of viewers where the share is 7 and the week rank is 64? ### Answer: SELECT COUNT(viewers) FROM table_16072430_1 WHERE share = 7 AND weekly_rank = "64"
How many episodes have a share bigger than 7.0?
CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER)
SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0
### Context: CREATE TABLE table_16072430_1 (_number VARCHAR, share INTEGER) ### Question: How many episodes have a share bigger than 7.0? ### Answer: SELECT COUNT(_number) FROM table_16072430_1 WHERE share > 7.0
How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.?
CREATE TABLE table_16072430_1 (_number VARCHAR, weekly_rank VARCHAR, timeslot VARCHAR)
SELECT COUNT(_number) FROM table_16072430_1 WHERE weekly_rank = "TBA" AND timeslot = "8:00 P.M."
### Context: CREATE TABLE table_16072430_1 (_number VARCHAR, weekly_rank VARCHAR, timeslot VARCHAR) ### Question: How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.? ### Answer: SELECT COUNT(_number) FROM table_16072430_1 WHERE weekly_rank = "TBA" AND timeslot = "8:00 P.M."
What are the timeslot(s) for broadcast on February 22, 2008?
CREATE TABLE table_16072430_1 (timeslot VARCHAR, air_date VARCHAR)
SELECT timeslot FROM table_16072430_1 WHERE air_date = "February 22, 2008"
### Context: CREATE TABLE table_16072430_1 (timeslot VARCHAR, air_date VARCHAR) ### Question: What are the timeslot(s) for broadcast on February 22, 2008? ### Answer: SELECT timeslot FROM table_16072430_1 WHERE air_date = "February 22, 2008"
What broadcast dates have a weekly rank of 73?
CREATE TABLE table_16072430_1 (air_date VARCHAR, weekly_rank VARCHAR)
SELECT COUNT(air_date) FROM table_16072430_1 WHERE weekly_rank = "73"
### Context: CREATE TABLE table_16072430_1 (air_date VARCHAR, weekly_rank VARCHAR) ### Question: What broadcast dates have a weekly rank of 73? ### Answer: SELECT COUNT(air_date) FROM table_16072430_1 WHERE weekly_rank = "73"
When was the date of appointment for St. Johnstone's manager?
CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_16075179_6 WHERE team = "St. Johnstone"
### Context: CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, team VARCHAR) ### Question: When was the date of appointment for St. Johnstone's manager? ### Answer: SELECT date_of_appointment FROM table_16075179_6 WHERE team = "St. Johnstone"
Who was the outgoing manager for Aberdeen?
CREATE TABLE table_16075179_6 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_16075179_6 WHERE team = "Aberdeen"
### Context: CREATE TABLE table_16075179_6 (outgoing_manager VARCHAR, team VARCHAR) ### Question: Who was the outgoing manager for Aberdeen? ### Answer: SELECT outgoing_manager FROM table_16075179_6 WHERE team = "Aberdeen"
When was the date of appointment for the manager replacing Wim Jansen?
CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_16075179_6 WHERE outgoing_manager = "Wim Jansen"
### Context: CREATE TABLE table_16075179_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) ### Question: When was the date of appointment for the manager replacing Wim Jansen? ### Answer: SELECT date_of_appointment FROM table_16075179_6 WHERE outgoing_manager = "Wim Jansen"
What is the result for salmonella spp. if you use citrate?
CREATE TABLE table_16083989_1 (citrate VARCHAR, species VARCHAR)
SELECT COUNT(citrate) FROM table_16083989_1 WHERE species = "Salmonella spp."
### Context: CREATE TABLE table_16083989_1 (citrate VARCHAR, species VARCHAR) ### Question: What is the result for salmonella spp. if you use citrate? ### Answer: SELECT COUNT(citrate) FROM table_16083989_1 WHERE species = "Salmonella spp."
Which species show a negative result with both voges-proskauer and indole?
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"
### Context: CREATE TABLE table_16083989_1 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR) ### Question: Which species show a negative result with both voges-proskauer and indole? ### Answer: SELECT species FROM table_16083989_1 WHERE voges_proskauer = "Negative" AND indole = "Negative"
What are the results for testing the species with voges-proskauer when citrate yields a positive result?
CREATE TABLE table_16083989_1 (voges_proskauer VARCHAR, citrate VARCHAR)
SELECT voges_proskauer FROM table_16083989_1 WHERE citrate = "Positive"
### Context: CREATE TABLE table_16083989_1 (voges_proskauer VARCHAR, citrate VARCHAR) ### Question: What are the results for testing the species with voges-proskauer when citrate yields a positive result? ### Answer: SELECT voges_proskauer FROM table_16083989_1 WHERE citrate = "Positive"
What is the result of proteus mirabilis tested with indole?
CREATE TABLE table_16083989_1 (indole VARCHAR, species VARCHAR)
SELECT indole FROM table_16083989_1 WHERE species = "Proteus mirabilis"
### Context: CREATE TABLE table_16083989_1 (indole VARCHAR, species VARCHAR) ### Question: What is the result of proteus mirabilis tested with indole? ### Answer: SELECT indole FROM table_16083989_1 WHERE species = "Proteus mirabilis"
When was the show originally aired that had a TV broadcast of S07E04?
CREATE TABLE table_16090262_1 (originalairdate VARCHAR, tv_broadcast VARCHAR)
SELECT originalairdate FROM table_16090262_1 WHERE tv_broadcast = "S07E04"
### Context: CREATE TABLE table_16090262_1 (originalairdate VARCHAR, tv_broadcast VARCHAR) ### Question: When was the show originally aired that had a TV broadcast of S07E04? ### Answer: SELECT originalairdate FROM table_16090262_1 WHERE tv_broadcast = "S07E04"
Which title was No. 4 in season?
CREATE TABLE table_16090262_1 (title VARCHAR, no_in_season VARCHAR)
SELECT title FROM table_16090262_1 WHERE no_in_season = 4
### Context: CREATE TABLE table_16090262_1 (title VARCHAR, no_in_season VARCHAR) ### Question: Which title was No. 4 in season? ### Answer: SELECT title FROM table_16090262_1 WHERE no_in_season = 4
Who directed the show that had a TV broadcast of S07E04?
CREATE TABLE table_16090262_1 (directed_by VARCHAR, tv_broadcast VARCHAR)
SELECT directed_by FROM table_16090262_1 WHERE tv_broadcast = "S07E04"
### Context: CREATE TABLE table_16090262_1 (directed_by VARCHAR, tv_broadcast VARCHAR) ### Question: Who directed the show that had a TV broadcast of S07E04? ### Answer: SELECT directed_by FROM table_16090262_1 WHERE tv_broadcast = "S07E04"
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?
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)"
### Context: CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, alaska___juneau__ VARCHAR, california__san_francisco_ VARCHAR) ### 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 Californi...
What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest?
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)"
### Context: CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR) ### 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? ### Answer: SELECT mid_atlantic_south__washington, _dc_ FROM...
What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest?
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)"
### Context: CREATE TABLE table_16105186_2 (us_national_average_electric_mix VARCHAR, midwest__des_moines_ VARCHAR) ### 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? ### Answer: SELECT us_national_average_electric_mix FROM table_1610518...
How many Ford Focus electric vehicle emission test scores were recorded in California?
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"
### Context: CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, vehicle VARCHAR) ### Question: How many Ford Focus electric vehicle emission test scores were recorded in California? ### Answer: SELECT COUNT(california__san_francisco_) FROM table_16105186_2 WHERE vehicle = "Ford Focus Electric"
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 ?
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)"
### Context: CREATE TABLE table_16105186_2 (california__san_francisco_ VARCHAR, alaska___juneau__ VARCHAR, southeast__atlanta_ VARCHAR) ### 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 ? ### Answer: SELECT califo...
What was the lowest no. of attendance on record?
CREATE TABLE table_16119656_1 (attendance INTEGER)
SELECT MIN(attendance) FROM table_16119656_1
### Context: CREATE TABLE table_16119656_1 (attendance INTEGER) ### Question: What was the lowest no. of attendance on record? ### Answer: SELECT MIN(attendance) FROM table_16119656_1
When was the game played if the attendance is less than 6427.0?
CREATE TABLE table_16119656_1 (date VARCHAR, attendance INTEGER)
SELECT date FROM table_16119656_1 WHERE attendance < 6427.0
### Context: CREATE TABLE table_16119656_1 (date VARCHAR, attendance INTEGER) ### Question: When was the game played if the attendance is less than 6427.0? ### Answer: SELECT date FROM table_16119656_1 WHERE attendance < 6427.0
How many were in attendance during the game on January 9, 1988?
CREATE TABLE table_16119656_1 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_16119656_1 WHERE date = "January 9, 1988"
### Context: CREATE TABLE table_16119656_1 (attendance VARCHAR, date VARCHAR) ### Question: How many were in attendance during the game on January 9, 1988? ### Answer: SELECT attendance FROM table_16119656_1 WHERE date = "January 9, 1988"
Where is the headquarters of the place whose abbreviation is hy?
CREATE TABLE table_1610301_1 (headquarters VARCHAR, code VARCHAR)
SELECT headquarters FROM table_1610301_1 WHERE code = "HY"
### Context: CREATE TABLE table_1610301_1 (headquarters VARCHAR, code VARCHAR) ### Question: Where is the headquarters of the place whose abbreviation is hy? ### Answer: SELECT headquarters FROM table_1610301_1 WHERE code = "HY"
Where is the headquarters of the place whose population in 2011 was 3811738?
CREATE TABLE table_1610301_1 (headquarters VARCHAR, population__2011_ VARCHAR)
SELECT headquarters FROM table_1610301_1 WHERE population__2011_ = 3811738
### Context: CREATE TABLE table_1610301_1 (headquarters VARCHAR, population__2011_ VARCHAR) ### Question: Where is the headquarters of the place whose population in 2011 was 3811738? ### Answer: SELECT headquarters FROM table_1610301_1 WHERE population__2011_ = 3811738
What was the minimum population in 2011 of the district of Prakasam?
CREATE TABLE table_1610301_1 (population__2011_ INTEGER, district VARCHAR)
SELECT MIN(population__2011_) FROM table_1610301_1 WHERE district = "Prakasam"
### Context: CREATE TABLE table_1610301_1 (population__2011_ INTEGER, district VARCHAR) ### Question: What was the minimum population in 2011 of the district of Prakasam? ### Answer: SELECT MIN(population__2011_) FROM table_1610301_1 WHERE district = "Prakasam"
What is the abbreviation of the district of Mahbubnagar?
CREATE TABLE table_1610301_1 (code VARCHAR, district VARCHAR)
SELECT code FROM table_1610301_1 WHERE district = "Mahbubnagar"
### Context: CREATE TABLE table_1610301_1 (code VARCHAR, district VARCHAR) ### Question: What is the abbreviation of the district of Mahbubnagar? ### Answer: SELECT code FROM table_1610301_1 WHERE district = "Mahbubnagar"
What is the 2011 population of the district of East Godavari?
CREATE TABLE table_1610301_1 (population__2011_ VARCHAR, district VARCHAR)
SELECT population__2011_ FROM table_1610301_1 WHERE district = "East Godavari"
### Context: CREATE TABLE table_1610301_1 (population__2011_ VARCHAR, district VARCHAR) ### Question: What is the 2011 population of the district of East Godavari? ### Answer: SELECT population__2011_ FROM table_1610301_1 WHERE district = "East Godavari"
What is the adjusted GDP when the nominal GDP per capita is 2874?
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
### Context: CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_per_capita_nominal__$_ VARCHAR) ### Question: What is the adjusted GDP when the nominal GDP per capita is 2874? ### Answer: SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_per_capita_nominal__$_ = 2874
What is the adjusted GDP per capita when the population is 37.376 million?
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"
### Context: CREATE TABLE table_1610496_3 (gdp_per_capita_adjusted__$_ VARCHAR, population__millions_ VARCHAR) ### Question: What is the adjusted GDP per capita when the population is 37.376 million? ### Answer: SELECT gdp_per_capita_adjusted__$_ FROM table_1610496_3 WHERE population__millions_ = "37.376"
What is the nominal GDP per capita when the population is 63.056 million?
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"
### Context: CREATE TABLE table_1610496_3 (gdp_per_capita_nominal__ INTEGER, population__millions_ VARCHAR) ### Question: What is the nominal GDP per capita when the population is 63.056 million? ### Answer: SELECT MIN(gdp_per_capita_nominal__) AS $_ FROM table_1610496_3 WHERE population__millions_ = "63.056"
What is the adjusted GDP when the population is 5.141 million?
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"
### Context: CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, population__millions_ VARCHAR) ### Question: What is the adjusted GDP when the population is 5.141 million? ### Answer: SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE population__millions_ = "5.141"
What is the population in millions when the adjusted GDP is 492 billion?
CREATE TABLE table_1610496_3 (population__millions_ VARCHAR, gdp_adjusted__$_billions_ VARCHAR)
SELECT population__millions_ FROM table_1610496_3 WHERE gdp_adjusted__$_billions_ = "492"
### Context: CREATE TABLE table_1610496_3 (population__millions_ VARCHAR, gdp_adjusted__$_billions_ VARCHAR) ### Question: What is the population in millions when the adjusted GDP is 492 billion? ### Answer: SELECT population__millions_ FROM table_1610496_3 WHERE gdp_adjusted__$_billions_ = "492"
What is the adjusted GDP when the nominal GDP is 8.43 (in billions)?
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"
### Context: CREATE TABLE table_1610496_3 (gdp_adjusted__$_billions_ VARCHAR, gdp_nominal__$_billions_ VARCHAR) ### Question: What is the adjusted GDP when the nominal GDP is 8.43 (in billions)? ### Answer: SELECT gdp_adjusted__$_billions_ FROM table_1610496_3 WHERE gdp_nominal__$_billions_ = "8.43"
What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8?
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"
### Context: CREATE TABLE table_161591_2 (operating_profit__s$m_ VARCHAR, expenditure__s$m_ VARCHAR) ### Question: What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8? ### Answer: SELECT operating_profit__s$m_ FROM table_161591_2 WHERE expenditure__s$m_ = "12,127.8"
What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1?
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"
### Context: CREATE TABLE table_161591_2 (expenditure__s$m_ VARCHAR, operating_profit__s$m_ VARCHAR) ### Question: What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1? ### Answer: SELECT expenditure__s$m_ FROM table_161591_2 WHERE operating_profit__s$m_ = "717.1"
How many years was the operating profit (s$m) 717.1?
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"
### Context: CREATE TABLE table_161591_2 (profit_before_taxation__s VARCHAR, operating_profit__s$m_ VARCHAR) ### Question: How many years was the operating profit (s$m) 717.1? ### Answer: SELECT COUNT(profit_before_taxation__s) AS $m_ FROM table_161591_2 WHERE operating_profit__s$m_ = "717.1"
Name the simplified characters for wade giles is ch'ing-yüan … i-ma
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"
### Context: CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR) ### Question: Name the simplified characters for wade giles is ch'ing-yüan … i-ma ### Answer: SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = "ch'ing-yüan … i-ma"
Name the pinyin for 657 date
CREATE TABLE table_16162581_1 (pinyin VARCHAR, date__ce_ VARCHAR)
SELECT pinyin FROM table_16162581_1 WHERE date__ce_ = "657"
### Context: CREATE TABLE table_16162581_1 (pinyin VARCHAR, date__ce_ VARCHAR) ### Question: Name the pinyin for 657 date ### Answer: SELECT pinyin FROM table_16162581_1 WHERE date__ce_ = "657"
Name the text for 心猿意马
CREATE TABLE table_16162581_1 (text VARCHAR, simplified_characters VARCHAR)
SELECT text FROM table_16162581_1 WHERE simplified_characters = "心猿意马"
### Context: CREATE TABLE table_16162581_1 (text VARCHAR, simplified_characters VARCHAR) ### Question: Name the text for 心猿意马 ### Answer: SELECT text FROM table_16162581_1 WHERE simplified_characters = "心猿意马"
Name the simplified charaacters being hsin-yüan … i-ma
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"
### Context: CREATE TABLE table_16162581_1 (simplified_characters VARCHAR, wade_giles VARCHAR) ### Question: Name the simplified charaacters being hsin-yüan … i-ma ### Answer: SELECT simplified_characters FROM table_16162581_1 WHERE wade_giles = "hsin-yüan … i-ma"
Name the total number of pinyin for hsin-yüan-i-ma
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"
### Context: CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR) ### Question: Name the total number of pinyin for hsin-yüan-i-ma ### Answer: SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = "hsin-yüan-i-ma"
Name the date for qíngyuán … yìmǎ
CREATE TABLE table_16162581_1 (date__ce_ VARCHAR, pinyin VARCHAR)
SELECT date__ce_ FROM table_16162581_1 WHERE pinyin = "qíngyuán … yìmǎ"
### Context: CREATE TABLE table_16162581_1 (date__ce_ VARCHAR, pinyin VARCHAR) ### Question: Name the date for qíngyuán … yìmǎ ### Answer: SELECT date__ce_ FROM table_16162581_1 WHERE pinyin = "qíngyuán … yìmǎ"
Which line offers Fast to Norwood Junction?
CREATE TABLE table_1612760_1 (line VARCHAR, service_pattern VARCHAR)
SELECT line FROM table_1612760_1 WHERE service_pattern = "Fast to Norwood Junction"
### Context: CREATE TABLE table_1612760_1 (line VARCHAR, service_pattern VARCHAR) ### Question: Which line offers Fast to Norwood Junction? ### Answer: SELECT line FROM table_1612760_1 WHERE service_pattern = "Fast to Norwood Junction"
Who is the operator to Highbury & Islington?
CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR)
SELECT operator FROM table_1612760_1 WHERE destination = "Highbury & Islington"
### Context: CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR) ### Question: Who is the operator to Highbury & Islington? ### Answer: SELECT operator FROM table_1612760_1 WHERE destination = "Highbury & Islington"
How many frequency figures are given for next station service pattern?
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"
### Context: CREATE TABLE table_1612760_1 (frequency__per_hour_ VARCHAR, service_pattern VARCHAR) ### Question: How many frequency figures are given for next station service pattern? ### Answer: SELECT COUNT(frequency__per_hour_) FROM table_1612760_1 WHERE service_pattern = "Next station"
Who is the operator to destination Dalston Junction?
CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR)
SELECT operator FROM table_1612760_1 WHERE destination = "Dalston Junction"
### Context: CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR) ### Question: Who is the operator to destination Dalston Junction? ### Answer: SELECT operator FROM table_1612760_1 WHERE destination = "Dalston Junction"
How many tournament wins were at Volvo Masters Andalucia?
CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR)
SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia"
### Context: CREATE TABLE table_1615980_4 (no VARCHAR, tournament VARCHAR) ### Question: How many tournament wins were at Volvo Masters Andalucia? ### Answer: SELECT COUNT(no) FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia"
Who was the runner up at the Volvo Masters Andalucia?
CREATE TABLE table_1615980_4 (runner_s__up VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia"
### Context: CREATE TABLE table_1615980_4 (runner_s__up VARCHAR, tournament VARCHAR) ### Question: Who was the runner up at the Volvo Masters Andalucia? ### Answer: SELECT runner_s__up FROM table_1615980_4 WHERE tournament = "Volvo Masters Andalucia"
In what tournament was the winning score 68-67-65-66=266?
CREATE TABLE table_1615980_4 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_1615980_4 WHERE winning_score = 68 - 67 - 65 - 66 = 266
### Context: CREATE TABLE table_1615980_4 (tournament VARCHAR, winning_score VARCHAR) ### Question: In what tournament was the winning score 68-67-65-66=266? ### Answer: SELECT tournament FROM table_1615980_4 WHERE winning_score = 68 - 67 - 65 - 66 = 266
Name the joined for blue hose
CREATE TABLE table_16168849_1 (joined VARCHAR, nickname VARCHAR)
SELECT joined FROM table_16168849_1 WHERE nickname = "Blue Hose"
### Context: CREATE TABLE table_16168849_1 (joined VARCHAR, nickname VARCHAR) ### Question: Name the joined for blue hose ### Answer: SELECT joined FROM table_16168849_1 WHERE nickname = "Blue Hose"
Name the maximum founded for blue hose
CREATE TABLE table_16168849_1 (founded INTEGER, nickname VARCHAR)
SELECT MAX(founded) FROM table_16168849_1 WHERE nickname = "Blue Hose"
### Context: CREATE TABLE table_16168849_1 (founded INTEGER, nickname VARCHAR) ### Question: Name the maximum founded for blue hose ### Answer: SELECT MAX(founded) FROM table_16168849_1 WHERE nickname = "Blue Hose"
Name the maximum enrollment for st. andrews university
CREATE TABLE table_16168849_1 (enrollment INTEGER, institution VARCHAR)
SELECT MAX(enrollment) FROM table_16168849_1 WHERE institution = "St. Andrews University"
### Context: CREATE TABLE table_16168849_1 (enrollment INTEGER, institution VARCHAR) ### Question: Name the maximum enrollment for st. andrews university ### Answer: SELECT MAX(enrollment) FROM table_16168849_1 WHERE institution = "St. Andrews University"
Name the current conference for 1974, 1989
CREATE TABLE table_16168849_1 (current_conference VARCHAR, left VARCHAR)
SELECT current_conference FROM table_16168849_1 WHERE left = "1974, 1989"
### Context: CREATE TABLE table_16168849_1 (current_conference VARCHAR, left VARCHAR) ### Question: Name the current conference for 1974, 1989 ### Answer: SELECT current_conference FROM table_16168849_1 WHERE left = "1974, 1989"
What is the total number of episodes where alexa wyatt is the writer?
CREATE TABLE table_16175064_3 (series__number VARCHAR, writer_s_ VARCHAR)
SELECT COUNT(series__number) FROM table_16175064_3 WHERE writer_s_ = "Alexa Wyatt"
### Context: CREATE TABLE table_16175064_3 (series__number VARCHAR, writer_s_ VARCHAR) ### Question: What is the total number of episodes where alexa wyatt is the writer? ### Answer: SELECT COUNT(series__number) FROM table_16175064_3 WHERE writer_s_ = "Alexa Wyatt"
Who is the director when Chris Hawkshaw is the writer?
CREATE TABLE table_16175064_3 (director_s_ VARCHAR, writer_s_ VARCHAR)
SELECT director_s_ FROM table_16175064_3 WHERE writer_s_ = "Chris Hawkshaw"
### Context: CREATE TABLE table_16175064_3 (director_s_ VARCHAR, writer_s_ VARCHAR) ### Question: Who is the director when Chris Hawkshaw is the writer? ### Answer: SELECT director_s_ FROM table_16175064_3 WHERE writer_s_ = "Chris Hawkshaw"
What is the season number of the episode directed by Donald Crombie and the series number is 40?
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
### Context: CREATE TABLE table_16175064_3 (season__number VARCHAR, director_s_ VARCHAR, series__number VARCHAR) ### Question: What is the season number of the episode directed by Donald Crombie and the series number is 40? ### Answer: SELECT season__number FROM table_16175064_3 WHERE director_s_ = "Donald Crombie" AND...
What is the released date for Super Mario 64 DS?
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"
### Context: CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR) ### Question: What is the released date for Super Mario 64 DS? ### Answer: SELECT released_date FROM table_1616608_2 WHERE western_title = "Super Mario 64 DS"
What are the game modes for the game released in 2007?
CREATE TABLE table_1616608_2 (game_modes VARCHAR, released_date VARCHAR)
SELECT game_modes FROM table_1616608_2 WHERE released_date = "2007"
### Context: CREATE TABLE table_1616608_2 (game_modes VARCHAR, released_date VARCHAR) ### Question: What are the game modes for the game released in 2007? ### Answer: SELECT game_modes FROM table_1616608_2 WHERE released_date = "2007"
How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ?
CREATE TABLE table_1616608_2 (western_title VARCHAR, chinese_title VARCHAR)
SELECT COUNT(western_title) FROM table_1616608_2 WHERE chinese_title = "摸摸耀西-云中漫步"
### Context: CREATE TABLE table_1616608_2 (western_title VARCHAR, chinese_title VARCHAR) ### Question: How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ? ### Answer: SELECT COUNT(western_title) FROM table_1616608_2 WHERE chinese_title = "摸摸耀西-云中漫步"
What was the released date of Polarium?
CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR)
SELECT released_date FROM table_1616608_2 WHERE western_title = "Polarium"
### Context: CREATE TABLE table_1616608_2 (released_date VARCHAR, western_title VARCHAR) ### Question: What was the released date of Polarium? ### Answer: SELECT released_date FROM table_1616608_2 WHERE western_title = "Polarium"
What game modes are there when the pinyin is zhígǎn yī bǐ ?
CREATE TABLE table_1616608_2 (game_modes VARCHAR, pinyin VARCHAR)
SELECT game_modes FROM table_1616608_2 WHERE pinyin = "Zhígǎn Yī Bǐ"
### Context: CREATE TABLE table_1616608_2 (game_modes VARCHAR, pinyin VARCHAR) ### Question: What game modes are there when the pinyin is zhígǎn yī bǐ ? ### Answer: SELECT game_modes FROM table_1616608_2 WHERE pinyin = "Zhígǎn Yī Bǐ"
What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?
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"
### Context: CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR) ### Question: What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients? ### Answer: SELECT donor_payment FROM table_16175217_1 WHERE...
What are donor payments in the country where there are 12 children to 6 families (2 per family)?
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)"
### Context: CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR) ### Question: What are donor payments in the country where there are 12 children to 6 families (2 per family)? ### Answer: SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = "12 children to 6 families (2 pe...
What is the donor payment in Belgium?
CREATE TABLE table_16175217_1 (donor_payment VARCHAR, country VARCHAR)
SELECT donor_payment FROM table_16175217_1 WHERE country = "Belgium"
### Context: CREATE TABLE table_16175217_1 (donor_payment VARCHAR, country VARCHAR) ### Question: What is the donor payment in Belgium? ### Answer: SELECT donor_payment FROM table_16175217_1 WHERE country = "Belgium"
What is the country where there are 8 children per donor and no data for donor payments?
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"
### Context: CREATE TABLE table_16175217_1 (country VARCHAR, children_per_donor VARCHAR, donor_payment VARCHAR) ### Question: What is the country where there are 8 children per donor and no data for donor payments? ### Answer: SELECT country FROM table_16175217_1 WHERE children_per_donor = "8 children" AND donor_paymen...
What are the children per donor in the country where the allowed recipients are married or in cohabitation?
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"
### Context: CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) ### Question: What are the children per donor in the country where the allowed recipients are married or in cohabitation? ### Answer: SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "Married or...
List the possible children per donor levels for countries where the allowed recipients is no data.
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"
### Context: CREATE TABLE table_16175217_1 (children_per_donor VARCHAR, allowed_recipients VARCHAR) ### Question: List the possible children per donor levels for countries where the allowed recipients is no data. ### Answer: SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "no data"
Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site?
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"
### Context: CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_neutral_site VARCHAR) ### Question: Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site? ### Answer: SELECT missouri_vs FROM table_16201038_4 WHERE at_neutral_site = "MU, 2-1"
Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How
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"
### Context: CREATE TABLE table_16201038_4 (missouri_vs VARCHAR, at_opponents_venue VARCHAR) ### Question: Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How ### Answer: SELECT missouri_vs FROM table_16201038_4 WHERE at_opponents_venue = "UI, 4-1"
How many times did the team achieve an overrall record of mu, 21-19?
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"
### Context: CREATE TABLE table_16201038_4 (last_5_meetings VARCHAR, overall_record VARCHAR) ### Question: How many times did the team achieve an overrall record of mu, 21-19? ### Answer: SELECT COUNT(last_5_meetings) FROM table_16201038_4 WHERE overall_record = "MU, 21-19"
What is the record at the neutral site for when the overall record is ui, 27-16?
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"
### Context: CREATE TABLE table_16201038_4 (at_neutral_site VARCHAR, overall_record VARCHAR) ### Question: What is the record at the neutral site for when the overall record is ui, 27-16? ### Answer: SELECT at_neutral_site FROM table_16201038_4 WHERE overall_record = "UI, 27-16"
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?
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"
### Context: CREATE TABLE table_16201038_4 (at_opponents_venue VARCHAR, last_5_meetings VARCHAR, at_neutral_site VARCHAR) ### 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? ### Answer: SELECT ...
What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79?
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"
### Context: CREATE TABLE table_1618358_1 (stamp_duty_reserve_tax VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR) ### Question: What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79? ### Answer: SELECT stamp_duty_reserve_tax FROM table_1618358_1 WHERE over_total_tax_revenue__in...
When the standard stamp duty is 367 what is the percentage over gdp?
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"
### Context: CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, standard_stamp_duty VARCHAR) ### Question: When the standard stamp duty is 367 what is the percentage over gdp? ### Answer: SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE standard_stamp_duty = "367"
When the stamp duty reserve tax is 3,669 what is the percentage over gdp?
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"
### Context: CREATE TABLE table_1618358_1 (over_gdp__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR) ### Question: When the stamp duty reserve tax is 3,669 what is the percentage over gdp? ### Answer: SELECT over_gdp__in__percentage_ FROM table_1618358_1 WHERE stamp_duty_reserve_tax = "3,669"
During what years are the percentage over total tax revenue is 0.65?
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"
### Context: CREATE TABLE table_1618358_1 (year VARCHAR, over_total_tax_revenue__in__percentage_ VARCHAR) ### Question: During what years are the percentage over total tax revenue is 0.65? ### Answer: SELECT year FROM table_1618358_1 WHERE over_total_tax_revenue__in__percentage_ = "0.65"
Name the total number of opponets venue for oklahoma
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"
### Context: CREATE TABLE table_16201038_3 (at_opponents_venue VARCHAR, missouri_vs VARCHAR) ### Question: Name the total number of opponets venue for oklahoma ### Answer: SELECT COUNT(at_opponents_venue) FROM table_16201038_3 WHERE missouri_vs = "Oklahoma"
Name the total number of last 5 meetings for texas tech
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"
### Context: CREATE TABLE table_16201038_3 (last_5_meetings VARCHAR, missouri_vs VARCHAR) ### Question: Name the total number of last 5 meetings for texas tech ### Answer: SELECT COUNT(last_5_meetings) FROM table_16201038_3 WHERE missouri_vs = "Texas Tech"
Name the total number of series sorted for when released is april 2010
CREATE TABLE table_1620397_2 (series_sorted VARCHAR, released VARCHAR)
SELECT COUNT(series_sorted) FROM table_1620397_2 WHERE released = "April 2010"
### Context: CREATE TABLE table_1620397_2 (series_sorted VARCHAR, released VARCHAR) ### Question: Name the total number of series sorted for when released is april 2010 ### Answer: SELECT COUNT(series_sorted) FROM table_1620397_2 WHERE released = "April 2010"
Name the author for 6y/ae
CREATE TABLE table_1620397_2 (author VARCHAR, series_sorted VARCHAR)
SELECT author FROM table_1620397_2 WHERE series_sorted = "6Y/AE"
### Context: CREATE TABLE table_1620397_2 (author VARCHAR, series_sorted VARCHAR) ### Question: Name the author for 6y/ae ### Answer: SELECT author FROM table_1620397_2 WHERE series_sorted = "6Y/AE"
Name the author for peri and april 2010
CREATE TABLE table_1620397_2 (author VARCHAR, featuring VARCHAR, released VARCHAR)
SELECT author FROM table_1620397_2 WHERE featuring = "Peri" AND released = "April 2010"
### Context: CREATE TABLE table_1620397_2 (author VARCHAR, featuring VARCHAR, released VARCHAR) ### Question: Name the author for peri and april 2010 ### Answer: SELECT author FROM table_1620397_2 WHERE featuring = "Peri" AND released = "April 2010"
Name the released for pat mills
CREATE TABLE table_1620397_2 (released VARCHAR, author VARCHAR)
SELECT released FROM table_1620397_2 WHERE author = "Pat Mills"
### Context: CREATE TABLE table_1620397_2 (released VARCHAR, author VARCHAR) ### Question: Name the released for pat mills ### Answer: SELECT released FROM table_1620397_2 WHERE author = "Pat Mills"
Name the featuring for pat mills
CREATE TABLE table_1620397_2 (featuring VARCHAR, author VARCHAR)
SELECT featuring FROM table_1620397_2 WHERE author = "Pat Mills"
### Context: CREATE TABLE table_1620397_2 (featuring VARCHAR, author VARCHAR) ### Question: Name the featuring for pat mills ### Answer: SELECT featuring FROM table_1620397_2 WHERE author = "Pat Mills"
What are the outcomes of the last 5 meetings where the overall record is UM, 2-1?
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"
### Context: CREATE TABLE table_16201038_5 (last_5_meetings VARCHAR, overall_record VARCHAR) ### Question: What are the outcomes of the last 5 meetings where the overall record is UM, 2-1? ### Answer: SELECT last_5_meetings FROM table_16201038_5 WHERE overall_record = "UM, 2-1"
What is the record of wins/losses that were played at opponents venue (uf, 1-0)
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"
### Context: CREATE TABLE table_16201038_5 (overall_record VARCHAR, at_opponents_venue VARCHAR) ### Question: What is the record of wins/losses that were played at opponents venue (uf, 1-0) ### Answer: SELECT overall_record FROM table_16201038_5 WHERE at_opponents_venue = "UF, 1-0"
Who are the opponents of Missouri that have an overall record of MU, 3-1?
CREATE TABLE table_16201038_5 (missouri_vs VARCHAR, overall_record VARCHAR)
SELECT missouri_vs FROM table_16201038_5 WHERE overall_record = "MU, 3-1"
### Context: CREATE TABLE table_16201038_5 (missouri_vs VARCHAR, overall_record VARCHAR) ### Question: Who are the opponents of Missouri that have an overall record of MU, 3-1? ### Answer: SELECT missouri_vs FROM table_16201038_5 WHERE overall_record = "MU, 3-1"