combined_text
stringlengths
106
1.05k
###question:What are the slovenian names of the villages that had 65.9% of slovenes in 1951?###answer:SELECT village__slovenian_ FROM table_10797463_1 WHERE percent_of_slovenes_1951 = "65.9%"###context:CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, percent_of_slovenes_1951 VARCHAR)
###question:What are the slovenian names of the villages that had 16.7% of slovenes in 1991?###answer:SELECT village__slovenian_ FROM table_10797463_1 WHERE percent_of_slovenes_1991 = "16.7%"###context:CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, percent_of_slovenes_1991 VARCHAR)
###question:How many villages had 21.7% of slovenes in 1991?###answer:SELECT COUNT(village__german_) FROM table_10797463_1 WHERE percent_of_slovenes_1991 = "21.7%"###context:CREATE TABLE table_10797463_1 (village__german_ VARCHAR, percent_of_slovenes_1991 VARCHAR)
###question:what percent of slovenes did the village called čahorče in slovenian have in 1991?###answer:SELECT percent_of_slovenes_1991 FROM table_10797463_1 WHERE village__slovenian_ = "Čahorče"###context:CREATE TABLE table_10797463_1 (percent_of_slovenes_1991 VARCHAR, village__slovenian_ VARCHAR)
###question:What is the slovenian name for the village that in german is known as st.margarethen?###answer:SELECT village__slovenian_ FROM table_10797463_1 WHERE village__german_ = "St.Margarethen"###context:CREATE TABLE table_10797463_1 (village__slovenian_ VARCHAR, village__german_ VARCHAR)
###question:For games on December 20, how many points did the scoring leaders get?###answer:SELECT high_points FROM table_10812293_4 WHERE date = "December 20"###context:CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)
###question:Who was the scoring leader and how many points did he get in games on December 23?###answer:SELECT high_points FROM table_10812293_4 WHERE date = "December 23"###context:CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)
###question:What is the pick # for the position de?###answer:SELECT pick__number FROM table_10812938_3 WHERE position = "DE"###context:CREATE TABLE table_10812938_3 (pick__number VARCHAR, position VARCHAR)
###question:Which player went to college at Saint Mary's?###answer:SELECT player FROM table_10812938_3 WHERE college = "Saint Mary's"###context:CREATE TABLE table_10812938_3 (player VARCHAR, college VARCHAR)
###question:What is the position for the player with cfl team Winnipeg blue bombers?###answer:SELECT position FROM table_10812938_3 WHERE cfl_team = "Winnipeg Blue Bombers"###context:CREATE TABLE table_10812938_3 (position VARCHAR, cfl_team VARCHAR)
###question:Which player went to college at Laval?###answer:SELECT player FROM table_10812938_3 WHERE college = "Laval"###context:CREATE TABLE table_10812938_3 (player VARCHAR, college VARCHAR)
###question:What was the college for the player with the cfl team of Edmonton Eskimos (via calgary)?###answer:SELECT college FROM table_10812938_3 WHERE cfl_team = "Edmonton Eskimos (via Calgary)"###context:CREATE TABLE table_10812938_3 (college VARCHAR, cfl_team VARCHAR)
###question:What's the team of the player from St. Francis Xavier College?###answer:SELECT cfl_team FROM table_10812938_5 WHERE college = "St. Francis Xavier"###context:CREATE TABLE table_10812938_5 (cfl_team VARCHAR, college VARCHAR)
###question:What player is on the Montreal Alouettes CFl team?###answer:SELECT player FROM table_10812938_5 WHERE cfl_team = "Montreal Alouettes"###context:CREATE TABLE table_10812938_5 (player VARCHAR, cfl_team VARCHAR)
###question:What's the pick number of the player from Toronto Argonauts?###answer:SELECT MIN(pick__number) FROM table_10812938_5 WHERE cfl_team = "Toronto Argonauts"###context:CREATE TABLE table_10812938_5 (pick__number INTEGER, cfl_team VARCHAR)
###question:What's the pick number of the player whose position is CB?###answer:SELECT pick__number FROM table_10812938_5 WHERE position = "CB"###context:CREATE TABLE table_10812938_5 (pick__number VARCHAR, position VARCHAR)
###question:What's the pick number of the player from New Mexico?###answer:SELECT MAX(pick__number) FROM table_10812938_5 WHERE college = "New Mexico"###context:CREATE TABLE table_10812938_5 (pick__number INTEGER, college VARCHAR)
###question:What player went to Ohio State College?###answer:SELECT player FROM table_10812938_5 WHERE college = "Ohio State"###context:CREATE TABLE table_10812938_5 (player VARCHAR, college VARCHAR)
###question:What is the minimum introduced value for the Departmental region?###answer:SELECT MIN(introduced) FROM table_1081459_1 WHERE region = "Departmental"###context:CREATE TABLE table_1081459_1 (introduced INTEGER, region VARCHAR)
###question:What is the smallest introduced value?###answer:SELECT MIN(introduced) FROM table_1081459_1###context:CREATE TABLE table_1081459_1 (introduced INTEGER)
###question:Which CFL Teams drafted an OL in 2006?###answer:SELECT cfl_team FROM table_10812938_4 WHERE position = "OL"###context:CREATE TABLE table_10812938_4 (cfl_team VARCHAR, position VARCHAR)
###question:Which college is aligned to the Saskatchewan Roughriders?###answer:SELECT college FROM table_10812938_4 WHERE cfl_team = "Saskatchewan Roughriders"###context:CREATE TABLE table_10812938_4 (college VARCHAR, cfl_team VARCHAR)
###question:What Position did the Hamilton Tiger-Cats (via Ottawa) pick in the 2006 Draft.###answer:SELECT position FROM table_10812938_4 WHERE cfl_team = "Hamilton Tiger-Cats (via Ottawa)"###context:CREATE TABLE table_10812938_4 (position VARCHAR, cfl_team VARCHAR)
###question:What is the earliest pick listed in the table.###answer:SELECT MIN(pick__number) FROM table_10812938_4###context:CREATE TABLE table_10812938_4 (pick__number INTEGER)
###question:What episode number had production code e4423?###answer:SELECT MAX(no_in_season) FROM table_10842344_1 WHERE production_code = "E4423"###context:CREATE TABLE table_10842344_1 (no_in_season INTEGER, production_code VARCHAR)
###question:What's the latest episode in a season where the U.S. viewers totaled 14.37 million?###answer:SELECT MAX(no_in_season) FROM table_10842344_1 WHERE us_viewers__millions_ = "14.37"###context:CREATE TABLE table_10842344_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)
###question:What is the season finale for season 4?###answer:SELECT season AS finale FROM table_10819266_8 WHERE season = 4###context:CREATE TABLE table_10819266_8 (season VARCHAR)
###question:How many season premiers have a rank of #21?###answer:SELECT season AS premiere FROM table_10819266_8 WHERE rank = "#21"###context:CREATE TABLE table_10819266_8 (season VARCHAR, rank VARCHAR)
###question:What max processor has a maximum memory of 256 gb?###answer:SELECT max_processors FROM table_10818465_1 WHERE max_memory = "256 GB"###context:CREATE TABLE table_10818465_1 (max_processors VARCHAR, max_memory VARCHAR)
###question:What is the max memory of the t5120 model?###answer:SELECT max_memory FROM table_10818465_1 WHERE model = "T5120"###context:CREATE TABLE table_10818465_1 (max_memory VARCHAR, model VARCHAR)
###question:What is the lowest ru?###answer:SELECT MIN(ru) FROM table_10818465_1###context:CREATE TABLE table_10818465_1 (ru INTEGER)
###question:What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have?###answer:SELECT ga_date FROM table_10818465_1 WHERE processor_frequency = "1.0, 1.2, 1.4GHz"###context:CREATE TABLE table_10818465_1 (ga_date VARCHAR, processor_frequency VARCHAR)
###question:What is the ga date of the t5120 model?###answer:SELECT ga_date FROM table_10818465_1 WHERE model = "T5120"###context:CREATE TABLE table_10818465_1 (ga_date VARCHAR, model VARCHAR)
###question:What is the sport of the La Liga league?###answer:SELECT sport FROM table_10815352_1 WHERE league = "La Liga"###context:CREATE TABLE table_10815352_1 (sport VARCHAR, league VARCHAR)
###question:What's the minimum total attendance of the Premier League association football?###answer:SELECT MIN(total_attendance) FROM table_10815352_1 WHERE sport = "Association football" AND league = "Premier league"###context:CREATE TABLE table_10815352_1 (total_attendance INTEGER, sport VARCHAR, league VARCHAR)
###question:What's the average attendance of the leagues in the season of 2013?###answer:SELECT MIN(average_attendance) FROM table_10815352_1 WHERE season = "2013"###context:CREATE TABLE table_10815352_1 (average_attendance INTEGER, season VARCHAR)
###question:What's the total attendance of the leagues in season of 2010?###answer:SELECT COUNT(total_attendance) FROM table_10815352_1 WHERE season = "2010"###context:CREATE TABLE table_10815352_1 (total_attendance VARCHAR, season VARCHAR)
###question:Who were the directors of the film submitted with the title Young Törless?###answer:SELECT director FROM table_10874596_1 WHERE film_title_used_in_nomination = "Young Törless"###context:CREATE TABLE table_10874596_1 (director VARCHAR, film_title_used_in_nomination VARCHAR)
###question:What was the original title of the film submitted with the title A Woman in Flames?###answer:SELECT original_title FROM table_10874596_1 WHERE film_title_used_in_nomination = "A Woman in Flames"###context:CREATE TABLE table_10874596_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
###question:In what years was a film submitted with the title The Enigma of Kaspar Hauser?###answer:SELECT year_[e_] AS __ceremony_ FROM table_10874596_1 WHERE film_title_used_in_nomination = "The Enigma of Kaspar Hauser"###context:CREATE TABLE table_10874596_1 (year_ VARCHAR, e_ VARCHAR, film_title_used_in_nomination ...
###question:Who were the directors of the film with the original title o.k.?###answer:SELECT director FROM table_10874596_1 WHERE original_title = "o.k."###context:CREATE TABLE table_10874596_1 (director VARCHAR, original_title VARCHAR)
###question:What is the division for the division semifinals playoffs?###answer:SELECT division FROM table_1087659_2 WHERE playoffs = "division Semifinals"###context:CREATE TABLE table_1087659_2 (division VARCHAR, playoffs VARCHAR)
###question:What is the title written by David Mamet?###answer:SELECT title FROM table_10908676_7 WHERE written_by = "David Mamet"###context:CREATE TABLE table_10908676_7 (title VARCHAR, written_by VARCHAR)
###question:What was the finale for 潮爆大狀###answer:SELECT finale FROM table_10942714_1 WHERE chinese_title = "潮爆大狀"###context:CREATE TABLE table_10942714_1 (finale VARCHAR, chinese_title VARCHAR)
###question:How many viewers were there for the premier with 34###answer:SELECT hk_viewers FROM table_10942714_1 WHERE premiere = 34###context:CREATE TABLE table_10942714_1 (hk_viewers VARCHAR, premiere VARCHAR)
###question:How many are listed under 潮爆大狀###answer:SELECT COUNT(peak) FROM table_10942714_1 WHERE chinese_title = "潮爆大狀"###context:CREATE TABLE table_10942714_1 (peak VARCHAR, chinese_title VARCHAR)
###question:Who was the director of the episode with a production code of 2393059?###answer:SELECT director FROM table_10953197_2 WHERE production_code = "2393059"###context:CREATE TABLE table_10953197_2 (director VARCHAR, production_code VARCHAR)
###question:Which episode had 16.38 million U.S. viewers?###answer:SELECT title FROM table_10935548_1 WHERE us_viewers__millions_ = "16.38"###context:CREATE TABLE table_10935548_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
###question:What is the production code of the episode written by José Molina that aired on October 12, 2004?###answer:SELECT production_code FROM table_10935548_1 WHERE written_by = "José Molina" AND original_air_date = "October 12, 2004"###context:CREATE TABLE table_10935548_1 (production_code VARCHAR, written_by VAR...
###question:Which episode was directed by Jean de Segonzac?###answer:SELECT title FROM table_10935548_1 WHERE directed_by = "Jean de Segonzac"###context:CREATE TABLE table_10935548_1 (title VARCHAR, directed_by VARCHAR)
###question:what are the original air dates with a production code of 2394087###answer:SELECT original_air_date FROM table_10953197_3 WHERE production_code = "2394087"###context:CREATE TABLE table_10953197_3 (original_air_date VARCHAR, production_code VARCHAR)
###question:Who are the writer(s) for the production code 2394084###answer:SELECT writer_s_ FROM table_10953197_3 WHERE production_code = "2394084"###context:CREATE TABLE table_10953197_3 (writer_s_ VARCHAR, production_code VARCHAR)
###question:What's the total number of episodes with the production code 2395113A?###answer:SELECT COUNT(title) FROM table_10953197_4 WHERE production_code = "2395113A"###context:CREATE TABLE table_10953197_4 (title VARCHAR, production_code VARCHAR)
###question:Who's the writer for the episode with a production code 2395114?###answer:SELECT writer_s_ FROM table_10953197_4 WHERE production_code = "2395114"###context:CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR)
###question:What's the number of the episode with production code 2395118?###answer:SELECT no_in_season FROM table_10953197_4 WHERE production_code = "2395118"###context:CREATE TABLE table_10953197_4 (no_in_season VARCHAR, production_code VARCHAR)
###question:Who was the writer for the episode with production code 2395096?###answer:SELECT writer_s_ FROM table_10953197_4 WHERE production_code = "2395096"###context:CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR)
###question:How long is the orbital period for the planet that has a semimajor axis of 5.20 au?###answer:SELECT orbital_period FROM table_10932739_2 WHERE semimajor_axis___au__ = "5.20"###context:CREATE TABLE table_10932739_2 (orbital_period VARCHAR, semimajor_axis___au__ VARCHAR)
###question:Which planet has an orbital period of 11.86 years?###answer:SELECT planet FROM table_10932739_2 WHERE orbital_period = "11.86 years"###context:CREATE TABLE table_10932739_2 (planet VARCHAR, orbital_period VARCHAR)
###question:who directed the production code 2398204###answer:SELECT director FROM table_10953197_7 WHERE production_code = "2398204"###context:CREATE TABLE table_10953197_7 (director VARCHAR, production_code VARCHAR)
###question:What is player Alexis Bwenge's pick number?###answer:SELECT pick__number FROM table_10960039_1 WHERE player = "Alexis Bwenge"###context:CREATE TABLE table_10960039_1 (pick__number VARCHAR, player VARCHAR)
###question:What player is pick #2?###answer:SELECT player FROM table_10960039_1 WHERE pick__number = 2###context:CREATE TABLE table_10960039_1 (player VARCHAR, pick__number VARCHAR)
###question:Which player's college is Saskatchewan?###answer:SELECT player FROM table_10960039_1 WHERE college = "Saskatchewan"###context:CREATE TABLE table_10960039_1 (player VARCHAR, college VARCHAR)
###question:What is McMaster College's pick number?###answer:SELECT MIN(pick__number) FROM table_10960039_1 WHERE college = "McMaster"###context:CREATE TABLE table_10960039_1 (pick__number INTEGER, college VARCHAR)
###question:give the least number of times an episode was shown from 1997-1998###answer:SELECT MIN(no_in_season) FROM table_10953197_6###context:CREATE TABLE table_10953197_6 (no_in_season INTEGER)
###question:what is season 6 sum of both the number of times processing ID 2397162 was assigned and the number of times chip chalmers managed an episode ###answer:SELECT MAX(no_in_season) FROM table_10953197_6 WHERE director = "Chip Chalmers" AND production_code = "2397162"###context:CREATE TABLE table_10953197_6 (no_i...
###question:Which player went to Michigan State?###answer:SELECT player_name FROM table_10966926_2 WHERE college = "Michigan State"###context:CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)
###question:Which player went to college in Oklahoma?###answer:SELECT player_name FROM table_10966926_2 WHERE college = "Oklahoma"###context:CREATE TABLE table_10966926_2 (player_name VARCHAR, college VARCHAR)
###question:Which position does Colt Brennan play?###answer:SELECT position FROM table_10966926_2 WHERE player_name = "Colt Brennan"###context:CREATE TABLE table_10966926_2 (position VARCHAR, player_name VARCHAR)
###question:What is the height of the person that weighs 320 pounds?###answer:SELECT height FROM table_10966926_2 WHERE weight = 320###context:CREATE TABLE table_10966926_2 (height VARCHAR, weight VARCHAR)
###question:How many colleges have a DB position?###answer:SELECT COUNT(college) FROM table_10975034_4 WHERE position = "DB"###context:CREATE TABLE table_10975034_4 (college VARCHAR, position VARCHAR)
###question:What is the maximum number of picks for the CFL team Calgary Stampeders?###answer:SELECT MAX(pick__number) FROM table_10975034_4 WHERE cfl_team = "Calgary Stampeders"###context:CREATE TABLE table_10975034_4 (pick__number INTEGER, cfl_team VARCHAR)
###question:How many CFL teams are from York college?###answer:SELECT COUNT(cfl_team) FROM table_10975034_4 WHERE college = "York"###context:CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)
###question:What CFL teams are part of Simon Fraser college?###answer:SELECT cfl_team FROM table_10975034_4 WHERE college = "Simon Fraser"###context:CREATE TABLE table_10975034_4 (cfl_team VARCHAR, college VARCHAR)
###question:Which players have a pick number of 27?###answer:SELECT player FROM table_10975034_4 WHERE pick__number = 27###context:CREATE TABLE table_10975034_4 (player VARCHAR, pick__number VARCHAR)
###question:How many times were players named brett ralph were selected?###answer:SELECT COUNT(pick__number) FROM table_10960039_6 WHERE player = "Brett Ralph"###context:CREATE TABLE table_10960039_6 (pick__number VARCHAR, player VARCHAR)
###question:What schools did lenard semajuste play for?###answer:SELECT college FROM table_10960039_6 WHERE player = "Lenard Semajuste"###context:CREATE TABLE table_10960039_6 (college VARCHAR, player VARCHAR)
###question:What is the highest selection number for the saskatchewan roughriders team?###answer:SELECT MAX(pick__number) FROM table_10960039_6 WHERE cfl_team = "Saskatchewan Roughriders"###context:CREATE TABLE table_10960039_6 (pick__number INTEGER, cfl_team VARCHAR)
###question:How many fb players were drafted?###answer:SELECT COUNT(pick__number) FROM table_10960039_6 WHERE position = "FB"###context:CREATE TABLE table_10960039_6 (pick__number VARCHAR, position VARCHAR)
###question:How many players played for adams state school?###answer:SELECT COUNT(player) FROM table_10960039_6 WHERE college = "Adams State"###context:CREATE TABLE table_10960039_6 (player VARCHAR, college VARCHAR)
###question:What teams drafted players that played for northwood school?###answer:SELECT cfl_team FROM table_10960039_6 WHERE college = "Northwood"###context:CREATE TABLE table_10960039_6 (cfl_team VARCHAR, college VARCHAR)
###question:What college did Craig Zimmer go to?###answer:SELECT college FROM table_10975034_5 WHERE player = "Craig Zimmer"###context:CREATE TABLE table_10975034_5 (college VARCHAR, player VARCHAR)
###question:What is the pick number of regina?###answer:SELECT pick__number FROM table_10975034_5 WHERE college = "Regina"###context:CREATE TABLE table_10975034_5 (pick__number VARCHAR, college VARCHAR)
###question:What is the player who is lb and cfl team is saskatchewan roughriders?###answer:SELECT player FROM table_10975034_5 WHERE position = "LB" AND cfl_team = "Saskatchewan Roughriders"###context:CREATE TABLE table_10975034_5 (player VARCHAR, position VARCHAR, cfl_team VARCHAR)
###question:What is the cfl team that has a position of ol?###answer:SELECT cfl_team FROM table_10975034_5 WHERE position = "OL"###context:CREATE TABLE table_10975034_5 (cfl_team VARCHAR, position VARCHAR)
###question:What is the number of position where the pick number is 43?###answer:SELECT COUNT(position) FROM table_10975034_5 WHERE pick__number = 43###context:CREATE TABLE table_10975034_5 (position VARCHAR, pick__number VARCHAR)
###question:What is the cfl team with ryan folk?###answer:SELECT cfl_team FROM table_10975034_5 WHERE player = "Ryan Folk"###context:CREATE TABLE table_10975034_5 (cfl_team VARCHAR, player VARCHAR)
###question:What release date is when kids-270 is a reference? ###answer:SELECT release_date FROM table_10979230_5 WHERE reference = "KIDS-270"###context:CREATE TABLE table_10979230_5 (release_date VARCHAR, reference VARCHAR)
###question:what is the title where romaji is titles da.i.su.ki###answer:SELECT japanese_title FROM table_10979230_5 WHERE romaji_title = "Da.i.su.ki"###context:CREATE TABLE table_10979230_5 (japanese_title VARCHAR, romaji_title VARCHAR)
###question:what are the title in japanese where the reference is kids-430?###answer:SELECT japanese_title FROM table_10979230_5 WHERE reference = "KIDS-430"###context:CREATE TABLE table_10979230_5 (japanese_title VARCHAR, reference VARCHAR)
###question:who is the reference when romaji title is heartbreak sniper?###answer:SELECT reference FROM table_10979230_5 WHERE romaji_title = "Heartbreak Sniper"###context:CREATE TABLE table_10979230_5 (reference VARCHAR, romaji_title VARCHAR)
###question:What rank is 愛のバカ on the Japanese singles chart?###answer:SELECT COUNT(oricon) FROM table_10979230_4 WHERE japanese_title = "愛のバカ"###context:CREATE TABLE table_10979230_4 (oricon VARCHAR, japanese_title VARCHAR)
###question:How many songs have mi-chemin as their Japanese name and romanji name?###answer:SELECT COUNT(romaji_title) FROM table_10979230_4 WHERE japanese_title = "Mi-Chemin"###context:CREATE TABLE table_10979230_4 (romaji_title VARCHAR, japanese_title VARCHAR)
###question:What was the partial thromboplastin time for factor x deficiency as seen in amyloid purpura###answer:SELECT partial_thromboplastin_time FROM table_1099080_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura"###context:CREATE TABLE table_1099080_1 (partial_thromboplastin_time VARCHAR, condit...
###question:How many conditions have an unaffected prothrombin time and a prolonged bleeding time###answer:SELECT COUNT(condition) FROM table_1099080_1 WHERE prothrombin_time = "Unaffected" AND bleeding_time = "Prolonged"###context:CREATE TABLE table_1099080_1 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time...
###question:What was the bleeding time for the factor x deficiency as seen in amyloid purpura###answer:SELECT bleeding_time FROM table_1099080_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura"###context:CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, condition VARCHAR)
###question:What conditions had both prolonged bleeding times and prolonged partial thromboplastin times###answer:SELECT condition FROM table_1099080_1 WHERE partial_thromboplastin_time = "Prolonged" AND bleeding_time = "Prolonged"###context:CREATE TABLE table_1099080_1 (condition VARCHAR, partial_thromboplastin_time V...
###question:What was the bleeding time for factor xii deficiency###answer:SELECT bleeding_time FROM table_1099080_1 WHERE condition = "Factor XII deficiency"###context:CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, condition VARCHAR)
###question:What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected###answer:SELECT bleeding_time FROM table_1099080_1 WHERE partial_thromboplastin_time = "Unaffected" AND platelet_count = "Unaffected"###context:CREATE TABLE table_1099080_1 (bleeding_t...
###question:what's the tuesday time with location being millhopper###answer:SELECT tuesday FROM table_11019212_1 WHERE location = "Millhopper"###context:CREATE TABLE table_11019212_1 (tuesday VARCHAR, location VARCHAR)
###question:what's the wednesday time with monday being 10:00-8:00###answer:SELECT wednesday FROM table_11019212_1 WHERE monday = "10:00-8:00"###context:CREATE TABLE table_11019212_1 (wednesday VARCHAR, monday VARCHAR)