question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
When was the first election in the district whose incumbent is Ron Kind?
CREATE TABLE table_1341423_49 (first_elected INTEGER, incumbent VARCHAR)
{ "SQL_Query": "SELECT MIN(first_elected) FROM table_1341423_49 WHERE incumbent = \"Ron Kind\"" }
Name the first elected for texas 6 district
CREATE TABLE table_1341423_43 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_1341423_43 WHERE district = \"Texas 6\"" }
Name the incumbent for texas 22 district
CREATE TABLE table_1341423_43 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341423_43 WHERE district = \"Texas 22\"" }
How did the election in the Florida 14 district end?
CREATE TABLE table_1341423_9 (results VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT results FROM table_1341423_9 WHERE district = \"Florida 14\"" }
Who's the incumbent of Florida 12 district?
CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341423_9 WHERE district = \"Florida 12\"" }
Who is the incumbent of Florida 9?
CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341423_9 WHERE district = \"Florida 9\"" }
Who's the incumbent in Florida 6?
CREATE TABLE table_1341453_11 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341453_11 WHERE district = \"Florida 6\"" }
What party does Bill McCollum belong to?
CREATE TABLE table_1341453_11 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_11 WHERE incumbent = \"Bill McCollum\"" }
What are the results in the county with Peter Deutsch as a candidate?
CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT results FROM table_1341453_11 WHERE incumbent = \"Peter Deutsch\"" }
How did the election end for Robert Wexler?
CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT results FROM table_1341453_11 WHERE incumbent = \"Robert Wexler\"" }
What party was the winner in the district Maryland 6?
CREATE TABLE table_1341453_22 (party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_22 WHERE district = \"Maryland 6\"" }
Who run for office in district Maryland 3?
CREATE TABLE table_1341453_22 (candidates VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341453_22 WHERE district = \"Maryland 3\"" }
List the candidates in district Maryland 1 where the republican party won.
CREATE TABLE table_1341453_22 (candidates VARCHAR, party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341453_22 WHERE party = \"Republican\" AND district = \"Maryland 1\"" }
When did the elections take place in district Maryland 2?
CREATE TABLE table_1341453_22 (first_elected INTEGER, district VARCHAR)
{ "SQL_Query": "SELECT MIN(first_elected) FROM table_1341453_22 WHERE district = \"Maryland 2\"" }
What party is Frank Lobiondo a member of?
CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_32 WHERE incumbent = \"Frank LoBiondo\"" }
Who were the candidates in the district whose incumbent is Bill Pascrell?
CREATE TABLE table_1341453_32 (candidates VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341453_32 WHERE incumbent = \"Bill Pascrell\"" }
What is the party of the district incumbent Jim Saxton?
CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_32 WHERE incumbent = \"Jim Saxton\"" }
What party is John McHugh a member of?
CREATE TABLE table_1341453_34 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_34 WHERE incumbent = \"John McHugh\"" }
What's the party elected in the district that first elected in 1990?
CREATE TABLE table_1341453_34 (party VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_34 WHERE first_elected = \"1990\"" }
What's the first elected year of the district that Ed Towns is an incumbent of?
CREATE TABLE table_1341453_34 (first_elected VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_1341453_34 WHERE incumbent = \"Ed Towns\"" }
How many elections have resulted in retired democratic hold?
CREATE TABLE table_1341453_34 (party VARCHAR, results VARCHAR)
{ "SQL_Query": "SELECT COUNT(party) FROM table_1341453_34 WHERE results = \"Retired Democratic hold\"" }
What were the candidates in the district that first elected in 1980?
CREATE TABLE table_1341453_34 (candidates VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341453_34 WHERE first_elected = \"1980\"" }
When was Chaka Fattah first elected in the Pennsylvania 2 district?
CREATE TABLE table_1341453_40 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_1341453_40 WHERE district = \"Pennsylvania 2\"" }
How many incumbents were first elected in 1984?
CREATE TABLE table_1341453_40 (incumbent VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT COUNT(incumbent) FROM table_1341453_40 WHERE first_elected = \"1984\"" }
When was incumbent Bud Shuster first elected?
CREATE TABLE table_1341453_40 (first_elected VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_1341453_40 WHERE incumbent = \"Bud Shuster\"" }
How many candidates ran in the election where Mike Doyle was the incumbent?
CREATE TABLE table_1341453_40 (candidates VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT COUNT(candidates) FROM table_1341453_40 WHERE incumbent = \"Mike Doyle\"" }
Incumbent Tim Holden belonged to what party?
CREATE TABLE table_1341453_40 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_40 WHERE incumbent = \"Tim Holden\"" }
In what district was Tim Holden the incumbent?
CREATE TABLE table_1341453_40 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341453_40 WHERE incumbent = \"Tim Holden\"" }
Which incumbent was first elected in 1984?
CREATE TABLE table_1341453_44 (incumbent VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341453_44 WHERE first_elected = 1984" }
When was the incumbent in the Tennessee 4 district first elected?
CREATE TABLE table_1341453_44 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_1341453_44 WHERE district = \"Tennessee 4\"" }
Who are the candidates in the Tennessee 3 district election?
CREATE TABLE table_1341453_44 (candidates VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341453_44 WHERE district = \"Tennessee 3\"" }
What year was Bob Clement first elected?
CREATE TABLE table_1341453_44 (first_elected INTEGER, incumbent VARCHAR)
{ "SQL_Query": "SELECT MIN(first_elected) FROM table_1341453_44 WHERE incumbent = \"Bob Clement\"" }
List all the candidates for the seat where the incumbent is Sam Gibbons?
CREATE TABLE table_1341472_11 (candidates VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341472_11 WHERE incumbent = \"Sam Gibbons\"" }
Who were the candidates in district Wisconsin 4?
CREATE TABLE table_1341453_51 (candidates VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341453_51 WHERE district = \"Wisconsin 4\"" }
Who's the incumbent in the district that first elected in 1969?
CREATE TABLE table_1341453_51 (incumbent VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341453_51 WHERE first_elected = 1969" }
Who's the incumbent of district Wisconsin 5?
CREATE TABLE table_1341453_51 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341453_51 WHERE district = \"Wisconsin 5\"" }
How many districts does gary condit represent?
CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT COUNT(district) FROM table_1341453_7 WHERE incumbent = \"Gary Condit\"" }
What party was first elected in 1974?
CREATE TABLE table_1341453_7 (party VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341453_7 WHERE first_elected = 1974" }
What district is bill thomas from?
CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341453_7 WHERE incumbent = \"Bill Thomas\"" }
Who was the incumbent of district Georgia 2?
CREATE TABLE table_1341472_12 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341472_12 WHERE district = \"Georgia 2\"" }
What district is Mac Collins an incumbent in?
CREATE TABLE table_1341472_12 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341472_12 WHERE incumbent = \"Mac Collins\"" }
What's the first elected year of the district who's been the last one to do so?
CREATE TABLE table_1341472_12 (first_elected INTEGER)
{ "SQL_Query": "SELECT MAX(first_elected) FROM table_1341472_12" }
Who were the candidates in the district where Charlie Norwood is the incumbent?
CREATE TABLE table_1341472_12 (candidates VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341472_12 WHERE incumbent = \"Charlie Norwood\"" }
Which result did the Republican have with the incumbent, Billy Tauzin?
CREATE TABLE table_1341472_20 (result VARCHAR, party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_1341472_20 WHERE party = \"Republican\" AND incumbent = \"Billy Tauzin\"" }
How many districts was Robert Livingston incumbent in?
CREATE TABLE table_1341472_20 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT COUNT(district) FROM table_1341472_20 WHERE incumbent = \"Robert Livingston\"" }
What is the first election year listed?
CREATE TABLE table_1341472_20 (first_elected INTEGER)
{ "SQL_Query": "SELECT MIN(first_elected) FROM table_1341472_20" }
List all results in elections with Richard Baker as the incumbent.
CREATE TABLE table_1341472_20 (result VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_1341472_20 WHERE incumbent = \"Richard Baker\"" }
how many party with district being washington 7
CREATE TABLE table_1341472_49 (party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(party) FROM table_1341472_49 WHERE district = \"Washington 7\"" }
what's the latest first elected year
CREATE TABLE table_1341472_49 (first_elected INTEGER)
{ "SQL_Query": "SELECT MAX(first_elected) FROM table_1341472_49" }
what's the result with district being washington 7
CREATE TABLE table_1341472_49 (result VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT result FROM table_1341472_49 WHERE district = \"Washington 7\"" }
what being the minimum first elected with district being washington 7
CREATE TABLE table_1341472_49 (first_elected INTEGER, district VARCHAR)
{ "SQL_Query": "SELECT MIN(first_elected) FROM table_1341472_49 WHERE district = \"Washington 7\"" }
what's the result for first elected in 1948 , 1964
CREATE TABLE table_1341472_15 (result VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT result FROM table_1341472_15 WHERE first_elected = \"1948 , 1964\"" }
what's the first elected with district illinois 18
CREATE TABLE table_1341472_15 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_1341472_15 WHERE district = \"Illinois 18\"" }
what's the party with candidates  jerry weller (r) 51.77% clem balanoff (d) 48.23%
CREATE TABLE table_1341472_15 (party VARCHAR, candidates VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341472_15 WHERE candidates = \"Jerry Weller (R) 51.77% Clem Balanoff (D) 48.23%\"" }
what's the party for the first elected in 1980
CREATE TABLE table_1341472_15 (party VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341472_15 WHERE first_elected = \"1980\"" }
what's the result with district illinois 15
CREATE TABLE table_1341472_15 (result VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT result FROM table_1341472_15 WHERE district = \"Illinois 15\"" }
what's the total number of candidates for first elected in 1948 , 1964
CREATE TABLE table_1341472_15 (candidates VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT COUNT(candidates) FROM table_1341472_15 WHERE first_elected = \"1948 , 1964\"" }
Name thedistrict for 1994
CREATE TABLE table_1341472_34 (district VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341472_34 WHERE first_elected = 1994" }
Name the result for New York 11
CREATE TABLE table_1341472_34 (result VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT result FROM table_1341472_34 WHERE district = \"New York 11\"" }
Name the number of first elected for new york 11
CREATE TABLE table_1341472_34 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(first_elected) FROM table_1341472_34 WHERE district = \"New York 11\"" }
Name the first elected for new york 1
CREATE TABLE table_1341472_34 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(first_elected) FROM table_1341472_34 WHERE district = \"New York 1\"" }
What year was Larry combest elected
CREATE TABLE table_1341472_45 (first_elected VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT first_elected FROM table_1341472_45 WHERE incumbent = \"Larry Combest\"" }
To what district does Bill Hefner belong?
CREATE TABLE table_1341522_36 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341522_36 WHERE incumbent = \"Bill Hefner\"" }
Who ran unsuccessfully against Bill Hefner?
CREATE TABLE table_1341522_36 (opponent VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_1341522_36 WHERE incumbent = \"Bill Hefner\"" }
How many districts are respresented by Alex McMillan?
CREATE TABLE table_1341522_36 (status VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT COUNT(status) FROM table_1341522_36 WHERE incumbent = \"Alex McMillan\"" }
What party is Sanford Bishop a member of?
CREATE TABLE table_1341522_13 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341522_13 WHERE incumbent = \"Sanford Bishop\"" }
What party won in the district Georgia7?
CREATE TABLE table_1341522_13 (party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341522_13 WHERE district = \"Georgia7\"" }
What's Georgia5's first elected year?
CREATE TABLE table_1341522_13 (first_elected INTEGER, district VARCHAR)
{ "SQL_Query": "SELECT MAX(first_elected) FROM table_1341522_13 WHERE district = \"Georgia5\"" }
Who opposed Marty Meehan in each election?
CREATE TABLE table_1341522_24 (opponent VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_1341522_24 WHERE incumbent = \"Marty Meehan\"" }
Who are the opponents in Massachusetts5 district?
CREATE TABLE table_1341522_24 (opponent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_1341522_24 WHERE district = \"Massachusetts5\"" }
What parties are represented in Massachusetts4 district?
CREATE TABLE table_1341522_24 (party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341522_24 WHERE district = \"Massachusetts4\"" }
Who is the incumbent in district Massachusetts7?
CREATE TABLE table_1341522_24 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341522_24 WHERE district = \"Massachusetts7\"" }
how many first elected with district being new york2
CREATE TABLE table_1341549_33 (first_elected VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(first_elected) FROM table_1341549_33 WHERE district = \"New York2\"" }
how many district with candidates being eliot l. engel (d) 85.2% martin richman (r) 14.8%
CREATE TABLE table_1341549_33 (district VARCHAR, candidates VARCHAR)
{ "SQL_Query": "SELECT COUNT(district) FROM table_1341549_33 WHERE candidates = \"Eliot L. Engel (D) 85.2% Martin Richman (R) 14.8%\"" }
how many candidates with party being democratic and dbeingtrict being new york5
CREATE TABLE table_1341549_33 (candidates VARCHAR, party VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(candidates) FROM table_1341549_33 WHERE party = \"Democratic\" AND district = \"New York5\"" }
how many first elected with result being re-elected and incumbent being gary ackerman redistricted from the 7th district
CREATE TABLE table_1341549_33 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT COUNT(first_elected) FROM table_1341549_33 WHERE result = \"Re-elected\" AND incumbent = \"Gary Ackerman Redistricted from the 7th district\"" }
What party does ron klink represent?
CREATE TABLE table_1341522_41 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341522_41 WHERE incumbent = \"Ron Klink\"" }
Who was in the election that was for incumbent bud shuster's seat?
CREATE TABLE table_1341522_41 (opponent VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_1341522_41 WHERE incumbent = \"Bud Shuster\"" }
What district had someone first elected in 1982?
CREATE TABLE table_1341522_41 (district VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341522_41 WHERE first_elected = 1982" }
How many republican incumbents first elected in 1974?
CREATE TABLE table_1341522_41 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT COUNT(incumbent) FROM table_1341522_41 WHERE party = \"Republican\" AND first_elected = 1974" }
What was the result of the election where william f. goodling was the incumbent?
CREATE TABLE table_1341522_41 (status VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT status FROM table_1341522_41 WHERE incumbent = \"William F. Goodling\"" }
What party did incumbent Howard Coble belong to?
CREATE TABLE table_1341568_34 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341568_34 WHERE incumbent = \"Howard Coble\"" }
What party did incumbent Stephen L. Neal belong to?
CREATE TABLE table_1341568_34 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341568_34 WHERE incumbent = \"Stephen L. Neal\"" }
In how many districts was the democratic incumbent elected in 1974?
CREATE TABLE table_1341568_34 (district VARCHAR, party VARCHAR, elected VARCHAR)
{ "SQL_Query": "SELECT COUNT(district) FROM table_1341568_34 WHERE party = \"Democratic\" AND elected = 1974" }
What year was incumbent Martin Lancaster elected?
CREATE TABLE table_1341568_34 (elected INTEGER, incumbent VARCHAR)
{ "SQL_Query": "SELECT MIN(elected) FROM table_1341568_34 WHERE incumbent = \"Martin Lancaster\"" }
What are the locations where the year of election is 1980?
CREATE TABLE table_1341568_24 (district VARCHAR, elected VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341568_24 WHERE elected = 1980" }
What location is Vin Weber from?
CREATE TABLE table_1341568_24 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341568_24 WHERE incumbent = \"Vin Weber\"" }
What is Larry Combest's district?
CREATE TABLE table_1341568_44 (district VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341568_44 WHERE incumbent = \"Larry Combest\"" }
What is the status of incumbent Charles Stenholm?
CREATE TABLE table_1341568_44 (status VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT status FROM table_1341568_44 WHERE incumbent = \"Charles Stenholm\"" }
How many incumbents represent district California 34?
CREATE TABLE table_1341568_6 (incumbent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT COUNT(incumbent) FROM table_1341568_6 WHERE district = \"California 34\"" }
What is the elected status of the Democratic party in 1989?
CREATE TABLE table_1341568_6 (status VARCHAR, party VARCHAR, elected VARCHAR)
{ "SQL_Query": "SELECT status FROM table_1341568_6 WHERE party = \"Democratic\" AND elected = \"1989\"" }
Who are the opponents in district California 9?
CREATE TABLE table_1341568_6 (opponent VARCHAR, district VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_1341568_6 WHERE district = \"California 9\"" }
Who are the incumbents elected in 1974?
CREATE TABLE table_1341568_6 (incumbent VARCHAR, elected VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341568_6 WHERE elected = \"1974\"" }
Which incumbent was first elected in 1958?
CREATE TABLE table_1341577_36 (incumbent VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341577_36 WHERE first_elected = 1958" }
Who are all the candidates who ran in the district where Ralph Regula is the incumbent?
CREATE TABLE table_1341577_36 (candidates VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341577_36 WHERE incumbent = \"Ralph Regula\"" }
Which party does Del Latta belong to?
CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341577_36 WHERE incumbent = \"Del Latta\"" }
Which party does Tom Luken belong to?
CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT party FROM table_1341577_36 WHERE incumbent = \"Tom Luken\"" }
Who were all the candidates when incumbent was Tim Valentine?
CREATE TABLE table_1341577_34 (candidates VARCHAR, incumbent VARCHAR)
{ "SQL_Query": "SELECT candidates FROM table_1341577_34 WHERE incumbent = \"Tim Valentine\"" }
Name the incumbent for first elected 1958
CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1958" }
What is the district for 1952?
CREATE TABLE table_1341577_22 (district VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT district FROM table_1341577_22 WHERE first_elected = 1952" }