text
stringlengths
114
1.06k
### question: What song was used resulting in the bottom 3? ### answer: SELECT song_choice FROM table_26250176_1 WHERE result = "Bottom 3" ### context: CREATE TABLE table_26250176_1 (song_choice VARCHAR, result VARCHAR)
### question: What is the theme for Audition week? ### answer: SELECT theme FROM table_26250176_1 WHERE week__number = "Audition" ### context: CREATE TABLE table_26250176_1 (theme VARCHAR, week__number VARCHAR)
### question: What was the results for top 12? ### answer: SELECT result FROM table_26250176_1 WHERE week__number = "Top 12" ### context: CREATE TABLE table_26250176_1 (result VARCHAR, week__number VARCHAR)
### question: Who was the original artist for First Solo? ### answer: SELECT original_artist FROM table_26250176_1 WHERE theme = "First Solo" ### context: CREATE TABLE table_26250176_1 (original_artist VARCHAR, theme VARCHAR)
### question: Which episode is #4? ### answer: SELECT episode FROM table_26250218_1 WHERE order__number = "4" ### context: CREATE TABLE table_26250218_1 (episode VARCHAR, order__number VARCHAR)
### question: What is every year for joined with the Ravens nickname? ### answer: SELECT joined FROM table_262514_1 WHERE nickname = "Ravens" ### context: CREATE TABLE table_262514_1 (joined VARCHAR, nickname VARCHAR)
### question: What is every institution with a nickname of Ravens? ### answer: SELECT institution FROM table_262514_1 WHERE nickname = "Ravens" ### context: CREATE TABLE table_262514_1 (institution VARCHAR, nickname VARCHAR)
### question: how many revised hepburn when english is roman characters ### answer: SELECT revised_hepburn FROM table_26263954_1 WHERE english = "Roman characters" ### context: CREATE TABLE table_26263954_1 (revised_hepburn VARCHAR, english VARCHAR)
### question: when chiji is revised hepburn what are all the english ### answer: SELECT english FROM table_26263954_1 WHERE revised_hepburn = "chiji" ### context: CREATE TABLE table_26263954_1 (english VARCHAR, revised_hepburn VARCHAR)
### question: how many number of english when kunrei-shiki is otya ### answer: SELECT COUNT(english) FROM table_26263954_1 WHERE kunrei_shiki = "otya" ### context: CREATE TABLE table_26263954_1 (english VARCHAR, kunrei_shiki VARCHAR)
### question: how many kana spelling when english is mount fuji ### answer: SELECT kana_spelling FROM table_26263954_1 WHERE english = "Mount Fuji" ### context: CREATE TABLE table_26263954_1 (kana_spelling VARCHAR, english VARCHAR)
### question: when english is tea how many nihon-shiki ### answer: SELECT nihon_shiki FROM table_26263954_1 WHERE english = "tea" ### context: CREATE TABLE table_26263954_1 (nihon_shiki VARCHAR, english VARCHAR)
### question: What was the original airdate of the episode with production number 2x03? ### answer: SELECT original_airdate FROM table_26293875_3 WHERE prod_no = "2x03" ### context: CREATE TABLE table_26293875_3 (original_airdate VARCHAR, prod_no VARCHAR)
### question: How many episodes had production number 2x13? ### answer: SELECT COUNT(season__number) FROM table_26293875_3 WHERE prod_no = "2x13" ### context: CREATE TABLE table_26293875_3 (season__number VARCHAR, prod_no VARCHAR)
### question: How many different kickoffs happened when the oppenent was at Rhein Fire? ### answer: SELECT COUNT(kickoff) FROM table_26275503_2 WHERE opponent = "at Rhein Fire" ### context: CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR)
### question: How many different kickoffs happened when the opponent was the Scottish Claymores ### answer: SELECT COUNT(kickoff) FROM table_26275503_2 WHERE opponent = "Scottish Claymores" ### context: CREATE TABLE table_26275503_2 (kickoff VARCHAR, opponent VARCHAR)
### question: What is the lowest enrollment for Eastern Michigan University? ### answer: SELECT MIN(enrollment) FROM table_26351260_1 WHERE institution = "Eastern Michigan University" ### context: CREATE TABLE table_26351260_1 (enrollment INTEGER, institution VARCHAR)
### question: What is Kent State University's team nickname? ### answer: SELECT team_nickname FROM table_26351260_1 WHERE institution = "Kent State University" ### context: CREATE TABLE table_26351260_1 (team_nickname VARCHAR, institution VARCHAR)
### question: How many Kent State University's are there? ### answer: SELECT COUNT(location) FROM table_26351260_1 WHERE institution = "Kent State University" ### context: CREATE TABLE table_26351260_1 (location VARCHAR, institution VARCHAR)
### question: How many school teams are nicknamed "Bulldogs". ### answer: SELECT location FROM table_26351260_1 WHERE team_nickname = "Bulldogs" ### context: CREATE TABLE table_26351260_1 (location VARCHAR, team_nickname VARCHAR)
### question: If the public is 4, what is the total? ### answer: SELECT total FROM table_26375386_17 WHERE public = 4 ### context: CREATE TABLE table_26375386_17 (total VARCHAR, public VARCHAR)
### question: How many results where given for the vote percentage 3.1%? ### answer: SELECT COUNT(result) FROM table_26375386_17 WHERE vote_percentage = "3.1%" ### context: CREATE TABLE table_26375386_17 (result VARCHAR, vote_percentage VARCHAR)
### question: What couple had a vote percentage of 5.2%? ### answer: SELECT couple FROM table_26375386_17 WHERE vote_percentage = "5.2%" ### context: CREATE TABLE table_26375386_17 (couple VARCHAR, vote_percentage VARCHAR)
### question: What was the vote % of Heather and Matt? ### answer: SELECT vote_percentage FROM table_26375386_18 WHERE couple = "Heather and Matt" ### context: CREATE TABLE table_26375386_18 (vote_percentage VARCHAR, couple VARCHAR)
### question: Who was the couple on the bottom two? ### answer: SELECT couple FROM table_26375386_18 WHERE result = "Bottom two" ### context: CREATE TABLE table_26375386_18 (couple VARCHAR, result VARCHAR)
### question: WHat was the max public with danniella and matthew? ### answer: SELECT MAX(public) FROM table_26375386_18 WHERE couple = "Danniella and Matthew" ### context: CREATE TABLE table_26375386_18 (public INTEGER, couple VARCHAR)
### question: If the overall viewers were 1.83 millions, what was the overall market share? ### answer: SELECT market_share__overall_ FROM table_2639433_4 WHERE viewers__in_millions_overall_ = "1.83" ### context: CREATE TABLE table_2639433_4 (market_share__overall_ VARCHAR, viewers__in_millions_overall_ VARCHAR)
### question: If the episode was number 234, what was it's timeslot? ### answer: SELECT timeslot FROM table_2639433_4 WHERE episodes = 234 ### context: CREATE TABLE table_2639433_4 (timeslot VARCHAR, episodes VARCHAR)
### question: What episode came out in the year 2007? ### answer: SELECT episodes FROM table_2639433_4 WHERE year = 2007 ### context: CREATE TABLE table_2639433_4 (episodes VARCHAR, year VARCHAR)
### question: What was the timeslot for the episode in the year 2008? ### answer: SELECT timeslot FROM table_2639433_4 WHERE year = 2008 ### context: CREATE TABLE table_2639433_4 (timeslot VARCHAR, year VARCHAR)
### question: How many times was the viewer target group 0.63? ### answer: SELECT COUNT(market_share__target_group_14_49_) FROM table_2639433_4 WHERE viewers__in_millions_target_group_14_49_ = "0.63" ### context: CREATE TABLE table_2639433_4 (market_share__target_group_14_49_ VARCHAR, viewers__in_millions_target_group_14_49_ VARCHAR)
### question: Name the role for pick number 17 ### answer: SELECT role_s_ FROM table_26397277_3 WHERE pick__number = 17 ### context: CREATE TABLE table_26397277_3 (role_s_ VARCHAR, pick__number VARCHAR)
### question: Name the brand for pick number 15 ### answer: SELECT brand__to_ FROM table_26397277_3 WHERE pick__number = 15 ### context: CREATE TABLE table_26397277_3 (brand__to_ VARCHAR, pick__number VARCHAR)
### question: Name the employee real name for raw and superstar ### answer: SELECT employee__real_name_ FROM table_26397277_3 WHERE brand__from_ = "Raw" AND role_s_ = "Superstar" ### context: CREATE TABLE table_26397277_3 (employee__real_name_ VARCHAR, brand__from_ VARCHAR, role_s_ VARCHAR)
### question: What smallest amount in the weeks at peak column? ### answer: SELECT MIN(weeks_at_peak) FROM table_26399982_2 ### context: CREATE TABLE table_26399982_2 (weeks_at_peak INTEGER)
### question: In which series did Lecor Sports participate? ### answer: SELECT series FROM table_26400438_1 WHERE team = "Lecor Sports" ### context: CREATE TABLE table_26400438_1 (series VARCHAR, team VARCHAR)
### question: How many times did he hold 12 poles? ### answer: SELECT COUNT(f_laps) FROM table_26400438_1 WHERE poles = 12 ### context: CREATE TABLE table_26400438_1 (f_laps VARCHAR, poles VARCHAR)
### question: In how many races did he have 8 podium finishes? ### answer: SELECT COUNT(races) FROM table_26400438_1 WHERE podiums = 8 ### context: CREATE TABLE table_26400438_1 (races VARCHAR, podiums VARCHAR)
### question: how many seasons did he race in team Carlin? ### answer: SELECT COUNT(podiums) FROM table_26400438_1 WHERE team = "Carlin" ### context: CREATE TABLE table_26400438_1 (podiums VARCHAR, team VARCHAR)
### question: How many entries are in the ranking for jacqueline kohl? ### answer: SELECT COUNT(place) FROM table_26427332_17 WHERE contestant = "Jacqueline Kohl" ### context: CREATE TABLE table_26427332_17 (place VARCHAR, contestant VARCHAR)
### question: what measurement does the contestant from sindelfingen have? ### answer: SELECT measurements__in_cm_ FROM table_26427332_17 WHERE city = "Sindelfingen" ### context: CREATE TABLE table_26427332_17 (measurements__in_cm_ VARCHAR, city VARCHAR)
### question: for how many federal states is the city of lahnstein listed in the ranking? ### answer: SELECT COUNT(federal_state) FROM table_26427332_17 WHERE city = "Lahnstein" ### context: CREATE TABLE table_26427332_17 (federal_state VARCHAR, city VARCHAR)
### question: who are the participants from hanover? ### answer: SELECT contestant FROM table_26427332_17 WHERE city = "Hanover" ### context: CREATE TABLE table_26427332_17 (contestant VARCHAR, city VARCHAR)
### question: What is the highest numbred district that has brian w. thomas as an incumbent? ### answer: SELECT MAX(district) FROM table_26416704_2 WHERE incumbent = "Brian W. Thomas" ### context: CREATE TABLE table_26416704_2 (district INTEGER, incumbent VARCHAR)
### question: What was the status of the election featuring incumbent margaret kaiser? ### answer: SELECT status FROM table_26416704_2 WHERE incumbent = "Margaret Kaiser" ### context: CREATE TABLE table_26416704_2 (status VARCHAR, incumbent VARCHAR)
### question: How many episodes were directed by Arlene Sanford? ### answer: SELECT COUNT(written_by) FROM table_26429658_1 WHERE directed_by = "Arlene Sanford" ### context: CREATE TABLE table_26429658_1 (written_by VARCHAR, directed_by VARCHAR)
### question: What was the title of the episode with a production code of 2010? ### answer: SELECT title FROM table_26429658_1 WHERE production_code = 2010 ### context: CREATE TABLE table_26429658_1 (title VARCHAR, production_code VARCHAR)
### question: How many production codes had a US viewership of 4.43 million? ### answer: SELECT COUNT(production_code) FROM table_26429658_1 WHERE us_viewers__millions_ = "4.43" ### context: CREATE TABLE table_26429658_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
### question: How many times is the opponents in the final is beti sekulovski cindy watson? ### answer: SELECT COUNT(score) FROM table_26458137_2 WHERE opponents_in_the_final = "Beti Sekulovski Cindy Watson" ### context: CREATE TABLE table_26458137_2 (score VARCHAR, opponents_in_the_final VARCHAR)
### question: Who is the partner when the opponents in the final is stephanie dubois olga savchuk? ### answer: SELECT partner FROM table_26458137_2 WHERE opponents_in_the_final = "Stephanie Dubois Olga Savchuk" ### context: CREATE TABLE table_26458137_2 (partner VARCHAR, opponents_in_the_final VARCHAR)
### question: Which artist had a result of 4? ### answer: SELECT artist FROM table_26485957_1 WHERE result = "4" ### context: CREATE TABLE table_26485957_1 (artist VARCHAR, result VARCHAR)
### question: What is the minimum score given in judging panel points? ### answer: SELECT MIN(judging_panel_points) FROM table_26485957_1 ### context: CREATE TABLE table_26485957_1 (judging_panel_points INTEGER)
### question: For the game whose developer was Ailive, is it a Move-only release? ### answer: SELECT move_only FROM table_26538035_1 WHERE developer = "AiLive" ### context: CREATE TABLE table_26538035_1 (move_only VARCHAR, developer VARCHAR)
### question: How many titles/sources have a developer of Clover Studio? ### answer: SELECT COUNT(title_and_source) FROM table_26538035_1 WHERE developer = "Clover Studio" ### context: CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR)
### question: What is the title and source for the game developed by Hydravision Entertainment? ### answer: SELECT title_and_source FROM table_26538035_1 WHERE developer = "Hydravision Entertainment" ### context: CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR)
### question: What is the series # on airdate September 21, 2002? ### answer: SELECT series__number FROM table_2655016_9 WHERE original_air_date = "September 21, 2002" ### context: CREATE TABLE table_2655016_9 (series__number VARCHAR, original_air_date VARCHAR)
### question: what was the name of episode 5? ### answer: SELECT title FROM table_26565917_2 WHERE no_in_season = 5 ### context: CREATE TABLE table_26565917_2 (title VARCHAR, no_in_season VARCHAR)
### question: when did 14.55 people watch? ### answer: SELECT original_air_date FROM table_26565917_2 WHERE us_viewers__millions_ = "14.55" ### context: CREATE TABLE table_26565917_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
### question: What is the smallest top 10 figure? ### answer: SELECT MIN(top_10) FROM table_26609690_1 ### context: CREATE TABLE table_26609690_1 (top_10 INTEGER)
### question: What is the earliest year on the chart? ### answer: SELECT MIN(year) FROM table_26609690_1 ### context: CREATE TABLE table_26609690_1 (year INTEGER)
### question: Which team had $15,785 in winnings? ### answer: SELECT team_s_ FROM table_26609690_1 WHERE winnings = "$15,785" ### context: CREATE TABLE table_26609690_1 (team_s_ VARCHAR, winnings VARCHAR)
### question: How many positions are there for RB1 Motorsports? ### answer: SELECT COUNT(position) FROM table_26609690_1 WHERE team_s_ = "RB1 Motorsports" ### context: CREATE TABLE table_26609690_1 (position VARCHAR, team_s_ VARCHAR)
### question: What is the highest number of wins? ### answer: SELECT MAX(wins) FROM table_26609690_1 ### context: CREATE TABLE table_26609690_1 (wins INTEGER)
### question: Who is the captain of Cardiff City? ### answer: SELECT team AS captain FROM table_26593762_2 WHERE team = "Cardiff City" ### context: CREATE TABLE table_26593762_2 (team VARCHAR)
### question: Who is the captain of Neil Warnock's team? ### answer: SELECT team AS captain FROM table_26593762_2 WHERE manager = "Neil Warnock" ### context: CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR)
### question: Who is the captain of Dave Jones' team? ### answer: SELECT team AS captain FROM table_26593762_2 WHERE manager = "Dave Jones" ### context: CREATE TABLE table_26593762_2 (team VARCHAR, manager VARCHAR)
### question: Who is the chairman of Mark Robins team? ### answer: SELECT chairman FROM table_26593762_2 WHERE manager = "Mark Robins" ### context: CREATE TABLE table_26593762_2 (chairman VARCHAR, manager VARCHAR)
### question: Name the release date xbox 360 for sea wolf ### answer: SELECT release_date___xbox360__ FROM table_26631526_1 WHERE artist = "Sea Wolf" ### context: CREATE TABLE table_26631526_1 (release_date___xbox360__ VARCHAR, artist VARCHAR)
### question: What party was represented by incumbent Richard Coulter ? ### answer: SELECT party FROM table_2668243_20 WHERE incumbent = "Richard Coulter" ### context: CREATE TABLE table_2668243_20 (party VARCHAR, incumbent VARCHAR)
### question: What was the result for Henry Daniel's race? ### answer: SELECT result FROM table_2668243_8 WHERE incumbent = "Henry Daniel" ### context: CREATE TABLE table_2668243_8 (result VARCHAR, incumbent VARCHAR)
### question: When was Henry Daniel first elected? ### answer: SELECT first_elected FROM table_2668243_8 WHERE incumbent = "Henry Daniel" ### context: CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR)
### question: How many first elected years are provided for Thomas P. Moore? ### answer: SELECT COUNT(first_elected) FROM table_2668243_8 WHERE incumbent = "Thomas P. Moore" ### context: CREATE TABLE table_2668243_8 (first_elected VARCHAR, incumbent VARCHAR)
### question: What district is Joseph Lecompte in office in? ### answer: SELECT district FROM table_2668243_8 WHERE incumbent = "Joseph Lecompte" ### context: CREATE TABLE table_2668243_8 (district VARCHAR, incumbent VARCHAR)
### question: What party does joel r. poinsett represent? ### answer: SELECT party FROM table_2668264_22 WHERE incumbent = "Joel R. Poinsett" ### context: CREATE TABLE table_2668264_22 (party VARCHAR, incumbent VARCHAR)
### question: What was the first elected year that featured incumbent andrew r. govan? ### answer: SELECT first_elected FROM table_2668264_22 WHERE incumbent = "Andrew R. Govan" ### context: CREATE TABLE table_2668264_22 (first_elected VARCHAR, incumbent VARCHAR)
### question: In what district is the incumbent Charles Fisher? ### answer: SELECT district FROM table_2668336_17 WHERE incumbent = "Charles Fisher" ### context: CREATE TABLE table_2668336_17 (district VARCHAR, incumbent VARCHAR)
### question: First elected in 1807 1817 in what district? ### answer: SELECT district FROM table_2668336_17 WHERE first_elected = "1807 1817" ### context: CREATE TABLE table_2668336_17 (district VARCHAR, first_elected VARCHAR)
### question: The candidates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% is for what incumbent? ### answer: SELECT incumbent FROM table_2668336_17 WHERE candidates = "Charles Fisher (DR) 65.1% W. Jones (F) 34.9%" ### context: CREATE TABLE table_2668336_17 (incumbent VARCHAR, candidates VARCHAR)
### question: In district North Carolina 10, what are the candidates? ### answer: SELECT candidates FROM table_2668336_17 WHERE district = "North Carolina 10" ### context: CREATE TABLE table_2668336_17 (candidates VARCHAR, district VARCHAR)
### question: Candiates Charles Fisher (DR) 65.1% W. Jones (F) 34.9% had what result? ### answer: SELECT result FROM table_2668336_17 WHERE candidates = "Charles Fisher (DR) 65.1% W. Jones (F) 34.9%" ### context: CREATE TABLE table_2668336_17 (result VARCHAR, candidates VARCHAR)
### question: Who were the incumbent(s) in the election featuring john murray (dr) 50.4% george denison (dr) 49.6% with a result of a retired democratic-republican hold? ### answer: SELECT incumbent FROM table_2668336_19 WHERE candidates = "John Murray (DR) 50.4% George Denison (DR) 49.6%" AND result = "Retired Democratic-Republican hold" ### context: CREATE TABLE table_2668336_19 (incumbent VARCHAR, candidates VARCHAR, result VARCHAR)
### question: Who were the incumbent(s) when the result was a retired democratic-republican hold and the first elected representative was in 1816> ### answer: SELECT incumbent FROM table_2668336_19 WHERE result = "Retired Democratic-Republican hold" AND first_elected = "1816" ### context: CREATE TABLE table_2668336_19 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)
### question: Who were the candidates in the election where william wilson was the incumbent? ### answer: SELECT candidates FROM table_2668336_19 WHERE incumbent = "William Wilson" ### context: CREATE TABLE table_2668336_19 (candidates VARCHAR, incumbent VARCHAR)
### question: Name the result for pennsylvania 8 ### answer: SELECT result FROM table_2668352_14 WHERE district = "Pennsylvania 8" ### context: CREATE TABLE table_2668352_14 (result VARCHAR, district VARCHAR)
### question: Name the result for 1810 ### answer: SELECT result FROM table_2668352_14 WHERE first_elected = "1810" ### context: CREATE TABLE table_2668352_14 (result VARCHAR, first_elected VARCHAR)
### question: Name the district for hugh glasgow ### answer: SELECT district FROM table_2668352_14 WHERE incumbent = "Hugh Glasgow" ### context: CREATE TABLE table_2668352_14 (district VARCHAR, incumbent VARCHAR)
### question: Name the incumbent for lost re-election democratic-republican hold ### answer: SELECT incumbent FROM table_2668352_14 WHERE result = "Lost re-election Democratic-Republican hold" ### context: CREATE TABLE table_2668352_14 (incumbent VARCHAR, result VARCHAR)
### question: Name the district for first elected 1810 ### answer: SELECT district FROM table_2668352_14 WHERE first_elected = "1810" ### context: CREATE TABLE table_2668352_14 (district VARCHAR, first_elected VARCHAR)
### question: What party does James Pleasants belong to? ### answer: SELECT party FROM table_2668352_19 WHERE incumbent = "James Pleasants" ### context: CREATE TABLE table_2668352_19 (party VARCHAR, incumbent VARCHAR)
### question: When was William Kennedy first elected? ### answer: SELECT first_elected FROM table_2668374_11 WHERE incumbent = "William Kennedy" ### context: CREATE TABLE table_2668374_11 (first_elected VARCHAR, incumbent VARCHAR)
### question: what was the section where the winner is william hoge ### answer: SELECT district FROM table_2668378_13 WHERE incumbent = "William Hoge" ### context: CREATE TABLE table_2668378_13 (district VARCHAR, incumbent VARCHAR)
### question: who was running where the winner is daniel montgomery ### answer: SELECT candidates FROM table_2668378_13 WHERE incumbent = "Daniel Montgomery" ### context: CREATE TABLE table_2668378_13 (candidates VARCHAR, incumbent VARCHAR)
### question: who was running in the section pennsylvania 5 ### answer: SELECT candidates FROM table_2668378_13 WHERE district = "Pennsylvania 5" ### context: CREATE TABLE table_2668378_13 (candidates VARCHAR, district VARCHAR)
### question: Who was the incumbent in the district that first elected someone in 1807? ### answer: SELECT incumbent FROM table_2668378_18 WHERE first_elected = "1807" ### context: CREATE TABLE table_2668378_18 (incumbent VARCHAR, first_elected VARCHAR)
### question: When was someone first elected in the district with incumbent john smith? ### answer: SELECT first_elected FROM table_2668378_18 WHERE incumbent = "John Smith" ### context: CREATE TABLE table_2668378_18 (first_elected VARCHAR, incumbent VARCHAR)
### question: What party represents the district with incumbent matthew clay? ### answer: SELECT party FROM table_2668378_18 WHERE incumbent = "Matthew Clay" ### context: CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR)
### question: What party represents the district with john g. jackson? ### answer: SELECT party FROM table_2668378_18 WHERE incumbent = "John G. Jackson" ### context: CREATE TABLE table_2668378_18 (party VARCHAR, incumbent VARCHAR)
### question: How many times was the incumbent john dawson redistricted from the 15th district? ### answer: SELECT COUNT(candidates) FROM table_2668393_18 WHERE incumbent = "John Dawson Redistricted from the 15th district" ### context: CREATE TABLE table_2668393_18 (candidates VARCHAR, incumbent VARCHAR)
### question: What is the party for the candidates edwin gray (dr)? ### answer: SELECT party FROM table_2668393_18 WHERE candidates = "Edwin Gray (DR)" ### context: CREATE TABLE table_2668393_18 (party VARCHAR, candidates VARCHAR)
### question: What is the result in the virginia 11 district? ### answer: SELECT result FROM table_2668393_18 WHERE district = "Virginia 11" ### context: CREATE TABLE table_2668393_18 (result VARCHAR, district VARCHAR)