Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
33,100
<question>: What was the place and how many people attended the game on July 11? <context>: CREATE TABLE table_18813011_6 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_18813011_6 WHERE date = "July 11"
33,101
<question>: Who had the most assist and how many on July 26? <context>: CREATE TABLE table_18813011_6 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_18813011_6 WHERE date = "July 26"
33,102
<question>: Who had the high assist in the game where the record is 13-11? <context>: CREATE TABLE table_18813011_6 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_18813011_6 WHERE record = "13-11"
33,103
<question>: At what date did the 23rd manager vacate the position? <context>: CREATE TABLE table_18795125_6 (date_of_vacancy VARCHAR, position_in_table VARCHAR)
SELECT date_of_vacancy FROM table_18795125_6 WHERE position_in_table = "23rd"
33,104
<question>: What was the date of appointment for the manager that replaced Simon Davies? <context>: CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_18795125_6 WHERE outgoing_manager = "Simon Davies"
33,105
<question>: What was the date of appointment for the manager of the 23rd team? <context>: CREATE TABLE table_18795125_6 (date_of_appointment VARCHAR, position_in_table VARCHAR)
SELECT date_of_appointment FROM table_18795125_6 WHERE position_in_table = "23rd"
33,106
<question>: How many categories for, replaced by, exist when the outgoing manager is Alan Buckley? <context>: CREATE TABLE table_18795125_6 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT COUNT(replaced_by) FROM table_18795125_6 WHERE outgoing_manager = "Alan Buckley"
33,107
<question>: Which driver starts 3? <context>: CREATE TABLE table_18811741_15 (driver VARCHAR, starts VARCHAR)
SELECT driver FROM table_18811741_15 WHERE starts = 3
33,108
<question>: How many podiums for the driver with 18 stage wins? <context>: CREATE TABLE table_18811741_15 (podiums VARCHAR, stage_wins VARCHAR)
SELECT COUNT(podiums) FROM table_18811741_15 WHERE stage_wins = 18
33,109
<question>: What is the highest pos for a driver with 1 podium? <context>: CREATE TABLE table_18811741_15 (pos INTEGER, podiums VARCHAR)
SELECT MAX(pos) FROM table_18811741_15 WHERE podiums = 1
33,110
<question>: What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm? <context>: CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, weekly_schedule VARCHAR)
SELECT tv_network_s_ FROM table_18821196_1 WHERE weekly_schedule = "Monday to Thursday @ 11:00 pm"
33,111
<question>: What is every country with a TV network of AXN India? <context>: CREATE TABLE table_18821196_1 (country VARCHAR, tv_network_s_ VARCHAR)
SELECT country FROM table_18821196_1 WHERE tv_network_s_ = "AXN India"
33,112
<question>: What is every weekly schedule in the country of Norway? <context>: CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, country VARCHAR)
SELECT weekly_schedule FROM table_18821196_1 WHERE country = "Norway"
33,113
<question>: What is every TV network in Belgium? <context>: CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, country VARCHAR)
SELECT tv_network_s_ FROM table_18821196_1 WHERE country = "Belgium"
33,114
<question>: What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm? <context>: CREATE TABLE table_18821196_1 (status VARCHAR, weekly_schedule VARCHAR)
SELECT status FROM table_18821196_1 WHERE weekly_schedule = "Monday to Thursday @ 11:00 pm"
33,115
<question>: What is every weekly schedule of TV network Viasat 4? <context>: CREATE TABLE table_18821196_1 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR)
SELECT weekly_schedule FROM table_18821196_1 WHERE tv_network_s_ = "Viasat 4"
33,116
<question>: How much was the prize money for rwe-sporthalle, mülheim ? <context>: CREATE TABLE table_18828487_1 (prize_fund VARCHAR, venue VARCHAR)
SELECT prize_fund FROM table_18828487_1 WHERE venue = "RWE-Sporthalle, Mülheim"
33,117
<question>: In 2009, how many were runner-up? <context>: CREATE TABLE table_18828487_1 (runner_up VARCHAR, year VARCHAR)
SELECT COUNT(runner_up) FROM table_18828487_1 WHERE year = 2009
33,118
<question>: How much does the champion get for stadthalle dinslaken, dinslaken? <context>: CREATE TABLE table_18828487_1 (champion VARCHAR, venue VARCHAR)
SELECT champion FROM table_18828487_1 WHERE venue = "Stadthalle Dinslaken, Dinslaken"
33,119
<question>: When by80607002529af is the part number and september 2009 is the release date what is the l2 cache? <context>: CREATE TABLE table_18823880_10 (l2_cache VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR)
SELECT l2_cache FROM table_18823880_10 WHERE release_date = "September 2009" AND part_number_s_ = "BY80607002529AF"
33,120
<question>: When by80607002907ahbx80607i7720qm is the part number what is the socket? <context>: CREATE TABLE table_18823880_10 (socket VARCHAR, part_number_s_ VARCHAR)
SELECT socket FROM table_18823880_10 WHERE part_number_s_ = "BY80607002907AHBX80607I7720QM"
33,121
<question>: When slblw(b1) is the sspec number what is the mult.? <context>: CREATE TABLE table_18823880_10 (mult VARCHAR, sspec_number VARCHAR)
SELECT mult FROM table_18823880_10 WHERE sspec_number = "SLBLW(B1)"
33,122
<question>: When socketg1 is the socket what is the release price in dollars? <context>: CREATE TABLE table_18823880_10 (release_price___usd__ VARCHAR, socket VARCHAR)
SELECT release_price___usd__ FROM table_18823880_10 WHERE socket = "socketG1"
33,123
<question>: How many points did the opposing team score on Dec. 19, 1982? <context>: CREATE TABLE table_18847456_2 (opponents INTEGER, date VARCHAR)
SELECT MAX(opponents) FROM table_18847456_2 WHERE date = "Dec. 19"
33,124
<question>: How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0? <context>: CREATE TABLE table_18852984_2 (bills_originally_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR)
SELECT bills_originally_cosponsored FROM table_18852984_2 WHERE all_amendments_cosponsored = 0
33,125
<question>: How many bill cosponsored during those years where bills originally cosponsored is 113? <context>: CREATE TABLE table_18852984_2 (all_bills_cosponsored VARCHAR, bills_originally_cosponsored VARCHAR)
SELECT all_bills_cosponsored FROM table_18852984_2 WHERE bills_originally_cosponsored = 113
33,126
<question>: What is the greatest number of bills sponsored in any year? <context>: CREATE TABLE table_18852984_2 (all_bills_sponsored INTEGER)
SELECT MAX(all_bills_sponsored) FROM table_18852984_2
33,127
<question>: What is the lowest cr number? <context>: CREATE TABLE table_1886270_1 (cr_no INTEGER)
SELECT MIN(cr_no) FROM table_1886270_1
33,128
<question>: When 2/1939 is the withdrawn when was it built? <context>: CREATE TABLE table_1886270_1 (built VARCHAR, withdrawn VARCHAR)
SELECT built FROM table_1886270_1 WHERE withdrawn = "2/1939"
33,129
<question>: When river ness is the hr name what is the hr number? <context>: CREATE TABLE table_1886270_1 (hr_no VARCHAR, hr_name VARCHAR)
SELECT hr_no FROM table_1886270_1 WHERE hr_name = "River Ness"
33,130
<question>: When (river garry) is the hr name how many builts are there? <context>: CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)
SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "(River Garry)"
33,131
<question>: What is the highest cr number? <context>: CREATE TABLE table_1886270_1 (cr_no INTEGER)
SELECT MAX(cr_no) FROM table_1886270_1
33,132
<question>: When river ness is the hr name how many builts are there? <context>: CREATE TABLE table_1886270_1 (built VARCHAR, hr_name VARCHAR)
SELECT COUNT(built) FROM table_1886270_1 WHERE hr_name = "River Ness"
33,133
<question>: How many opponents are at Minnesota Vikings? <context>: CREATE TABLE table_18847736_2 (opponents INTEGER, opponent VARCHAR)
SELECT MAX(opponents) FROM table_18847736_2 WHERE opponent = "at Minnesota Vikings"
33,134
<question>: What is the date when the opponent is the New England Patriots? <context>: CREATE TABLE table_18847736_2 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_18847736_2 WHERE opponent = "New England Patriots"
33,135
<question>: How many dates do the dolphins have 6 points? <context>: CREATE TABLE table_18847736_2 (date VARCHAR, dolphins_points VARCHAR)
SELECT date FROM table_18847736_2 WHERE dolphins_points = 6
33,136
<question>: What country does robert allenby represent? <context>: CREATE TABLE table_18862490_2 (country VARCHAR, player VARCHAR)
SELECT country FROM table_18862490_2 WHERE player = "Robert Allenby"
33,137
<question>: What score to par won in 1998? <context>: CREATE TABLE table_18862490_2 (to_par VARCHAR, year VARCHAR)
SELECT to_par FROM table_18862490_2 WHERE year = 1998
33,138
<question>: What player(s) had the score of 64-70-67-69=270? <context>: CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)
SELECT player FROM table_18862490_2 WHERE score = 64 - 70 - 67 - 69 = 270
33,139
<question>: What players had teh score of 64-71-67-67=269? <context>: CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR)
SELECT player FROM table_18862490_2 WHERE score = 64 - 71 - 67 - 67 = 269
33,140
<question>: What is the first yar that someone won with a score of 68-66-68-71=273? <context>: CREATE TABLE table_18862490_2 (year INTEGER, score VARCHAR)
SELECT MIN(year) FROM table_18862490_2 WHERE score = 68 - 66 - 68 - 71 = 273
33,141
<question>: How many socialist have a lead of 12.6%? <context>: CREATE TABLE table_1886589_1 (socialist VARCHAR, lead VARCHAR)
SELECT COUNT(socialist) FROM table_1886589_1 WHERE lead = "12.6%"
33,142
<question>: What is the lowest SOL? <context>: CREATE TABLE table_1888157_1 (SOl INTEGER)
SELECT MIN(SOl) FROM table_1888157_1
33,143
<question>: What is the highest GA when GF is 39? <context>: CREATE TABLE table_1888157_1 (ga INTEGER, gf VARCHAR)
SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39
33,144
<question>: How many different records were there in the games that ended in w 70-66? <context>: CREATE TABLE table_18904831_5 (record VARCHAR, score VARCHAR)
SELECT COUNT(record) FROM table_18904831_5 WHERE score = "W 70-66"
33,145
<question>: What was the record of the game in which Dydek (10) did the most high rebounds? <context>: CREATE TABLE table_18904831_5 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_18904831_5 WHERE high_rebounds = "Dydek (10)"
33,146
<question>: Who did the most high rebounds in the game where Sales (17) did the high points? <context>: CREATE TABLE table_18904831_5 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_18904831_5 WHERE high_points = "Sales (17)"
33,147
<question>: When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)? <context>: CREATE TABLE table_1889619_5 (total_footage_remaining_from_missing_episodes__mm VARCHAR, story_no VARCHAR, source VARCHAR)
SELECT total_footage_remaining_from_missing_episodes__mm AS :ss_ FROM table_1889619_5 WHERE story_no = "018" AND source = "Private individual"
33,148
<question>: When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory? <context>: CREATE TABLE table_1889619_5 (country_territory VARCHAR, story_no VARCHAR, missing_episodes_with_recovered_footage VARCHAR)
SELECT country_territory FROM table_1889619_5 WHERE story_no = "032" AND missing_episodes_with_recovered_footage = "Episode 4"
33,149
<question>: Name the least game for 8-3 <context>: CREATE TABLE table_18894744_5 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_18894744_5 WHERE record = "8-3"
33,150
<question>: Name the opponent for record 10-4 <context>: CREATE TABLE table_18894744_5 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_18894744_5 WHERE record = "10-4"
33,151
<question>: Name the high rebounds for record 7-1 <context>: CREATE TABLE table_18894744_5 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_18894744_5 WHERE record = "7-1"
33,152
<question>: Name the game for june 16 <context>: CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)
SELECT game FROM table_18894744_5 WHERE date = "June 16"
33,153
<question>: Name the game for june 7 <context>: CREATE TABLE table_18894744_5 (game VARCHAR, date VARCHAR)
SELECT game FROM table_18894744_5 WHERE date = "June 7"
33,154
<question>: Who did the high rebounds in the game with a 19-6 record? <context>: CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_18894744_6 WHERE record = "19-6"
33,155
<question>: Where was the game with a 13-5 record played, and in front of how many people? <context>: CREATE TABLE table_18894744_6 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_18894744_6 WHERE record = "13-5"
33,156
<question>: Who did the high rebounds in the game where Douglas (28) did the high points? <context>: CREATE TABLE table_18894744_6 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_18894744_6 WHERE high_points = "Douglas (28)"
33,157
<question>: What was the record on the game played on July 1? <context>: CREATE TABLE table_18894744_6 (record VARCHAR, date VARCHAR)
SELECT record FROM table_18894744_6 WHERE date = "July 1"
33,158
<question>: How many opponents was a game with a record 17-6 played against? <context>: CREATE TABLE table_18894744_6 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(opponent) FROM table_18894744_6 WHERE record = "17-6"
33,159
<question>: What was the career duration of the bowler who played 60 matches? <context>: CREATE TABLE table_18914438_1 (career VARCHAR, matches VARCHAR)
SELECT career FROM table_18914438_1 WHERE matches = 60
33,160
<question>: What is the Best score if the Maidens is 547 and Overs is 2755.1? <context>: CREATE TABLE table_18914438_1 (best VARCHAR, maidens VARCHAR, overs VARCHAR)
SELECT best FROM table_18914438_1 WHERE maidens = 547 AND overs = "2755.1"
33,161
<question>: What was the Overs score of the career played from 1993-2007? <context>: CREATE TABLE table_18914438_1 (overs VARCHAR, career VARCHAR)
SELECT overs FROM table_18914438_1 WHERE career = "1993-2007"
33,162
<question>: What was the Best score during the game played from 1971-1984? <context>: CREATE TABLE table_18914438_1 (best VARCHAR, career VARCHAR)
SELECT best FROM table_18914438_1 WHERE career = "1971-1984"
33,163
<question>: When dydek (11) has the highest rebounds what is the date? <context>: CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_18904831_6 WHERE high_rebounds = "Dydek (11)"
33,164
<question>: When mcwilliams-franklin (8) has the highest rebounds what is the date? <context>: CREATE TABLE table_18904831_6 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_18904831_6 WHERE high_rebounds = "McWilliams-Franklin (8)"
33,165
<question>: When dydek (8) has the highest rebounds who has the highest amount of points? <context>: CREATE TABLE table_18904831_6 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_18904831_6 WHERE high_rebounds = "Dydek (8)"
33,166
<question>: When w 73-70 is the score what is the location? <context>: CREATE TABLE table_18904831_6 (location VARCHAR, score VARCHAR)
SELECT location FROM table_18904831_6 WHERE score = "W 73-70"
33,167
<question>: What was the score in the game that had a record of 25-8? <context>: CREATE TABLE table_18904831_7 (score VARCHAR, record VARCHAR)
SELECT score FROM table_18904831_7 WHERE record = "25-8"
33,168
<question>: What was # of the first game played on August 20? <context>: CREATE TABLE table_18904831_7 (game INTEGER, date VARCHAR)
SELECT MIN(game) FROM table_18904831_7 WHERE date = "August 20"
33,169
<question>: What were the high points for the game played at the MCI Center? <context>: CREATE TABLE table_18904831_7 (high_points VARCHAR, location VARCHAR)
SELECT COUNT(high_points) FROM table_18904831_7 WHERE location = "MCI Center"
33,170
<question>: Where was the game played that had a record of 19-6? <context>: CREATE TABLE table_18904831_7 (location VARCHAR, record VARCHAR)
SELECT location FROM table_18904831_7 WHERE record = "19-6"
33,171
<question>: What is the col (m) of the Barurumea Ridge peak? <context>: CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)
SELECT MAX(col__m_) FROM table_18946749_2 WHERE peak = "Barurumea Ridge"
33,172
<question>: What is the elevation (m) of the Mount Wilhelm peak? <context>: CREATE TABLE table_18946749_2 (elevation__m_ INTEGER, peak VARCHAR)
SELECT MAX(elevation__m_) FROM table_18946749_2 WHERE peak = "Mount Wilhelm"
33,173
<question>: What is the col (m) of the Bewani Mountains High Point peak? <context>: CREATE TABLE table_18946749_2 (col__m_ INTEGER, peak VARCHAR)
SELECT MIN(col__m_) FROM table_18946749_2 WHERE peak = "Bewani Mountains High Point"
33,174
<question>: When mount wondiwoi is the peak what is the island? <context>: CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
SELECT island FROM table_18946749_1 WHERE peak = "Mount Wondiwoi"
33,175
<question>: When mount gauttier is the peak what is the island? <context>: CREATE TABLE table_18946749_1 (island VARCHAR, peak VARCHAR)
SELECT island FROM table_18946749_1 WHERE peak = "Mount Gauttier"
33,176
<question>: When mount kobowre is the peak what is the highest elevation in meters? <context>: CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR)
SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = "Mount Kobowre"
33,177
<question>: When mount gauttier is the peak what is the highest prominence in meters? <context>: CREATE TABLE table_18946749_1 (prominence__m_ INTEGER, peak VARCHAR)
SELECT MAX(prominence__m_) FROM table_18946749_1 WHERE peak = "Mount Gauttier"
33,178
<question>: When 44 is the col in meters what is the country? <context>: CREATE TABLE table_18946749_1 (country VARCHAR, col__m_ VARCHAR)
SELECT country FROM table_18946749_1 WHERE col__m_ = 44
33,179
<question>: Name the release date for album # 2nd <context>: CREATE TABLE table_1893815_1 (release_date VARCHAR, album_number VARCHAR)
SELECT release_date FROM table_1893815_1 WHERE album_number = "2nd"
33,180
<question>: Name the label for grown up overnight <context>: CREATE TABLE table_1893815_1 (label VARCHAR, english_title VARCHAR)
SELECT label FROM table_1893815_1 WHERE english_title = "Grown Up Overnight"
33,181
<question>: Name the label for traditional chinese 情歌沒有告訴你 <context>: CREATE TABLE table_1893815_1 (label VARCHAR, chinese__traditional_ VARCHAR)
SELECT label FROM table_1893815_1 WHERE chinese__traditional_ = "情歌沒有告訴你"
33,182
<question>: Name the number of traditional chinese for album number 6th <context>: CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)
SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th"
33,183
<question>: Name the chinese traditional for 美丽人生 <context>: CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, chinese__simplified_ VARCHAR)
SELECT chinese__traditional_ FROM table_1893815_1 WHERE chinese__simplified_ = "美丽人生"
33,184
<question>: Name the english title for album # 2nd <context>: CREATE TABLE table_1893815_1 (english_title VARCHAR, album_number VARCHAR)
SELECT english_title FROM table_1893815_1 WHERE album_number = "2nd"
33,185
<question>: How many samples were taken of 嬰幼兒配方乳粉2段基粉 ? <context>: CREATE TABLE table_18943444_1 (samples_taken VARCHAR, product VARCHAR)
SELECT COUNT(samples_taken) FROM table_18943444_1 WHERE product = "嬰幼兒配方乳粉2段基粉"
33,186
<question>: What are the producers of 磊磊牌嬰幼兒配方乳粉 ? <context>: CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)
SELECT producer FROM table_18943444_1 WHERE product = "磊磊牌嬰幼兒配方乳粉"
33,187
<question>: What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ? <context>: CREATE TABLE table_18943444_1 (samples_taken INTEGER, product VARCHAR)
SELECT MIN(samples_taken) FROM table_18943444_1 WHERE product = "蒙牛牌嬰幼兒配方乳粉"
33,188
<question>: Who is the producer of 金必氏牌嬰幼兒配方乳粉 ? <context>: CREATE TABLE table_18943444_1 (producer VARCHAR, product VARCHAR)
SELECT producer FROM table_18943444_1 WHERE product = "金必氏牌嬰幼兒配方乳粉"
33,189
<question>: How many live births per year are there in the period where the life expectancy for females is 73.3? <context>: CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, life_expectancy_females VARCHAR)
SELECT live_births_per_year FROM table_18950570_2 WHERE life_expectancy_females = "73.3"
33,190
<question>: How many births per year are there for the period with 998 000 deaths per year? <context>: CREATE TABLE table_18950570_2 (live_births_per_year VARCHAR, deaths_per_year VARCHAR)
SELECT live_births_per_year FROM table_18950570_2 WHERE deaths_per_year = "998 000"
33,191
<question>: What is the highest value for col(m) when prominence(m) is 3755? <context>: CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR)
SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755
33,192
<question>: What is the highest value for col(m) at North Island? <context>: CREATE TABLE table_18946749_4 (col__m_ INTEGER, island VARCHAR)
SELECT MAX(col__m_) FROM table_18946749_4 WHERE island = "North island"
33,193
<question>: What is the lowest elevation(m) for the peak Mount Taylor? <context>: CREATE TABLE table_18946749_4 (elevation__m_ INTEGER, peak VARCHAR)
SELECT MIN(elevation__m_) FROM table_18946749_4 WHERE peak = "Mount Taylor"
33,194
<question>: How many values of prominence(m) occur at rank 5? <context>: CREATE TABLE table_18946749_4 (prominence__m_ VARCHAR, rank VARCHAR)
SELECT COUNT(prominence__m_) FROM table_18946749_4 WHERE rank = 5
33,195
<question>: what ae all of the brazil 100% where the age group is 15-17? <context>: CREATE TABLE table_18950570_4 (brazil_100_percentage__percent_of_the_population_ VARCHAR, age_group VARCHAR)
SELECT brazil_100_percentage__percent_of_the_population_ FROM table_18950570_4 WHERE age_group = "15-17"
33,196
<question>: If the just ratio is 11:8 and the cents size is 560, what is the interval name? <context>: CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)
SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = "11:8"
33,197
<question>: If the just cents is 84.46, what is the just ratio? <context>: CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR)
SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = "84.46"
33,198
<question>: If the just cents is 701.96, what is the interval name? <context>: CREATE TABLE table_18955077_1 (interval_name VARCHAR, just__cents_ VARCHAR)
SELECT interval_name FROM table_18955077_1 WHERE just__cents_ = "701.96"
33,199
<question>: Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa <context>: CREATE TABLE table_18963843_1 (asian_american_population__2010_ INTEGER, combined_statistical_area VARCHAR)
SELECT MAX(asian_american_population__2010_) FROM table_18963843_1 WHERE combined_statistical_area = "Kansas City-Overland Park-Kansas City, MO-KS CSA"