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