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