question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
what is the result where the candidates is robert l. f. sikes (d) unopposed?
CREATE TABLE table_1341672_10 (result VARCHAR, candidates VARCHAR)
SELECT result FROM table_1341672_10 WHERE candidates = "Robert L. F. Sikes (D) Unopposed"
### Context: CREATE TABLE table_1341672_10 (result VARCHAR, candidates VARCHAR) ### Question: what is the result where the candidates is robert l. f. sikes (d) unopposed? ### Answer: SELECT result FROM table_1341672_10 WHERE candidates = "Robert L. F. Sikes (D) Unopposed"
who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed?
CREATE TABLE table_1341672_10 (incumbent VARCHAR, candidates VARCHAR)
SELECT incumbent FROM table_1341672_10 WHERE candidates = "William V. Chappell, Jr. (D) Unopposed"
### Context: CREATE TABLE table_1341672_10 (incumbent VARCHAR, candidates VARCHAR) ### Question: who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed? ### Answer: SELECT incumbent FROM table_1341672_10 WHERE candidates = "William V. Chappell, Jr. (D) Unopposed"
what is the district where the incumbent is james a. haley?
CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341672_10 WHERE incumbent = "James A. Haley"
### Context: CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR) ### Question: what is the district where the incumbent is james a. haley? ### Answer: SELECT district FROM table_1341672_10 WHERE incumbent = "James A. Haley"
who are the candidates where the district is florida 8?
CREATE TABLE table_1341672_10 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341672_10 WHERE district = "Florida 8"
### Context: CREATE TABLE table_1341672_10 (candidates VARCHAR, district VARCHAR) ### Question: who are the candidates where the district is florida 8? ### Answer: SELECT candidates FROM table_1341672_10 WHERE district = "Florida 8"
what year was the first elected incumbant Sidney R. Yates?
CREATE TABLE table_1341690_13 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341690_13 WHERE incumbent = "Sidney R. Yates"
### Context: CREATE TABLE table_1341690_13 (first_elected VARCHAR, incumbent VARCHAR) ### Question: what year was the first elected incumbant Sidney R. Yates? ### Answer: SELECT first_elected FROM table_1341690_13 WHERE incumbent = "Sidney R. Yates"
How many incumbents are there in district Louisiana 5?
CREATE TABLE table_1341690_18 (incumbent VARCHAR, district VARCHAR)
SELECT COUNT(incumbent) FROM table_1341690_18 WHERE district = "Louisiana 5"
### Context: CREATE TABLE table_1341690_18 (incumbent VARCHAR, district VARCHAR) ### Question: How many incumbents are there in district Louisiana 5? ### Answer: SELECT COUNT(incumbent) FROM table_1341690_18 WHERE district = "Louisiana 5"
How many incumbents resulted in a lost renomination republican gain?
CREATE TABLE table_1341690_18 (incumbent VARCHAR, result VARCHAR)
SELECT COUNT(incumbent) FROM table_1341690_18 WHERE result = "Lost renomination Republican gain"
### Context: CREATE TABLE table_1341690_18 (incumbent VARCHAR, result VARCHAR) ### Question: How many incumbents resulted in a lost renomination republican gain? ### Answer: SELECT COUNT(incumbent) FROM table_1341690_18 WHERE result = "Lost renomination Republican gain"
In which district is the incumbent John Breaux?
CREATE TABLE table_1341690_18 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341690_18 WHERE incumbent = "John Breaux"
### Context: CREATE TABLE table_1341690_18 (district VARCHAR, incumbent VARCHAR) ### Question: In which district is the incumbent John Breaux? ### Answer: SELECT district FROM table_1341690_18 WHERE incumbent = "John Breaux"
What year was Otto Passman (d) unopposed first elected?
CREATE TABLE table_1341690_18 (first_elected INTEGER, candidates VARCHAR)
SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = "Otto Passman (D) Unopposed"
### Context: CREATE TABLE table_1341690_18 (first_elected INTEGER, candidates VARCHAR) ### Question: What year was Otto Passman (d) unopposed first elected? ### Answer: SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = "Otto Passman (D) Unopposed"
What were the results when the incumbent was John Breaux?
CREATE TABLE table_1341690_18 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341690_18 WHERE incumbent = "John Breaux"
### Context: CREATE TABLE table_1341690_18 (result VARCHAR, incumbent VARCHAR) ### Question: What were the results when the incumbent was John Breaux? ### Answer: SELECT result FROM table_1341690_18 WHERE incumbent = "John Breaux"
Name the candidates for texas 1
CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341690_43 WHERE district = "Texas 1"
### Context: CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR) ### Question: Name the candidates for texas 1 ### Answer: SELECT candidates FROM table_1341690_43 WHERE district = "Texas 1"
Name the incumbent for district texas 12
CREATE TABLE table_1341690_43 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341690_43 WHERE district = "Texas 12"
### Context: CREATE TABLE table_1341690_43 (incumbent VARCHAR, district VARCHAR) ### Question: Name the incumbent for district texas 12 ### Answer: SELECT incumbent FROM table_1341690_43 WHERE district = "Texas 12"
Name the candidates for texas 20
CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341690_43 WHERE district = "Texas 20"
### Context: CREATE TABLE table_1341690_43 (candidates VARCHAR, district VARCHAR) ### Question: Name the candidates for texas 20 ### Answer: SELECT candidates FROM table_1341690_43 WHERE district = "Texas 20"
what is the district with the candidates edward boland (d) unopposed?
CREATE TABLE table_1341690_21 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_1341690_21 WHERE candidates = "Edward Boland (D) Unopposed"
### Context: CREATE TABLE table_1341690_21 (district VARCHAR, candidates VARCHAR) ### Question: what is the district with the candidates edward boland (d) unopposed? ### Answer: SELECT district FROM table_1341690_21 WHERE candidates = "Edward Boland (D) Unopposed"
what is the party where the candidates are edward boland (d) unopposed?
CREATE TABLE table_1341690_21 (party VARCHAR, candidates VARCHAR)
SELECT party FROM table_1341690_21 WHERE candidates = "Edward Boland (D) Unopposed"
### Context: CREATE TABLE table_1341690_21 (party VARCHAR, candidates VARCHAR) ### Question: what is the party where the candidates are edward boland (d) unopposed? ### Answer: SELECT party FROM table_1341690_21 WHERE candidates = "Edward Boland (D) Unopposed"
what is the party where the incumbent is edward boland?
CREATE TABLE table_1341690_21 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341690_21 WHERE incumbent = "Edward Boland"
### Context: CREATE TABLE table_1341690_21 (party VARCHAR, incumbent VARCHAR) ### Question: what is the party where the incumbent is edward boland? ### Answer: SELECT party FROM table_1341690_21 WHERE incumbent = "Edward Boland"
How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%?
CREATE TABLE table_1341690_21 (incumbent VARCHAR, candidates VARCHAR)
SELECT COUNT(incumbent) FROM table_1341690_21 WHERE candidates = "Paul Tsongas (D) 60.6% Paul W. Cronin (R) 39.4%"
### Context: CREATE TABLE table_1341690_21 (incumbent VARCHAR, candidates VARCHAR) ### Question: How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%? ### Answer: SELECT COUNT(incumbent) FROM table_1341690_21 WHERE candidates = "Paul Tsongas (D) 60.6% Paul W. Cronin (R) 39.4%"
List all candidates in elections where the incumbent politician is Goodloe Byron.
CREATE TABLE table_1341690_20 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341690_20 WHERE incumbent = "Goodloe Byron"
### Context: CREATE TABLE table_1341690_20 (candidates VARCHAR, incumbent VARCHAR) ### Question: List all candidates in elections where the incumbent politician is Goodloe Byron. ### Answer: SELECT candidates FROM table_1341690_20 WHERE incumbent = "Goodloe Byron"
How many instances are there of party in the situation where Robert Bauman is the incumbent politician?
CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
### Context: CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR) ### Question: How many instances are there of party in the situation where Robert Bauman is the incumbent politician? ### Answer: SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
What is the party of the election in which Robert Bauman is the incumbent?
CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
### Context: CREATE TABLE table_1341690_20 (party VARCHAR, incumbent VARCHAR) ### Question: What is the party of the election in which Robert Bauman is the incumbent? ### Answer: SELECT party FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
List all results where the voting district is Maryland 7.
CREATE TABLE table_1341690_20 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341690_20 WHERE district = "Maryland 7"
### Context: CREATE TABLE table_1341690_20 (result VARCHAR, district VARCHAR) ### Question: List all results where the voting district is Maryland 7. ### Answer: SELECT result FROM table_1341690_20 WHERE district = "Maryland 7"
What are all the results where Robert Bauman is the incumbent politician?
CREATE TABLE table_1341690_20 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
### Context: CREATE TABLE table_1341690_20 (result VARCHAR, incumbent VARCHAR) ### Question: What are all the results where Robert Bauman is the incumbent politician? ### Answer: SELECT result FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
Who were the candidates in the district won by the incumbent Del Latta?
CREATE TABLE table_1341690_35 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341690_35 WHERE incumbent = "Del Latta"
### Context: CREATE TABLE table_1341690_35 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates in the district won by the incumbent Del Latta? ### Answer: SELECT candidates FROM table_1341690_35 WHERE incumbent = "Del Latta"
Who were the candidates in the districts that was first elected in 1966?
CREATE TABLE table_1341690_35 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341690_35 WHERE first_elected = 1966
### Context: CREATE TABLE table_1341690_35 (candidates VARCHAR, first_elected VARCHAR) ### Question: Who were the candidates in the districts that was first elected in 1966? ### Answer: SELECT candidates FROM table_1341690_35 WHERE first_elected = 1966
Who was running for office in the California 10 district?
CREATE TABLE table_1341690_5 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341690_5 WHERE district = "California 10"
### Context: CREATE TABLE table_1341690_5 (candidates VARCHAR, district VARCHAR) ### Question: Who was running for office in the California 10 district? ### Answer: SELECT candidates FROM table_1341690_5 WHERE district = "California 10"
How many parties won the election in the California 23 district?
CREATE TABLE table_1341690_5 (party VARCHAR, district VARCHAR)
SELECT COUNT(party) FROM table_1341690_5 WHERE district = "California 23"
### Context: CREATE TABLE table_1341690_5 (party VARCHAR, district VARCHAR) ### Question: How many parties won the election in the California 23 district? ### Answer: SELECT COUNT(party) FROM table_1341690_5 WHERE district = "California 23"
What republican candidate was first elected most recently?
CREATE TABLE table_1341690_5 (first_elected INTEGER, party VARCHAR)
SELECT MAX(first_elected) FROM table_1341690_5 WHERE party = "Republican"
### Context: CREATE TABLE table_1341690_5 (first_elected INTEGER, party VARCHAR) ### Question: What republican candidate was first elected most recently? ### Answer: SELECT MAX(first_elected) FROM table_1341690_5 WHERE party = "Republican"
Phillip Landrum was first elected in 1952 from the ninth district of Georgia.
CREATE TABLE table_1341707_12 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341707_12 WHERE first_elected = 1952
### Context: CREATE TABLE table_1341707_12 (district VARCHAR, first_elected VARCHAR) ### Question: Phillip Landrum was first elected in 1952 from the ninth district of Georgia. ### Answer: SELECT district FROM table_1341707_12 WHERE first_elected = 1952
What party did the incumbent from the Illinois 12 district belong to?
CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341707_15 WHERE district = "Illinois 12"
### Context: CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR) ### Question: What party did the incumbent from the Illinois 12 district belong to? ### Answer: SELECT party FROM table_1341707_15 WHERE district = "Illinois 12"
Who was the democratic incumbent in the Illinois 11 district who was re-elected?
CREATE TABLE table_1341707_15 (incumbent VARCHAR, district VARCHAR, party VARCHAR, result VARCHAR)
SELECT incumbent FROM table_1341707_15 WHERE party = "Democratic" AND result = "Re-elected" AND district = "Illinois 11"
### Context: CREATE TABLE table_1341707_15 (incumbent VARCHAR, district VARCHAR, party VARCHAR, result VARCHAR) ### Question: Who was the democratic incumbent in the Illinois 11 district who was re-elected? ### Answer: SELECT incumbent FROM table_1341707_15 WHERE party = "Democratic" AND result = "Re-elected" AND dist...
Which incumbent was first elected in 1964?
CREATE TABLE table_1341707_15 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341707_15 WHERE first_elected = "1964"
### Context: CREATE TABLE table_1341707_15 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Which incumbent was first elected in 1964? ### Answer: SELECT incumbent FROM table_1341707_15 WHERE first_elected = "1964"
What party did the incumbent from the Illinois 1 district belong to?
CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341707_15 WHERE district = "Illinois 1"
### Context: CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR) ### Question: What party did the incumbent from the Illinois 1 district belong to? ### Answer: SELECT party FROM table_1341707_15 WHERE district = "Illinois 1"
What candidates ran in the election with don fuqua?
CREATE TABLE table_1341690_9 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341690_9 WHERE incumbent = "Don Fuqua"
### Context: CREATE TABLE table_1341690_9 (candidates VARCHAR, incumbent VARCHAR) ### Question: What candidates ran in the election with don fuqua? ### Answer: SELECT candidates FROM table_1341690_9 WHERE incumbent = "Don Fuqua"
How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed?
CREATE TABLE table_1341690_9 (incumbent VARCHAR, candidates VARCHAR)
SELECT COUNT(incumbent) FROM table_1341690_9 WHERE candidates = "Sam M. Gibbons (D) Unopposed"
### Context: CREATE TABLE table_1341690_9 (incumbent VARCHAR, candidates VARCHAR) ### Question: How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed? ### Answer: SELECT COUNT(incumbent) FROM table_1341690_9 WHERE candidates = "Sam M. Gibbons (D) Unopposed"
What is the last year that someone is first elected?
CREATE TABLE table_1341690_9 (first_elected INTEGER)
SELECT MAX(first_elected) FROM table_1341690_9
### Context: CREATE TABLE table_1341690_9 (first_elected INTEGER) ### Question: What is the last year that someone is first elected? ### Answer: SELECT MAX(first_elected) FROM table_1341690_9
Who was the incumbent in 1940?
CREATE TABLE table_1341690_9 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341690_9 WHERE first_elected = 1940
### Context: CREATE TABLE table_1341690_9 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Who was the incumbent in 1940? ### Answer: SELECT incumbent FROM table_1341690_9 WHERE first_elected = 1940
what is the party when the incumbent is sidney r. yates?
CREATE TABLE table_1341718_14 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341718_14 WHERE incumbent = "Sidney R. Yates"
### Context: CREATE TABLE table_1341718_14 (party VARCHAR, incumbent VARCHAR) ### Question: what is the party when the incumbent is sidney r. yates? ### Answer: SELECT party FROM table_1341718_14 WHERE incumbent = "Sidney R. Yates"
what was the year first elected for district illinois 7?
CREATE TABLE table_1341718_14 (first_elected INTEGER, district VARCHAR)
SELECT MAX(first_elected) FROM table_1341718_14 WHERE district = "Illinois 7"
### Context: CREATE TABLE table_1341718_14 (first_elected INTEGER, district VARCHAR) ### Question: what was the year first elected for district illinois 7? ### Answer: SELECT MAX(first_elected) FROM table_1341718_14 WHERE district = "Illinois 7"
how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%?
CREATE TABLE table_1341718_14 (incumbent VARCHAR, candidates VARCHAR)
SELECT COUNT(incumbent) FROM table_1341718_14 WHERE candidates = "Phil Crane (R) 58.0% Edward A. Warman (D) 42.0%"
### Context: CREATE TABLE table_1341718_14 (incumbent VARCHAR, candidates VARCHAR) ### Question: how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%? ### Answer: SELECT COUNT(incumbent) FROM table_1341718_14 WHERE candidates = "Phil Crane (R) 58.0% Edward A. Warman (D) 42.0%"
how many times was it the district illinois 18?
CREATE TABLE table_1341718_14 (candidates VARCHAR, district VARCHAR)
SELECT COUNT(candidates) FROM table_1341718_14 WHERE district = "Illinois 18"
### Context: CREATE TABLE table_1341718_14 (candidates VARCHAR, district VARCHAR) ### Question: how many times was it the district illinois 18? ### Answer: SELECT COUNT(candidates) FROM table_1341718_14 WHERE district = "Illinois 18"
who were the candidates when the incumbent was ed derwinski?
CREATE TABLE table_1341718_14 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341718_14 WHERE incumbent = "Ed Derwinski"
### Context: CREATE TABLE table_1341718_14 (candidates VARCHAR, incumbent VARCHAR) ### Question: who were the candidates when the incumbent was ed derwinski? ### Answer: SELECT candidates FROM table_1341718_14 WHERE incumbent = "Ed Derwinski"
When was the first elected when the party was republican and the candidate were robert h. michel (r) 66.1% rosa lee fox (d) 33.9%?
CREATE TABLE table_1341718_14 (first_elected INTEGER, party VARCHAR, candidates VARCHAR)
SELECT MIN(first_elected) FROM table_1341718_14 WHERE party = "Republican" AND candidates = "Robert H. Michel (R) 66.1% Rosa Lee Fox (D) 33.9%"
### Context: CREATE TABLE table_1341718_14 (first_elected INTEGER, party VARCHAR, candidates VARCHAR) ### Question: When was the first elected when the party was republican and the candidate were robert h. michel (r) 66.1% rosa lee fox (d) 33.9%? ### Answer: SELECT MIN(first_elected) FROM table_1341718_14 WHERE party =...
Who is the incumbent in district Texas 15?
CREATE TABLE table_1341707_45 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341707_45 WHERE district = "Texas 15"
### Context: CREATE TABLE table_1341707_45 (incumbent VARCHAR, district VARCHAR) ### Question: Who is the incumbent in district Texas 15? ### Answer: SELECT incumbent FROM table_1341707_45 WHERE district = "Texas 15"
Which district elected incumbent Earle Cabell?
CREATE TABLE table_1341718_44 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341718_44 WHERE incumbent = "Earle Cabell"
### Context: CREATE TABLE table_1341718_44 (district VARCHAR, incumbent VARCHAR) ### Question: Which district elected incumbent Earle Cabell? ### Answer: SELECT district FROM table_1341718_44 WHERE incumbent = "Earle Cabell"
What was the result when Ray Roberts was elected?
CREATE TABLE table_1341718_44 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341718_44 WHERE incumbent = "Ray Roberts"
### Context: CREATE TABLE table_1341718_44 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result when Ray Roberts was elected? ### Answer: SELECT result FROM table_1341718_44 WHERE incumbent = "Ray Roberts"
What is the highest year that a candidate was first elected?
CREATE TABLE table_1341738_11 (first_elected INTEGER)
SELECT MAX(first_elected) FROM table_1341738_11
### Context: CREATE TABLE table_1341738_11 (first_elected INTEGER) ### Question: What is the highest year that a candidate was first elected? ### Answer: SELECT MAX(first_elected) FROM table_1341738_11
Incumbent Bill Harsha was the winner in an election in which the candidates were who?
CREATE TABLE table_1341718_36 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341718_36 WHERE incumbent = "Bill Harsha"
### Context: CREATE TABLE table_1341718_36 (candidates VARCHAR, incumbent VARCHAR) ### Question: Incumbent Bill Harsha was the winner in an election in which the candidates were who? ### Answer: SELECT candidates FROM table_1341718_36 WHERE incumbent = "Bill Harsha"
What was the party of the first elected candidate in 1954?
CREATE TABLE table_1341738_36 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_1341738_36 WHERE first_elected = 1954
### Context: CREATE TABLE table_1341738_36 (party VARCHAR, first_elected VARCHAR) ### Question: What was the party of the first elected candidate in 1954? ### Answer: SELECT party FROM table_1341738_36 WHERE first_elected = 1954
How many districts does Donald D. Clancy represent?
CREATE TABLE table_1341738_36 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1341738_36 WHERE incumbent = "Donald D. Clancy"
### Context: CREATE TABLE table_1341738_36 (district VARCHAR, incumbent VARCHAR) ### Question: How many districts does Donald D. Clancy represent? ### Answer: SELECT COUNT(district) FROM table_1341738_36 WHERE incumbent = "Donald D. Clancy"
Which party is Lawrence H. Fountain part of?
CREATE TABLE table_1341738_34 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341738_34 WHERE incumbent = "Lawrence H. Fountain"
### Context: CREATE TABLE table_1341738_34 (party VARCHAR, incumbent VARCHAR) ### Question: Which party is Lawrence H. Fountain part of? ### Answer: SELECT party FROM table_1341738_34 WHERE incumbent = "Lawrence H. Fountain"
Who was the first person elected in North Carolina 8?
CREATE TABLE table_1341738_34 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341738_34 WHERE district = "North Carolina 8"
### Context: CREATE TABLE table_1341738_34 (first_elected VARCHAR, district VARCHAR) ### Question: Who was the first person elected in North Carolina 8? ### Answer: SELECT first_elected FROM table_1341738_34 WHERE district = "North Carolina 8"
who was the candidate elected to the democratic party in 1952?
CREATE TABLE table_1341738_34 (candidates VARCHAR, first_elected VARCHAR, party VARCHAR)
SELECT candidates FROM table_1341738_34 WHERE first_elected = "1952" AND party = "Democratic"
### Context: CREATE TABLE table_1341738_34 (candidates VARCHAR, first_elected VARCHAR, party VARCHAR) ### Question: who was the candidate elected to the democratic party in 1952? ### Answer: SELECT candidates FROM table_1341738_34 WHERE first_elected = "1952" AND party = "Democratic"
What district did Joe Waggonner belong to?
CREATE TABLE table_1341738_19 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341738_19 WHERE incumbent = "Joe Waggonner"
### Context: CREATE TABLE table_1341738_19 (district VARCHAR, incumbent VARCHAR) ### Question: What district did Joe Waggonner belong to? ### Answer: SELECT district FROM table_1341738_19 WHERE incumbent = "Joe Waggonner"
What is the name of the incumbent who was first eleccted in 1940?
CREATE TABLE table_1341738_19 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341738_19 WHERE first_elected = 1940
### Context: CREATE TABLE table_1341738_19 (incumbent VARCHAR, first_elected VARCHAR) ### Question: What is the name of the incumbent who was first eleccted in 1940? ### Answer: SELECT incumbent FROM table_1341738_19 WHERE first_elected = 1940
What party does incumbent edwin reinecke represent?
CREATE TABLE table_1341738_6 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341738_6 WHERE incumbent = "Edwin Reinecke"
### Context: CREATE TABLE table_1341738_6 (party VARCHAR, incumbent VARCHAR) ### Question: What party does incumbent edwin reinecke represent? ### Answer: SELECT party FROM table_1341738_6 WHERE incumbent = "Edwin Reinecke"
Who were the candidates in the election that featured incumbent don edwards?
CREATE TABLE table_1341738_6 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341738_6 WHERE incumbent = "Don Edwards"
### Context: CREATE TABLE table_1341738_6 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates in the election that featured incumbent don edwards? ### Answer: SELECT candidates FROM table_1341738_6 WHERE incumbent = "Don Edwards"
Who's the incumbent of Indiana 4 district?
CREATE TABLE table_1341843_15 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341843_15 WHERE district = "Indiana 4"
### Context: CREATE TABLE table_1341843_15 (incumbent VARCHAR, district VARCHAR) ### Question: Who's the incumbent of Indiana 4 district? ### Answer: SELECT incumbent FROM table_1341843_15 WHERE district = "Indiana 4"
Who's the incumbent of the district with first election held in 1950?
CREATE TABLE table_1341843_15 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341843_15 WHERE first_elected = "1950"
### Context: CREATE TABLE table_1341843_15 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Who's the incumbent of the district with first election held in 1950? ### Answer: SELECT incumbent FROM table_1341843_15 WHERE first_elected = "1950"
Who was featured in the election of charles edward bennett redistricted from 2nd?
CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341843_10 WHERE incumbent = "Charles Edward Bennett Redistricted from 2nd"
### Context: CREATE TABLE table_1341843_10 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who was featured in the election of charles edward bennett redistricted from 2nd? ### Answer: SELECT candidates FROM table_1341843_10 WHERE incumbent = "Charles Edward Bennett Redistricted from 2nd"
Name the first elected for the republican party
CREATE TABLE table_1341865_23 (first_elected VARCHAR, party VARCHAR)
SELECT first_elected FROM table_1341865_23 WHERE party = "Republican"
### Context: CREATE TABLE table_1341865_23 (first_elected VARCHAR, party VARCHAR) ### Question: Name the first elected for the republican party ### Answer: SELECT first_elected FROM table_1341865_23 WHERE party = "Republican"
Name the district with philip philbin
CREATE TABLE table_1341865_23 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341865_23 WHERE incumbent = "Philip Philbin"
### Context: CREATE TABLE table_1341865_23 (district VARCHAR, incumbent VARCHAR) ### Question: Name the district with philip philbin ### Answer: SELECT district FROM table_1341865_23 WHERE incumbent = "Philip Philbin"
Name the party with edward boland
CREATE TABLE table_1341865_23 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341865_23 WHERE incumbent = "Edward Boland"
### Context: CREATE TABLE table_1341865_23 (party VARCHAR, incumbent VARCHAR) ### Question: Name the party with edward boland ### Answer: SELECT party FROM table_1341865_23 WHERE incumbent = "Edward Boland"
What was the district who had their first elected in 1966?
CREATE TABLE table_1341843_44 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341843_44 WHERE first_elected = 1966
### Context: CREATE TABLE table_1341843_44 (district VARCHAR, first_elected VARCHAR) ### Question: What was the district who had their first elected in 1966? ### Answer: SELECT district FROM table_1341843_44 WHERE first_elected = 1966
Who was the candidate when the incumbent was Richard C. White?
CREATE TABLE table_1341843_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341843_44 WHERE incumbent = "Richard C. White"
### Context: CREATE TABLE table_1341843_44 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who was the candidate when the incumbent was Richard C. White? ### Answer: SELECT candidates FROM table_1341843_44 WHERE incumbent = "Richard C. White"
What district did Donald Ray Matthews belong to?
CREATE TABLE table_1341865_11 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341865_11 WHERE incumbent = "Donald Ray Matthews"
### Context: CREATE TABLE table_1341865_11 (district VARCHAR, incumbent VARCHAR) ### Question: What district did Donald Ray Matthews belong to? ### Answer: SELECT district FROM table_1341865_11 WHERE incumbent = "Donald Ray Matthews"
What party did Don Fuqua belong to?
CREATE TABLE table_1341865_11 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341865_11 WHERE incumbent = "Don Fuqua"
### Context: CREATE TABLE table_1341865_11 (party VARCHAR, incumbent VARCHAR) ### Question: What party did Don Fuqua belong to? ### Answer: SELECT party FROM table_1341865_11 WHERE incumbent = "Don Fuqua"
How many parties won the election in the Louisiana 5 district?
CREATE TABLE table_1341865_20 (party VARCHAR, district VARCHAR)
SELECT COUNT(party) FROM table_1341865_20 WHERE district = "Louisiana 5"
### Context: CREATE TABLE table_1341865_20 (party VARCHAR, district VARCHAR) ### Question: How many parties won the election in the Louisiana 5 district? ### Answer: SELECT COUNT(party) FROM table_1341865_20 WHERE district = "Louisiana 5"
How many candidates were elected in the Louisiana 4 district?
CREATE TABLE table_1341865_20 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1341865_20 WHERE district = "Louisiana 4"
### Context: CREATE TABLE table_1341865_20 (first_elected VARCHAR, district VARCHAR) ### Question: How many candidates were elected in the Louisiana 4 district? ### Answer: SELECT COUNT(first_elected) FROM table_1341865_20 WHERE district = "Louisiana 4"
Who was the winner in the Louisiana 7 district?
CREATE TABLE table_1341865_20 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341865_20 WHERE district = "Louisiana 7"
### Context: CREATE TABLE table_1341865_20 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the winner in the Louisiana 7 district? ### Answer: SELECT incumbent FROM table_1341865_20 WHERE district = "Louisiana 7"
what's party with district being tennessee 3
CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341865_44 WHERE district = "Tennessee 3"
### Context: CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR) ### Question: what's party with district being tennessee 3 ### Answer: SELECT party FROM table_1341865_44 WHERE district = "Tennessee 3"
how many party with district being tennessee 1
CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR)
SELECT COUNT(party) FROM table_1341865_44 WHERE district = "Tennessee 1"
### Context: CREATE TABLE table_1341865_44 (party VARCHAR, district VARCHAR) ### Question: how many party with district being tennessee 1 ### Answer: SELECT COUNT(party) FROM table_1341865_44 WHERE district = "Tennessee 1"
how many incumbent with district  being tennessee 5
CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR)
SELECT COUNT(incumbent) FROM table_1341865_44 WHERE district = "Tennessee 5"
### Context: CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR) ### Question: how many incumbent with district  being tennessee 5 ### Answer: SELECT COUNT(incumbent) FROM table_1341865_44 WHERE district = "Tennessee 5"
what's incumbent with district being tennessee 5
CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341865_44 WHERE district = "Tennessee 5"
### Context: CREATE TABLE table_1341865_44 (incumbent VARCHAR, district VARCHAR) ### Question: what's incumbent with district being tennessee 5 ### Answer: SELECT incumbent FROM table_1341865_44 WHERE district = "Tennessee 5"
Who ran in the race for Jack Brooks' seat?
CREATE TABLE table_1341865_45 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341865_45 WHERE incumbent = "Jack Brooks"
### Context: CREATE TABLE table_1341865_45 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who ran in the race for Jack Brooks' seat? ### Answer: SELECT candidates FROM table_1341865_45 WHERE incumbent = "Jack Brooks"
which section did seymour halpern run in
CREATE TABLE table_1341865_34 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341865_34 WHERE incumbent = "Seymour Halpern"
### Context: CREATE TABLE table_1341865_34 (district VARCHAR, incumbent VARCHAR) ### Question: which section did seymour halpern run in ### Answer: SELECT district FROM table_1341865_34 WHERE incumbent = "Seymour Halpern"
What district is incumbent albert w. johnson from?
CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341865_40 WHERE incumbent = "Albert W. Johnson"
### Context: CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR) ### Question: What district is incumbent albert w. johnson from? ### Answer: SELECT district FROM table_1341865_40 WHERE incumbent = "Albert W. Johnson"
How many times was frank m. clark the incumbent?
CREATE TABLE table_1341865_40 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(result) FROM table_1341865_40 WHERE incumbent = "Frank M. Clark"
### Context: CREATE TABLE table_1341865_40 (result VARCHAR, incumbent VARCHAR) ### Question: How many times was frank m. clark the incumbent? ### Answer: SELECT COUNT(result) FROM table_1341865_40 WHERE incumbent = "Frank M. Clark"
What district is incumbent elmer j. holland from?
CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341865_40 WHERE incumbent = "Elmer J. Holland"
### Context: CREATE TABLE table_1341865_40 (district VARCHAR, incumbent VARCHAR) ### Question: What district is incumbent elmer j. holland from? ### Answer: SELECT district FROM table_1341865_40 WHERE incumbent = "Elmer J. Holland"
To which party does Frank T. Bow belong?
CREATE TABLE table_1341865_37 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341865_37 WHERE incumbent = "Frank T. Bow"
### Context: CREATE TABLE table_1341865_37 (party VARCHAR, incumbent VARCHAR) ### Question: To which party does Frank T. Bow belong? ### Answer: SELECT party FROM table_1341865_37 WHERE incumbent = "Frank T. Bow"
Who ran in the race for the seat of incumbent Carl W. Rich?
CREATE TABLE table_1341865_37 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341865_37 WHERE incumbent = "Carl W. Rich"
### Context: CREATE TABLE table_1341865_37 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who ran in the race for the seat of incumbent Carl W. Rich? ### Answer: SELECT candidates FROM table_1341865_37 WHERE incumbent = "Carl W. Rich"
In which district is the incumbent Carl W. Rich?
CREATE TABLE table_1341865_37 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341865_37 WHERE incumbent = "Carl W. Rich"
### Context: CREATE TABLE table_1341865_37 (district VARCHAR, incumbent VARCHAR) ### Question: In which district is the incumbent Carl W. Rich? ### Answer: SELECT district FROM table_1341865_37 WHERE incumbent = "Carl W. Rich"
Name the candidates where incumbent Carl Vinson is?
CREATE TABLE table_1341884_12 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341884_12 WHERE incumbent = "Carl Vinson"
### Context: CREATE TABLE table_1341884_12 (candidates VARCHAR, incumbent VARCHAR) ### Question: Name the candidates where incumbent Carl Vinson is? ### Answer: SELECT candidates FROM table_1341884_12 WHERE incumbent = "Carl Vinson"
Name the candidates for massachusetts 8
CREATE TABLE table_1341884_23 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341884_23 WHERE district = "Massachusetts 8"
### Context: CREATE TABLE table_1341884_23 (candidates VARCHAR, district VARCHAR) ### Question: Name the candidates for massachusetts 8 ### Answer: SELECT candidates FROM table_1341884_23 WHERE district = "Massachusetts 8"
What candidates were in the election when a republican was re-elected?
CREATE TABLE table_1341884_19 (candidates VARCHAR, result VARCHAR, party VARCHAR)
SELECT candidates FROM table_1341884_19 WHERE result = "Re-elected" AND party = "Republican"
### Context: CREATE TABLE table_1341884_19 (candidates VARCHAR, result VARCHAR, party VARCHAR) ### Question: What candidates were in the election when a republican was re-elected? ### Answer: SELECT candidates FROM table_1341884_19 WHERE result = "Re-elected" AND party = "Republican"
What district is incumbent frank chelf from?
CREATE TABLE table_1341884_19 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341884_19 WHERE incumbent = "Frank Chelf"
### Context: CREATE TABLE table_1341884_19 (district VARCHAR, incumbent VARCHAR) ### Question: What district is incumbent frank chelf from? ### Answer: SELECT district FROM table_1341884_19 WHERE incumbent = "Frank Chelf"
How many districts represented Edwin E. Willis?
CREATE TABLE table_1341884_20 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1341884_20 WHERE incumbent = "Edwin E. Willis"
### Context: CREATE TABLE table_1341884_20 (district VARCHAR, incumbent VARCHAR) ### Question: How many districts represented Edwin E. Willis? ### Answer: SELECT COUNT(district) FROM table_1341884_20 WHERE incumbent = "Edwin E. Willis"
Who were all the candidates when the first elected year was 1961?
CREATE TABLE table_1341884_20 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341884_20 WHERE first_elected = 1961
### Context: CREATE TABLE table_1341884_20 (candidates VARCHAR, first_elected VARCHAR) ### Question: Who were all the candidates when the first elected year was 1961? ### Answer: SELECT candidates FROM table_1341884_20 WHERE first_elected = 1961
What party did Hale Boggs belong to?
CREATE TABLE table_1341884_20 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341884_20 WHERE incumbent = "Hale Boggs"
### Context: CREATE TABLE table_1341884_20 (party VARCHAR, incumbent VARCHAR) ### Question: What party did Hale Boggs belong to? ### Answer: SELECT party FROM table_1341884_20 WHERE incumbent = "Hale Boggs"
what is the political affiliation of the texas 12 district
CREATE TABLE table_1341884_45 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341884_45 WHERE district = "Texas 12"
### Context: CREATE TABLE table_1341884_45 (party VARCHAR, district VARCHAR) ### Question: what is the political affiliation of the texas 12 district ### Answer: SELECT party FROM table_1341884_45 WHERE district = "Texas 12"
how many voted in the texas 6 section
CREATE TABLE table_1341884_45 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341884_45 WHERE district = "Texas 6"
### Context: CREATE TABLE table_1341884_45 (first_elected VARCHAR, district VARCHAR) ### Question: how many voted in the texas 6 section ### Answer: SELECT first_elected FROM table_1341884_45 WHERE district = "Texas 6"
what is the political affiliation of ray roberts
CREATE TABLE table_1341884_45 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341884_45 WHERE incumbent = "Ray Roberts"
### Context: CREATE TABLE table_1341884_45 (party VARCHAR, incumbent VARCHAR) ### Question: what is the political affiliation of ray roberts ### Answer: SELECT party FROM table_1341884_45 WHERE incumbent = "Ray Roberts"
What district featured an election between james a. byrne (d) 59.3% joseph r. burns (r) 40.7%?
CREATE TABLE table_1341884_40 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_1341884_40 WHERE candidates = "James A. Byrne (D) 59.3% Joseph R. Burns (R) 40.7%"
### Context: CREATE TABLE table_1341884_40 (district VARCHAR, candidates VARCHAR) ### Question: What district featured an election between james a. byrne (d) 59.3% joseph r. burns (r) 40.7%? ### Answer: SELECT district FROM table_1341884_40 WHERE candidates = "James A. Byrne (D) 59.3% Joseph R. Burns (R) 40.7%"
Name the candidates for massachusetts 6
CREATE TABLE table_1341897_23 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341897_23 WHERE district = "Massachusetts 6"
### Context: CREATE TABLE table_1341897_23 (candidates VARCHAR, district VARCHAR) ### Question: Name the candidates for massachusetts 6 ### Answer: SELECT candidates FROM table_1341897_23 WHERE district = "Massachusetts 6"
Name the result for massachusetts 3
CREATE TABLE table_1341897_23 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341897_23 WHERE district = "Massachusetts 3"
### Context: CREATE TABLE table_1341897_23 (result VARCHAR, district VARCHAR) ### Question: Name the result for massachusetts 3 ### Answer: SELECT result FROM table_1341897_23 WHERE district = "Massachusetts 3"
Name the candidate first elected in 1942
CREATE TABLE table_1341897_23 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341897_23 WHERE first_elected = 1942
### Context: CREATE TABLE table_1341897_23 (candidates VARCHAR, first_elected VARCHAR) ### Question: Name the candidate first elected in 1942 ### Answer: SELECT candidates FROM table_1341897_23 WHERE first_elected = 1942
Name the party for massachusetts 3
CREATE TABLE table_1341897_23 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341897_23 WHERE district = "Massachusetts 3"
### Context: CREATE TABLE table_1341897_23 (party VARCHAR, district VARCHAR) ### Question: Name the party for massachusetts 3 ### Answer: SELECT party FROM table_1341897_23 WHERE district = "Massachusetts 3"
What district is incumbent albert rains from?
CREATE TABLE table_1341897_3 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341897_3 WHERE incumbent = "Albert Rains"
### Context: CREATE TABLE table_1341897_3 (district VARCHAR, incumbent VARCHAR) ### Question: What district is incumbent albert rains from? ### Answer: SELECT district FROM table_1341897_3 WHERE incumbent = "Albert Rains"
How many candidates represent the district of kenneth a. roberts?
CREATE TABLE table_1341897_3 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341897_3 WHERE incumbent = "Kenneth A. Roberts"
### Context: CREATE TABLE table_1341897_3 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many candidates represent the district of kenneth a. roberts? ### Answer: SELECT COUNT(candidates) FROM table_1341897_3 WHERE incumbent = "Kenneth A. Roberts"
Who was the incumbent in the Arkansas 2 district election?
CREATE TABLE table_1341897_6 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341897_6 WHERE district = "Arkansas 2"
### Context: CREATE TABLE table_1341897_6 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent in the Arkansas 2 district election? ### Answer: SELECT incumbent FROM table_1341897_6 WHERE district = "Arkansas 2"
When was Dale Alford first elected in the Arkansas 5 district?
CREATE TABLE table_1341897_6 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341897_6 WHERE district = "Arkansas 5"
### Context: CREATE TABLE table_1341897_6 (first_elected VARCHAR, district VARCHAR) ### Question: When was Dale Alford first elected in the Arkansas 5 district? ### Answer: SELECT first_elected FROM table_1341897_6 WHERE district = "Arkansas 5"