answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT mult FROM table_18823880_10 WHERE sspec_number = "SLBLW(B1)"
CREATE TABLE table_18823880_10 (mult VARCHAR, sspec_number VARCHAR)
When slblw(b1) is the sspec number what is the mult.?
SELECT release_price___usd__ FROM table_18823880_10 WHERE socket = "socketG1"
CREATE TABLE table_18823880_10 (release_price___usd__ VARCHAR, socket VARCHAR)
When socketg1 is the socket what is the release price in dollars?
SELECT MAX(opponents) FROM table_18847456_2 WHERE date = "Dec. 19"
CREATE TABLE table_18847456_2 (opponents INTEGER, date VARCHAR)
How many points did the opposing team score on Dec. 19, 1982?
SELECT bills_originally_cosponsored FROM table_18852984_2 WHERE all_amendments_cosponsored = 0
CREATE TABLE table_18852984_2 (bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)
How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0?
SELECT all_bills_cosponsored FROM table_18852984_2 WHERE bills_originally_cosponsored = 113
CREATE TABLE table_18852984_2 (all_bills_cosponsored VARCHAR, bills_originally_cosponsored VARCHAR)
How many bill cosponsored during those years where bills originally cosponsored is 113?
SELECT MAX(all_bills_sponsored) FROM table_18852984_2
CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER)
What is the greatest number of bills sponsored in any year?
SELECT MIN(cr_no) FROM table_1886270_1
CREATE TABLE table_1886270_1 (cr_no INTEGER)
What is the lowest cr number?
SELECT built FROM table_1886270_1 WHERE withdrawn = "2/1939"
CREATE TABLE table_1886270_1 (built VARCHAR, withdrawn VARCHAR)
When 2/1939 is the withdrawn when was it built?
SELECT hr_no FROM table_1886270_1 WHERE hr_name = "River Ness"
CREATE TABLE table_1886270_1 (hr_no VARCHAR, hr_name VARCHAR)
When river ness is the hr name what is the hr number?
SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "(River Garry)"
CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)
When (river garry) is the hr name how many builts are there?
SELECT MAX(cr_no) FROM table_1886270_1
CREATE TABLE table_1886270_1 (cr_no INTEGER)
What is the highest cr number?
SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "River Ness"
CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)
When river ness is the hr name how many builts are there?
SELECT MAX(opponents) FROM table_18847736_2 WHERE opponent = "at Minnesota Vikings"
CREATE TABLE table_18847736_2 (opponents INTEGER, opponent VARCHAR)
How many opponents are at Minnesota Vikings?
SELECT date FROM table_18847736_2 WHERE opponent = "New England Patriots"
CREATE TABLE table_18847736_2 (date VARCHAR, opponent VARCHAR)
What is the date when the opponent is the New England Patriots?
SELECT date FROM table_18847736_2 WHERE dolphins_points = 6
CREATE TABLE table_18847736_2 (date VARCHAR, dolphins_points VARCHAR)
How many dates do the dolphins have 6 points?
SELECT country FROM table_18862490_2 WHERE player = "Robert Allenby"
CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR)
What country does robert allenby represent?
SELECT to_par FROM table_18862490_2 WHERE year = 1998
CREATE TABLE table_18862490_2 (to_par VARCHAR, year VARCHAR)
What score to par won in 1998?
SELECT player FROM table_18862490_2 WHERE score = 64 - 70 - 67 - 69 = 270
CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)
What player(s) had the score of 64-70-67-69=270?
SELECT player FROM table_18862490_2 WHERE score = 64 - 71 - 67 - 67 = 269
CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)
What players had teh score of 64-71-67-67=269?
SELECT MIN(year) FROM table_18862490_2 WHERE score = 68 - 66 - 68 - 71 = 273
CREATE TABLE table_18862490_2 (year INTEGER, score VARCHAR)
What is the first yar that someone won with a score of 68-66-68-71=273?
SELECT COUNT(socialist) FROM table_1886589_1 WHERE lead = "12.6%"
CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR)
How many socialist have a lead of 12.6%?
SELECT MIN(SOl) FROM table_1888157_1
CREATE TABLE table_1888157_1 (SOl INTEGER)
What is the lowest SOL?
SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39
CREATE TABLE table_1888157_1 (ga INTEGER, gf VARCHAR)
What is the highest GA when GF is 39?
SELECT COUNT(record) FROM table_18904831_5 WHERE score = "W 70-66"
CREATE TABLE table_18904831_5 (record VARCHAR, score VARCHAR)
How many different records were there in the games that ended in w 70-66?
SELECT record FROM table_18904831_5 WHERE high_rebounds = "Dydek (10)"
CREATE TABLE table_18904831_5 (record VARCHAR, high_rebounds VARCHAR)
What was the record of the game in which Dydek (10) did the most high rebounds?
SELECT high_rebounds FROM table_18904831_5 WHERE high_points = "Sales (17)"
CREATE TABLE table_18904831_5 (high_rebounds VARCHAR, high_points VARCHAR)
Who did the most high rebounds in the game where Sales (17) did the high points?
SELECT total_footage_remaining_from_missing_episodes__mm AS :ss_ FROM table_1889619_5 WHERE story_no = "018" AND source = "Private individual"
CREATE TABLE table_1889619_5 (total_footage_remaining_from_missing_episodes__mm VARCHAR, story_no VARCHAR, source VARCHAR)
When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)?
SELECT country_territory FROM table_1889619_5 WHERE story_no = "032" AND missing_episodes_with_recovered_footage = "Episode 4"
CREATE TABLE table_1889619_5 (country_territory VARCHAR, story_no VARCHAR, missing_episodes_with_recovered_footage VARCHAR)
When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory?
SELECT MIN(game) FROM table_18894744_5 WHERE record = "8-3"
CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR)
Name the least game for 8-3
SELECT opponent FROM table_18894744_5 WHERE record = "10-4"
CREATE TABLE table_18894744_5 (opponent VARCHAR, record VARCHAR)
Name the opponent for record 10-4
SELECT high_rebounds FROM table_18894744_5 WHERE record = "7-1"
CREATE TABLE table_18894744_5 (high_rebounds VARCHAR, record VARCHAR)
Name the high rebounds for record 7-1
SELECT game FROM table_18894744_5 WHERE date = "June 16"
CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)
Name the game for june 16
SELECT game FROM table_18894744_5 WHERE date = "June 7"
CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)
Name the game for june 7
SELECT high_rebounds FROM table_18894744_6 WHERE record = "19-6"
CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, record VARCHAR)
Who did the high rebounds in the game with a 19-6 record?
SELECT location_attendance FROM table_18894744_6 WHERE record = "13-5"
CREATE TABLE table_18894744_6 (location_attendance VARCHAR, record VARCHAR)
Where was the game with a 13-5 record played, and in front of how many people?
SELECT high_rebounds FROM table_18894744_6 WHERE high_points = "Douglas (28)"
CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, high_points VARCHAR)
Who did the high rebounds in the game where Douglas (28) did the high points?
SELECT record FROM table_18894744_6 WHERE date = "July 1"
CREATE TABLE table_18894744_6 (record VARCHAR, date VARCHAR)
What was the record on the game played on July 1?
SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = "17-6"
CREATE TABLE table_18894744_6 (opponent VARCHAR, record VARCHAR)
How many opponents was a game with a record 17-6 played against?
SELECT career FROM table_18914438_1 WHERE matches = 60
CREATE TABLE table_18914438_1 (career VARCHAR, matches VARCHAR)
What was the career duration of the bowler who played 60 matches?
SELECT best FROM table_18914438_1 WHERE maidens = 547 AND overs = "2755.1"
CREATE TABLE table_18914438_1 (best VARCHAR, maidens VARCHAR, overs VARCHAR)
What is the Best score if the Maidens is 547 and Overs is 2755.1?
SELECT overs FROM table_18914438_1 WHERE career = "1993-2007"
CREATE TABLE table_18914438_1 (overs VARCHAR, career VARCHAR)
What was the Overs score of the career played from 1993-2007?
SELECT best FROM table_18914438_1 WHERE career = "1971-1984"
CREATE TABLE table_18914438_1 (best VARCHAR, career VARCHAR)
What was the Best score during the game played from 1971-1984?
SELECT date FROM table_18904831_6 WHERE high_rebounds = "Dydek (11)"
CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)
When dydek (11) has the highest rebounds what is the date?
SELECT date FROM table_18904831_6 WHERE high_rebounds = "McWilliams-Franklin (8)"
CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)
When mcwilliams-franklin (8) has the highest rebounds what is the date?
SELECT high_points FROM table_18904831_6 WHERE high_rebounds = "Dydek (8)"
CREATE TABLE table_18904831_6 (high_points VARCHAR, high_rebounds VARCHAR)
When dydek (8) has the highest rebounds who has the highest amount of points?
SELECT location FROM table_18904831_6 WHERE score = "W 73-70"
CREATE TABLE table_18904831_6 (location VARCHAR, score VARCHAR)
When w 73-70 is the score what is the location?
SELECT score FROM table_18904831_7 WHERE record = "25-8"
CREATE TABLE table_18904831_7 (score VARCHAR, record VARCHAR)
What was the score in the game that had a record of 25-8?
SELECT MIN(game) FROM table_18904831_7 WHERE date = "August 20"
CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR)
What was # of the first game played on August 20?
SELECT COUNT(high_points) FROM table_18904831_7 WHERE location = "MCI Center"
CREATE TABLE table_18904831_7 (high_points VARCHAR, location VARCHAR)
What were the high points for the game played at the MCI Center?
SELECT location FROM table_18904831_7 WHERE record = "19-6"
CREATE TABLE table_18904831_7 (location VARCHAR, record VARCHAR)
Where was the game played that had a record of 19-6?
SELECT MAX(col__m_) FROM table_18946749_2 WHERE peak = "Barurumea Ridge"
CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)
What is the col (m) of the Barurumea Ridge peak?
SELECT MAX(elevation__m_) FROM table_18946749_2 WHERE peak = "Mount Wilhelm"
CREATE TABLE table_18946749_2 (elevation__m_ INTEGER, peak VARCHAR)
What is the elevation (m) of the Mount Wilhelm peak?
SELECT MIN(col__m_) FROM table_18946749_2 WHERE peak = "Bewani Mountains High Point"
CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)
What is the col (m) of the Bewani Mountains High Point peak?
SELECT island FROM table_18946749_1 WHERE peak = "Mount Wondiwoi"
CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
When mount wondiwoi is the peak what is the island?
SELECT island FROM table_18946749_1 WHERE peak = "Mount Gauttier"
CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
When mount gauttier is the peak what is the island?
SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = "Mount Kobowre"
CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR)
When mount kobowre is the peak what is the highest elevation in meters?
SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = "Mount Gauttier"
CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR)
When mount gauttier is the peak what is the highest prominence in meters?
SELECT country FROM table_18946749_1 WHERE col__m_ = 44
CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR)
When 44 is the col in meters what is the country?
SELECT release_date FROM table_1893815_1 WHERE album_number = "2nd"
CREATE TABLE table_1893815_1 (release_date VARCHAR, album_number VARCHAR)
Name the release date for album # 2nd
SELECT label FROM table_1893815_1 WHERE english_title = "Grown Up Overnight"
CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR)
Name the label for grown up overnight
SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = "情歌沒有告訴你"
CREATE TABLE table_1893815_1 (label VARCHAR, chinese__traditional_ VARCHAR)
Name the label for traditional chinese 情歌沒有告訴你
SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th"
CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)
Name the number of traditional chinese for album number 6th
SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = "美丽人生"
CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR)
Name the chinese traditional for 美丽人生
SELECT english_title FROM table_1893815_1 WHERE album_number = "2nd"
CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR)
Name the english title for album # 2nd
SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = "嬰幼兒配方乳粉2段基粉"
CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR)
How many samples were taken of 嬰幼兒配方乳粉2段基粉 ?
SELECT producer FROM table_18943444_1 WHERE product = "磊磊牌嬰幼兒配方乳粉"
CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)
What are the producers of 磊磊牌嬰幼兒配方乳粉 ?
SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = "蒙牛牌嬰幼兒配方乳粉"
CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR)
What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?
SELECT producer FROM table_18943444_1 WHERE product = "金必氏牌嬰幼兒配方乳粉"
CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)
Who is the producer of 金必氏牌嬰幼兒配方乳粉 ?
SELECT live_births_per_year FROM table_18950570_2 WHERE life_expectancy_females = "73.3"
CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, life_expectancy_females VARCHAR)
How many live births per year are there in the period where the life expectancy for females is 73.3?
SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year = "998 000"
CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, deaths_per_year VARCHAR)
How many births per year are there for the period with 998 000 deaths per year?
SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755
CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR)
What is the highest value for col(m) when prominence(m) is 3755?
SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = "North island"
CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR)
What is the highest value for col(m) at North Island?
SELECT MIN(elevation__m_) FROM table_18946749_4 WHERE peak = "Mount Taylor"
CREATE TABLE table_18946749_4 (elevation__m_ INTEGER, peak VARCHAR)
What is the lowest elevation(m) for the peak Mount Taylor?
SELECT COUNT(prominence__m_) FROM table_18946749_4 WHERE rank = 5
CREATE TABLE table_18946749_4 (prominence__m_ VARCHAR, rank VARCHAR)
How many values of prominence(m) occur at rank 5?
SELECT brazil_100_percentage__percent_of_the_population_ FROM table_18950570_4 WHERE age_group = "15-17"
CREATE TABLE table_18950570_4 (brazil_100_percentage__percent_of_the_population_ VARCHAR, age_group VARCHAR)
what ae all of the brazil 100% where the age group is 15-17?
SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = "11:8"
CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)
If the just ratio is 11:8 and the cents size is 560, what is the interval name?
SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = "84.46"
CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR)
If the just cents is 84.46, what is the just ratio?
SELECT interval_name FROM table_18955077_1 WHERE just__cents_ = "701.96"
CREATE TABLE table_18955077_1 (interval_name VARCHAR, just__cents_ VARCHAR)
If the just cents is 701.96, what is the interval name?
SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combined_statistical_area = "Kansas City-Overland Park-Kansas City, MO-KS CSA"
CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR)
Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa
SELECT _percentage_indian_american FROM table_18963843_1 WHERE asian_american_population__2010_ = 126965
CREATE TABLE table_18963843_1 (_percentage_indian_american VARCHAR, asian_american_population__2010_ VARCHAR)
Name the % indian american for asian population 126965
SELECT _percentage_asian_american FROM table_18963843_1 WHERE indian_american_population__2010_ = 23526
CREATE TABLE table_18963843_1 (_percentage_asian_american VARCHAR, indian_american_population__2010_ VARCHAR)
Name the % asian american for 23526
SELECT COUNT(population_density__per_km²_) FROM table_189598_7 WHERE name = "Buffalo Narrows"
CREATE TABLE table_189598_7 (population_density__per_km²_ VARCHAR, name VARCHAR)
When buffalo narrows is the name how many measurements of population density per kilometer squared are there?
SELECT land_area__km²_ FROM table_189598_7 WHERE population__2011_ = 1233
CREATE TABLE table_189598_7 (land_area__km²_ VARCHAR, population__2011_ VARCHAR)
When 1233 is the population of 2011 what is the land area in kilometers squared?
SELECT MAX(population__2011_) FROM table_189598_7 WHERE land_area__km²_ = "6.00"
CREATE TABLE table_189598_7 (population__2011_ INTEGER, land_area__km²_ VARCHAR)
When 6.00 is the land area in kilometers squared what is the highest population of 2011?
SELECT MIN(population__2011_) FROM table_189598_7 WHERE name = "Beauval"
CREATE TABLE table_189598_7 (population__2011_ INTEGER, name VARCHAR)
When beauval is the name what is the lowest population of 2011?
SELECT COUNT(population__2011_) FROM table_189598_7 WHERE change___percentage_ = "4.5"
CREATE TABLE table_189598_7 (population__2011_ VARCHAR, change___percentage_ VARCHAR)
When 4.5 is the percentage of change how many population counts were made for 2011?
SELECT name FROM table_189598_7 WHERE land_area__km²_ = "14.85"
CREATE TABLE table_189598_7 (name VARCHAR, land_area__km²_ VARCHAR)
When 14.85 kilometers squared is the land area what is the name?
SELECT state_and_district_of_columbia FROM table_18958648_1 WHERE overweight__incl_obese__adults = "60.0%"
CREATE TABLE table_18958648_1 (state_and_district_of_columbia VARCHAR, overweight__incl_obese__adults VARCHAR)
What is every state and District of Columbia with 60.0% overweight or obese adults?
SELECT overweight__incl_obese__adults FROM table_18958648_1 WHERE obesity_rank = 21
CREATE TABLE table_18958648_1 (overweight__incl_obese__adults VARCHAR, obesity_rank VARCHAR)
What are all percentages of overweight or obese adults for obesity rank of 21?
SELECT MIN(obesity_rank) FROM table_18958648_1 WHERE state_and_district_of_columbia = "Utah"
CREATE TABLE table_18958648_1 (obesity_rank INTEGER, state_and_district_of_columbia VARCHAR)
What is the least obesity rank for the state of Utah?
SELECT COUNT(state_and_district_of_columbia) FROM table_18958648_1 WHERE overweight__incl_obese__adults = "65.4%"
CREATE TABLE table_18958648_1 (state_and_district_of_columbia VARCHAR, overweight__incl_obese__adults VARCHAR)
How many states or District of Columbia have 65.4% overweight or obese adults?
SELECT overweight__incl_obese__adults FROM table_18958648_1 WHERE obese_children_and_adolescents = "12.4%"
CREATE TABLE table_18958648_1 (overweight__incl_obese__adults VARCHAR, obese_children_and_adolescents VARCHAR)
What is every percentage of overweight or obese adults when 12.4% of children and adolescents are obese?
SELECT director_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = "Gomorra"
CREATE TABLE table_18994724_1 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
Who directed the film Gomorra?
SELECT language_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = "Everlasting Moments"
CREATE TABLE table_18994724_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
What language was spoken in Everlasting Moments?
SELECT original_title FROM table_18994724_1 WHERE submitting_country = "Greece"
CREATE TABLE table_18994724_1 (original_title VARCHAR, submitting_country VARCHAR)
What is the original title of the film submitted by Greece?
SELECT director_s_ FROM table_18994724_1 WHERE film_title_used_in_nomination = "Nuits d'Arabie"
CREATE TABLE table_18994724_1 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
Who directed the film Nuits d'arabie?
SELECT population__2006_ FROM table_189893_1 WHERE mother_tongue = "Romanian"
CREATE TABLE table_189893_1 (population__2006_ VARCHAR, mother_tongue VARCHAR)
What is every value for population (2006) with a Romanian mother tongue?
SELECT MIN(population__2011_) FROM table_189893_1
CREATE TABLE table_189893_1 (population__2011_ INTEGER)
What is the lowest population(2011)?
SELECT MIN(population__2006_) FROM table_189893_1 WHERE percentage__2011_ = "1.06%"
CREATE TABLE table_189893_1 (population__2006_ INTEGER, percentage__2011_ VARCHAR)
What is the lowest population(2006) when there is a 1.06% in 2011?
SELECT COUNT(population__2011_) FROM table_189893_1 WHERE percentage__2006_ = "1.40%"
CREATE TABLE table_189893_1 (population__2011_ VARCHAR, percentage__2006_ VARCHAR)
How many values for population(2011) correspond to a 1.40% in 2006?