question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the incumbent for 1974?
CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1974
### Context: CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR) ### Question: What is the incumbent for 1974? ### Answer: SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1974
To what party does Cardiss Collins belong?
CREATE TABLE table_1341577_14 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341577_14 WHERE incumbent = "Cardiss Collins"
### Context: CREATE TABLE table_1341577_14 (party VARCHAR, incumbent VARCHAR) ### Question: To what party does Cardiss Collins belong? ### Answer: SELECT party FROM table_1341577_14 WHERE incumbent = "Cardiss Collins"
Who was the candidate in the Virginia 3 district election?
CREATE TABLE table_1341577_47 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341577_47 WHERE district = "Virginia 3"
### Context: CREATE TABLE table_1341577_47 (candidates VARCHAR, district VARCHAR) ### Question: Who was the candidate in the Virginia 3 district election? ### Answer: SELECT candidates FROM table_1341577_47 WHERE district = "Virginia 3"
What was the result of the election in the Virginia 3 district?
CREATE TABLE table_1341577_47 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341577_47 WHERE district = "Virginia 3"
### Context: CREATE TABLE table_1341577_47 (result VARCHAR, district VARCHAR) ### Question: What was the result of the election in the Virginia 3 district? ### Answer: SELECT result FROM table_1341577_47 WHERE district = "Virginia 3"
Who were the candidates when Lamar S. Smith was incumbent?
CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341577_44 WHERE incumbent = "Lamar S. Smith"
### Context: CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates when Lamar S. Smith was incumbent? ### Answer: SELECT candidates FROM table_1341577_44 WHERE incumbent = "Lamar S. Smith"
What party did Beau Boulter represent?
CREATE TABLE table_1341577_44 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341577_44 WHERE incumbent = "Beau Boulter"
### Context: CREATE TABLE table_1341577_44 (party VARCHAR, incumbent VARCHAR) ### Question: What party did Beau Boulter represent? ### Answer: SELECT party FROM table_1341577_44 WHERE incumbent = "Beau Boulter"
Who were the candidates when Jack Fields was the incumbent?
CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341577_44 WHERE incumbent = "Jack Fields"
### Context: CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates when Jack Fields was the incumbent? ### Answer: SELECT candidates FROM table_1341577_44 WHERE incumbent = "Jack Fields"
What was the final result for Les Aspin?
CREATE TABLE table_1341577_50 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341577_50 WHERE incumbent = "Les Aspin"
### Context: CREATE TABLE table_1341577_50 (result VARCHAR, incumbent VARCHAR) ### Question: What was the final result for Les Aspin? ### Answer: SELECT result FROM table_1341577_50 WHERE incumbent = "Les Aspin"
Who were the candidates that ran when Jim Moody was up for reelection after 1982?
CREATE TABLE table_1341577_50 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341577_50 WHERE first_elected = 1982
### Context: CREATE TABLE table_1341577_50 (candidates VARCHAR, first_elected VARCHAR) ### Question: Who were the candidates that ran when Jim Moody was up for reelection after 1982? ### Answer: SELECT candidates FROM table_1341577_50 WHERE first_elected = 1982
In the district called Tennessee 6, how many in total of first elected are there?
CREATE TABLE table_1341577_43 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1341577_43 WHERE district = "Tennessee 6"
### Context: CREATE TABLE table_1341577_43 (first_elected VARCHAR, district VARCHAR) ### Question: In the district called Tennessee 6, how many in total of first elected are there? ### Answer: SELECT COUNT(first_elected) FROM table_1341577_43 WHERE district = "Tennessee 6"
Which party is associated with the person who was first elected in 1982?
CREATE TABLE table_1341577_43 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_1341577_43 WHERE first_elected = 1982
### Context: CREATE TABLE table_1341577_43 (party VARCHAR, first_elected VARCHAR) ### Question: Which party is associated with the person who was first elected in 1982? ### Answer: SELECT party FROM table_1341577_43 WHERE first_elected = 1982
How many candidates are listed all together for the incumbent named bob clement?
CREATE TABLE table_1341577_43 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341577_43 WHERE incumbent = "Bob Clement"
### Context: CREATE TABLE table_1341577_43 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many candidates are listed all together for the incumbent named bob clement? ### Answer: SELECT COUNT(candidates) FROM table_1341577_43 WHERE incumbent = "Bob Clement"
What was the results for the candidates listed as bart gordon (d) 76.5% wallace embry (r) 23.5%?
CREATE TABLE table_1341577_43 (result VARCHAR, candidates VARCHAR)
SELECT result FROM table_1341577_43 WHERE candidates = "Bart Gordon (D) 76.5% Wallace Embry (R) 23.5%"
### Context: CREATE TABLE table_1341577_43 (result VARCHAR, candidates VARCHAR) ### Question: What was the results for the candidates listed as bart gordon (d) 76.5% wallace embry (r) 23.5%? ### Answer: SELECT result FROM table_1341577_43 WHERE candidates = "Bart Gordon (D) 76.5% Wallace Embry (R) 23.5%"
Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%?
CREATE TABLE table_1341577_43 (incumbent VARCHAR, candidates VARCHAR)
SELECT incumbent FROM table_1341577_43 WHERE candidates = "Marilyn Lloyd (D) 57.4% Harold W. Coker (R) 42.6%"
### Context: CREATE TABLE table_1341577_43 (incumbent VARCHAR, candidates VARCHAR) ### Question: Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%? ### Answer: SELECT incumbent FROM table_1341577_43 WHERE candidates = "Marilyn Lloyd (D) 57.4% Harold W. C...
In what district would you find the candidates listed as jim cooper (d) unopposed?
CREATE TABLE table_1341577_43 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_1341577_43 WHERE candidates = "Jim Cooper (D) Unopposed"
### Context: CREATE TABLE table_1341577_43 (district VARCHAR, candidates VARCHAR) ### Question: In what district would you find the candidates listed as jim cooper (d) unopposed? ### Answer: SELECT district FROM table_1341577_43 WHERE candidates = "Jim Cooper (D) Unopposed"
who is the incumbent with candidates being bud shuster (r) unopposed
CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR)
SELECT incumbent FROM table_1341586_39 WHERE candidates = "Bud Shuster (R) Unopposed"
### Context: CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR) ### Question: who is the incumbent with candidates being bud shuster (r) unopposed ### Answer: SELECT incumbent FROM table_1341586_39 WHERE candidates = "Bud Shuster (R) Unopposed"
who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1%
CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR)
SELECT incumbent FROM table_1341586_39 WHERE candidates = "Tom Ridge (R) 80.9% Joylyn Blackwell (D) 19.1%"
### Context: CREATE TABLE table_1341586_39 (incumbent VARCHAR, candidates VARCHAR) ### Question: who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1% ### Answer: SELECT incumbent FROM table_1341586_39 WHERE candidates = "Tom Ridge (R) 80.9% Joylyn Blackwell (D) 19.1%"
what's district with candidates being curt weldon (r) 61.3% bill spingler (d) 38.7%
CREATE TABLE table_1341586_39 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_1341586_39 WHERE candidates = "Curt Weldon (R) 61.3% Bill Spingler (D) 38.7%"
### Context: CREATE TABLE table_1341586_39 (district VARCHAR, candidates VARCHAR) ### Question: what's district with candidates being curt weldon (r) 61.3% bill spingler (d) 38.7% ### Answer: SELECT district FROM table_1341586_39 WHERE candidates = "Curt Weldon (R) 61.3% Bill Spingler (D) 38.7%"
what's party with district being pennsylvania 21
CREATE TABLE table_1341586_39 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341586_39 WHERE district = "Pennsylvania 21"
### Context: CREATE TABLE table_1341586_39 (party VARCHAR, district VARCHAR) ### Question: what's party with district being pennsylvania 21 ### Answer: SELECT party FROM table_1341586_39 WHERE district = "Pennsylvania 21"
what is the maximum first elected with incumbent being gus yatron
CREATE TABLE table_1341586_39 (first_elected INTEGER, incumbent VARCHAR)
SELECT MAX(first_elected) FROM table_1341586_39 WHERE incumbent = "Gus Yatron"
### Context: CREATE TABLE table_1341586_39 (first_elected INTEGER, incumbent VARCHAR) ### Question: what is the maximum first elected with incumbent being gus yatron ### Answer: SELECT MAX(first_elected) FROM table_1341586_39 WHERE incumbent = "Gus Yatron"
what's the district with first elected being 1972
CREATE TABLE table_1341586_39 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341586_39 WHERE first_elected = 1972
### Context: CREATE TABLE table_1341586_39 (district VARCHAR, first_elected VARCHAR) ### Question: what's the district with first elected being 1972 ### Answer: SELECT district FROM table_1341586_39 WHERE first_elected = 1972
how many district with incumbent being lindy boggs
CREATE TABLE table_1341586_19 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1341586_19 WHERE incumbent = "Lindy Boggs"
### Context: CREATE TABLE table_1341586_19 (district VARCHAR, incumbent VARCHAR) ### Question: how many district with incumbent being lindy boggs ### Answer: SELECT COUNT(district) FROM table_1341586_19 WHERE incumbent = "Lindy Boggs"
what's the result with candidates being billy tauzin (d) unopposed
CREATE TABLE table_1341586_19 (result VARCHAR, candidates VARCHAR)
SELECT result FROM table_1341586_19 WHERE candidates = "Billy Tauzin (D) Unopposed"
### Context: CREATE TABLE table_1341586_19 (result VARCHAR, candidates VARCHAR) ### Question: what's the result with candidates being billy tauzin (d) unopposed ### Answer: SELECT result FROM table_1341586_19 WHERE candidates = "Billy Tauzin (D) Unopposed"
how many candidates with result being retired to run for u. s. senate republican hold
CREATE TABLE table_1341586_19 (candidates VARCHAR, result VARCHAR)
SELECT COUNT(candidates) FROM table_1341586_19 WHERE result = "Retired to run for U. S. Senate Republican hold"
### Context: CREATE TABLE table_1341586_19 (candidates VARCHAR, result VARCHAR) ### Question: how many candidates with result being retired to run for u. s. senate republican hold ### Answer: SELECT COUNT(candidates) FROM table_1341586_19 WHERE result = "Retired to run for U. S. Senate Republican hold"
what's the result with district being louisiana 2
CREATE TABLE table_1341586_19 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341586_19 WHERE district = "Louisiana 2"
### Context: CREATE TABLE table_1341586_19 (result VARCHAR, district VARCHAR) ### Question: what's the result with district being louisiana 2 ### Answer: SELECT result FROM table_1341586_19 WHERE district = "Louisiana 2"
who is the the candidates with first elected being 1977
CREATE TABLE table_1341586_19 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341586_19 WHERE first_elected = 1977
### Context: CREATE TABLE table_1341586_19 (candidates VARCHAR, first_elected VARCHAR) ### Question: who is the the candidates with first elected being 1977 ### Answer: SELECT candidates FROM table_1341586_19 WHERE first_elected = 1977
What happened to the incombent who was elected in 1980?
CREATE TABLE table_1341586_14 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1341586_14 WHERE first_elected = 1980
### Context: CREATE TABLE table_1341586_14 (result VARCHAR, first_elected VARCHAR) ### Question: What happened to the incombent who was elected in 1980? ### Answer: SELECT result FROM table_1341586_14 WHERE first_elected = 1980
How did the election end for Terry L. Bruce?
CREATE TABLE table_1341586_14 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341586_14 WHERE incumbent = "Terry L. Bruce"
### Context: CREATE TABLE table_1341586_14 (result VARCHAR, incumbent VARCHAR) ### Question: How did the election end for Terry L. Bruce? ### Answer: SELECT result FROM table_1341586_14 WHERE incumbent = "Terry L. Bruce"
What party was Tony P. Hall affiliated with?
CREATE TABLE table_1341586_36 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341586_36 WHERE incumbent = "Tony P. Hall"
### Context: CREATE TABLE table_1341586_36 (party VARCHAR, incumbent VARCHAR) ### Question: What party was Tony P. Hall affiliated with? ### Answer: SELECT party FROM table_1341586_36 WHERE incumbent = "Tony P. Hall"
Name number first elected for tennessee 2?
CREATE TABLE table_1341586_43 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1341586_43 WHERE district = "Tennessee 2"
### Context: CREATE TABLE table_1341586_43 (first_elected VARCHAR, district VARCHAR) ### Question: Name number first elected for tennessee 2? ### Answer: SELECT COUNT(first_elected) FROM table_1341586_43 WHERE district = "Tennessee 2"
Name the candidates in 1964
CREATE TABLE table_1341586_43 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341586_43 WHERE first_elected = 1964
### Context: CREATE TABLE table_1341586_43 (candidates VARCHAR, first_elected VARCHAR) ### Question: Name the candidates in 1964 ### Answer: SELECT candidates FROM table_1341586_43 WHERE first_elected = 1964
How many districts have Mac Sweeney as incumbent?
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341586_44 WHERE incumbent = "Mac Sweeney"
### Context: CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many districts have Mac Sweeney as incumbent? ### Answer: SELECT COUNT(candidates) FROM table_1341586_44 WHERE incumbent = "Mac Sweeney"
Who are all the candidates vying for Henry B. Gonzalez' seat?
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341586_44 WHERE incumbent = "Henry B. Gonzalez"
### Context: CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who are all the candidates vying for Henry B. Gonzalez' seat? ### Answer: SELECT candidates FROM table_1341586_44 WHERE incumbent = "Henry B. Gonzalez"
Name all the candidates vying for Albert Bustamante's seat.
CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341586_44 WHERE incumbent = "Albert Bustamante"
### Context: CREATE TABLE table_1341586_44 (candidates VARCHAR, incumbent VARCHAR) ### Question: Name all the candidates vying for Albert Bustamante's seat. ### Answer: SELECT candidates FROM table_1341586_44 WHERE incumbent = "Albert Bustamante"
In what district was the incumbent Michael Bilirakis?
CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341598_10 WHERE incumbent = "Michael Bilirakis"
### Context: CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR) ### Question: In what district was the incumbent Michael Bilirakis? ### Answer: SELECT district FROM table_1341598_10 WHERE incumbent = "Michael Bilirakis"
Who is the candidate in election where the incumbent was first elected in 1980?
CREATE TABLE table_1341598_10 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341598_10 WHERE first_elected = 1980
### Context: CREATE TABLE table_1341598_10 (candidates VARCHAR, first_elected VARCHAR) ### Question: Who is the candidate in election where the incumbent was first elected in 1980? ### Answer: SELECT candidates FROM table_1341598_10 WHERE first_elected = 1980
What party does incumbent Charles Edward Bennett belong to?
CREATE TABLE table_1341598_10 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341598_10 WHERE incumbent = "Charles Edward Bennett"
### Context: CREATE TABLE table_1341598_10 (party VARCHAR, incumbent VARCHAR) ### Question: What party does incumbent Charles Edward Bennett belong to? ### Answer: SELECT party FROM table_1341598_10 WHERE incumbent = "Charles Edward Bennett"
What was the result of the election in the Florida 18 district?
CREATE TABLE table_1341598_10 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341598_10 WHERE district = "Florida 18"
### Context: CREATE TABLE table_1341598_10 (result VARCHAR, district VARCHAR) ### Question: What was the result of the election in the Florida 18 district? ### Answer: SELECT result FROM table_1341598_10 WHERE district = "Florida 18"
In what district is the incumbent Lawrence J. Smith?
CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341598_10 WHERE incumbent = "Lawrence J. Smith"
### Context: CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR) ### Question: In what district is the incumbent Lawrence J. Smith? ### Answer: SELECT district FROM table_1341598_10 WHERE incumbent = "Lawrence J. Smith"
where is the district where the incumbent is del latta?
CREATE TABLE table_1341598_36 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341598_36 WHERE incumbent = "Del Latta"
### Context: CREATE TABLE table_1341598_36 (district VARCHAR, incumbent VARCHAR) ### Question: where is the district where the incumbent is del latta? ### Answer: SELECT district FROM table_1341598_36 WHERE incumbent = "Del Latta"
what is the party for district ohio 11?
CREATE TABLE table_1341598_36 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341598_36 WHERE district = "Ohio 11"
### Context: CREATE TABLE table_1341598_36 (party VARCHAR, district VARCHAR) ### Question: what is the party for district ohio 11? ### Answer: SELECT party FROM table_1341598_36 WHERE district = "Ohio 11"
who were the candidates for district ohio 6?
CREATE TABLE table_1341598_36 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341598_36 WHERE district = "Ohio 6"
### Context: CREATE TABLE table_1341598_36 (candidates VARCHAR, district VARCHAR) ### Question: who were the candidates for district ohio 6? ### Answer: SELECT candidates FROM table_1341598_36 WHERE district = "Ohio 6"
What is the party for District Georgia 9?
CREATE TABLE table_1341598_11 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341598_11 WHERE district = "Georgia 9"
### Context: CREATE TABLE table_1341598_11 (party VARCHAR, district VARCHAR) ### Question: What is the party for District Georgia 9? ### Answer: SELECT party FROM table_1341598_11 WHERE district = "Georgia 9"
Which district shows a first elected of 1980?
CREATE TABLE table_1341598_11 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341598_11 WHERE first_elected = 1980
### Context: CREATE TABLE table_1341598_11 (district VARCHAR, first_elected VARCHAR) ### Question: Which district shows a first elected of 1980? ### Answer: SELECT district FROM table_1341598_11 WHERE first_elected = 1980
What is the party for the incumbent Wyche Fowler?
CREATE TABLE table_1341598_11 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341598_11 WHERE incumbent = "Wyche Fowler"
### Context: CREATE TABLE table_1341598_11 (party VARCHAR, incumbent VARCHAR) ### Question: What is the party for the incumbent Wyche Fowler? ### Answer: SELECT party FROM table_1341598_11 WHERE incumbent = "Wyche Fowler"
Who are shown as candidates when George Darden is the incumbent?
CREATE TABLE table_1341598_11 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341598_11 WHERE incumbent = "George Darden"
### Context: CREATE TABLE table_1341598_11 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who are shown as candidates when George Darden is the incumbent? ### Answer: SELECT candidates FROM table_1341598_11 WHERE incumbent = "George Darden"
What district has Dan Crane as incumbent?
CREATE TABLE table_1341598_14 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341598_14 WHERE incumbent = "Dan Crane"
### Context: CREATE TABLE table_1341598_14 (district VARCHAR, incumbent VARCHAR) ### Question: What district has Dan Crane as incumbent? ### Answer: SELECT district FROM table_1341598_14 WHERE incumbent = "Dan Crane"
In which district is Robert W. Edgar the incumbent?
CREATE TABLE table_1341598_39 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341598_39 WHERE incumbent = "Robert W. Edgar"
### Context: CREATE TABLE table_1341598_39 (district VARCHAR, incumbent VARCHAR) ### Question: In which district is Robert W. Edgar the incumbent? ### Answer: SELECT district FROM table_1341598_39 WHERE incumbent = "Robert W. Edgar"
To which party does Robert W. Edgar belong?
CREATE TABLE table_1341598_39 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341598_39 WHERE incumbent = "Robert W. Edgar"
### Context: CREATE TABLE table_1341598_39 (party VARCHAR, incumbent VARCHAR) ### Question: To which party does Robert W. Edgar belong? ### Answer: SELECT party FROM table_1341598_39 WHERE incumbent = "Robert W. Edgar"
What district is incumbent jack hightower from?
CREATE TABLE table_1341598_44 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341598_44 WHERE incumbent = "Jack Hightower"
### Context: CREATE TABLE table_1341598_44 (district VARCHAR, incumbent VARCHAR) ### Question: What district is incumbent jack hightower from? ### Answer: SELECT district FROM table_1341598_44 WHERE incumbent = "Jack Hightower"
What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%?
CREATE TABLE table_1341598_44 (first_elected INTEGER, candidates VARCHAR)
SELECT MIN(first_elected) FROM table_1341598_44 WHERE candidates = "Tom Loeffler (R) 80.6% Joe Sullivan (D) 19.4%"
### Context: CREATE TABLE table_1341598_44 (first_elected INTEGER, candidates VARCHAR) ### Question: What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%? ### Answer: SELECT MIN(first_elected) FROM table_1341598_44 WHERE candidates = "Tom Loeffler (R) 80.6% Joe Sullivan (D) 19.4%"
What incumbent won the district of texas 22?
CREATE TABLE table_1341598_44 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341598_44 WHERE district = "Texas 22"
### Context: CREATE TABLE table_1341598_44 (incumbent VARCHAR, district VARCHAR) ### Question: What incumbent won the district of texas 22? ### Answer: SELECT incumbent FROM table_1341598_44 WHERE district = "Texas 22"
Who's the incumbent of the Louisiana 1 district?
CREATE TABLE table_1341604_19 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341604_19 WHERE district = "Louisiana 1"
### Context: CREATE TABLE table_1341604_19 (incumbent VARCHAR, district VARCHAR) ### Question: Who's the incumbent of the Louisiana 1 district? ### Answer: SELECT incumbent FROM table_1341604_19 WHERE district = "Louisiana 1"
Who were the candidates in the Louisiana 4 district?
CREATE TABLE table_1341604_19 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341604_19 WHERE district = "Louisiana 4"
### Context: CREATE TABLE table_1341604_19 (candidates VARCHAR, district VARCHAR) ### Question: Who were the candidates in the Louisiana 4 district? ### Answer: SELECT candidates FROM table_1341604_19 WHERE district = "Louisiana 4"
Who's the incumbent in the district first elected in 1976?
CREATE TABLE table_1341604_19 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341604_19 WHERE first_elected = 1976
### Context: CREATE TABLE table_1341604_19 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Who's the incumbent in the district first elected in 1976? ### Answer: SELECT incumbent FROM table_1341604_19 WHERE first_elected = 1976
what's the incumbent with district being massachusetts 2
CREATE TABLE table_1341604_22 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341604_22 WHERE district = "Massachusetts 2"
### Context: CREATE TABLE table_1341604_22 (incumbent VARCHAR, district VARCHAR) ### Question: what's the incumbent with district being massachusetts 2 ### Answer: SELECT incumbent FROM table_1341604_22 WHERE district = "Massachusetts 2"
what's the party with candidates being silvio conte (r) unopposed
CREATE TABLE table_1341604_22 (party VARCHAR, candidates VARCHAR)
SELECT party FROM table_1341604_22 WHERE candidates = "Silvio Conte (R) Unopposed"
### Context: CREATE TABLE table_1341604_22 (party VARCHAR, candidates VARCHAR) ### Question: what's the party with candidates being silvio conte (r) unopposed ### Answer: SELECT party FROM table_1341604_22 WHERE candidates = "Silvio Conte (R) Unopposed"
what's the first elected with incumbent being joseph d. early
CREATE TABLE table_1341604_22 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341604_22 WHERE incumbent = "Joseph D. Early"
### Context: CREATE TABLE table_1341604_22 (first_elected VARCHAR, incumbent VARCHAR) ### Question: what's the first elected with incumbent being joseph d. early ### Answer: SELECT first_elected FROM table_1341604_22 WHERE incumbent = "Joseph D. Early"
what's the party with dbeingtrict being massachusetts 3
CREATE TABLE table_1341604_22 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341604_22 WHERE district = "Massachusetts 3"
### Context: CREATE TABLE table_1341604_22 (party VARCHAR, district VARCHAR) ### Question: what's the party with dbeingtrict being massachusetts 3 ### Answer: SELECT party FROM table_1341604_22 WHERE district = "Massachusetts 3"
How many candidates won the election in the district whose incumbent is Bud Shuster?
CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341604_39 WHERE incumbent = "Bud Shuster"
### Context: CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many candidates won the election in the district whose incumbent is Bud Shuster? ### Answer: SELECT COUNT(candidates) FROM table_1341604_39 WHERE incumbent = "Bud Shuster"
What are the candidates in the district whose incumbent is Gus Yatron?
CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341604_39 WHERE incumbent = "Gus Yatron"
### Context: CREATE TABLE table_1341604_39 (candidates VARCHAR, incumbent VARCHAR) ### Question: What are the candidates in the district whose incumbent is Gus Yatron? ### Answer: SELECT candidates FROM table_1341604_39 WHERE incumbent = "Gus Yatron"
What's the winning party in the Pennsylvania 6 district?
CREATE TABLE table_1341604_39 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341604_39 WHERE district = "Pennsylvania 6"
### Context: CREATE TABLE table_1341604_39 (party VARCHAR, district VARCHAR) ### Question: What's the winning party in the Pennsylvania 6 district? ### Answer: SELECT party FROM table_1341604_39 WHERE district = "Pennsylvania 6"
What candidate is a member of the Republican party?
CREATE TABLE table_1341640_39 (candidates VARCHAR, party VARCHAR)
SELECT candidates FROM table_1341640_39 WHERE party = "Republican"
### Context: CREATE TABLE table_1341640_39 (candidates VARCHAR, party VARCHAR) ### Question: What candidate is a member of the Republican party? ### Answer: SELECT candidates FROM table_1341640_39 WHERE party = "Republican"
What district is Ray Musto the incumbent of?
CREATE TABLE table_1341640_39 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341640_39 WHERE incumbent = "Ray Musto"
### Context: CREATE TABLE table_1341640_39 (district VARCHAR, incumbent VARCHAR) ### Question: What district is Ray Musto the incumbent of? ### Answer: SELECT district FROM table_1341640_39 WHERE incumbent = "Ray Musto"
How many parties does the incumbent Donald A. Bailey a member of?
CREATE TABLE table_1341640_39 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(party) FROM table_1341640_39 WHERE incumbent = "Donald A. Bailey"
### Context: CREATE TABLE table_1341640_39 (party VARCHAR, incumbent VARCHAR) ### Question: How many parties does the incumbent Donald A. Bailey a member of? ### Answer: SELECT COUNT(party) FROM table_1341640_39 WHERE incumbent = "Donald A. Bailey"
What was the outcome of the election in Pennsylvania 6 district?
CREATE TABLE table_1341640_39 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341640_39 WHERE district = "Pennsylvania 6"
### Context: CREATE TABLE table_1341640_39 (result VARCHAR, district VARCHAR) ### Question: What was the outcome of the election in Pennsylvania 6 district? ### Answer: SELECT result FROM table_1341640_39 WHERE district = "Pennsylvania 6"
Where was Al Gore elected
CREATE TABLE table_1341640_43 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341640_43 WHERE incumbent = "Al Gore"
### Context: CREATE TABLE table_1341640_43 (district VARCHAR, incumbent VARCHAR) ### Question: Where was Al Gore elected ### Answer: SELECT district FROM table_1341640_43 WHERE incumbent = "Al Gore"
Election results of 1976
CREATE TABLE table_1341640_43 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1341640_43 WHERE first_elected = 1976
### Context: CREATE TABLE table_1341640_43 (result VARCHAR, first_elected VARCHAR) ### Question: Election results of 1976 ### Answer: SELECT result FROM table_1341640_43 WHERE first_elected = 1976
What was the incumbent for missouri 1?
CREATE TABLE table_1341640_26 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341640_26 WHERE district = "Missouri 1"
### Context: CREATE TABLE table_1341640_26 (incumbent VARCHAR, district VARCHAR) ### Question: What was the incumbent for missouri 1? ### Answer: SELECT incumbent FROM table_1341640_26 WHERE district = "Missouri 1"
What was the result of the election when someone was first elected in 1960?
CREATE TABLE table_1341640_14 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1341640_14 WHERE first_elected = 1960
### Context: CREATE TABLE table_1341640_14 (result VARCHAR, first_elected VARCHAR) ### Question: What was the result of the election when someone was first elected in 1960? ### Answer: SELECT result FROM table_1341640_14 WHERE first_elected = 1960
What year was incumbent phil crane first elected?
CREATE TABLE table_1341640_14 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341640_14 WHERE incumbent = "Phil Crane"
### Context: CREATE TABLE table_1341640_14 (first_elected VARCHAR, incumbent VARCHAR) ### Question: What year was incumbent phil crane first elected? ### Answer: SELECT first_elected FROM table_1341640_14 WHERE incumbent = "Phil Crane"
What candidates were featured in the 1974 election?
CREATE TABLE table_1341640_14 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341640_14 WHERE first_elected = 1974
### Context: CREATE TABLE table_1341640_14 (candidates VARCHAR, first_elected VARCHAR) ### Question: What candidates were featured in the 1974 election? ### Answer: SELECT candidates FROM table_1341640_14 WHERE first_elected = 1974
What year was Jerry Huckaby first elected?
CREATE TABLE table_1341663_19 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341663_19 WHERE incumbent = "Jerry Huckaby"
### Context: CREATE TABLE table_1341663_19 (first_elected VARCHAR, incumbent VARCHAR) ### Question: What year was Jerry Huckaby first elected? ### Answer: SELECT first_elected FROM table_1341663_19 WHERE incumbent = "Jerry Huckaby"
What other cadidate ran against Dave Treen?
CREATE TABLE table_1341663_19 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341663_19 WHERE incumbent = "Dave Treen"
### Context: CREATE TABLE table_1341663_19 (candidates VARCHAR, incumbent VARCHAR) ### Question: What other cadidate ran against Dave Treen? ### Answer: SELECT candidates FROM table_1341663_19 WHERE incumbent = "Dave Treen"
What year was the earliest first elected?
CREATE TABLE table_1341663_19 (first_elected INTEGER)
SELECT MIN(first_elected) FROM table_1341663_19
### Context: CREATE TABLE table_1341663_19 (first_elected INTEGER) ### Question: What year was the earliest first elected? ### Answer: SELECT MIN(first_elected) FROM table_1341663_19
What district did Dave Treen serve?
CREATE TABLE table_1341663_19 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341663_19 WHERE incumbent = "Dave Treen"
### Context: CREATE TABLE table_1341663_19 (district VARCHAR, incumbent VARCHAR) ### Question: What district did Dave Treen serve? ### Answer: SELECT district FROM table_1341663_19 WHERE incumbent = "Dave Treen"
How many sitting politicians were originally elected in 1972?
CREATE TABLE table_1341663_11 (incumbent VARCHAR, first_elected VARCHAR)
SELECT COUNT(incumbent) FROM table_1341663_11 WHERE first_elected = 1972
### Context: CREATE TABLE table_1341663_11 (incumbent VARCHAR, first_elected VARCHAR) ### Question: How many sitting politicians were originally elected in 1972? ### Answer: SELECT COUNT(incumbent) FROM table_1341663_11 WHERE first_elected = 1972
In the Georgia 6 district, what is the elected party?
CREATE TABLE table_1341663_11 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341663_11 WHERE district = "Georgia 6"
### Context: CREATE TABLE table_1341663_11 (party VARCHAR, district VARCHAR) ### Question: In the Georgia 6 district, what is the elected party? ### Answer: SELECT party FROM table_1341663_11 WHERE district = "Georgia 6"
In the race involving Billy Lee Evans as the seated Representative, was he elected again?
CREATE TABLE table_1341663_11 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341663_11 WHERE incumbent = "Billy Lee Evans"
### Context: CREATE TABLE table_1341663_11 (result VARCHAR, incumbent VARCHAR) ### Question: In the race involving Billy Lee Evans as the seated Representative, was he elected again? ### Answer: SELECT result FROM table_1341663_11 WHERE incumbent = "Billy Lee Evans"
How many parties are there in races involving Dawson Mathis?
CREATE TABLE table_1341663_11 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(party) FROM table_1341663_11 WHERE incumbent = "Dawson Mathis"
### Context: CREATE TABLE table_1341663_11 (party VARCHAR, incumbent VARCHAR) ### Question: How many parties are there in races involving Dawson Mathis? ### Answer: SELECT COUNT(party) FROM table_1341663_11 WHERE incumbent = "Dawson Mathis"
Which district is republican?
CREATE TABLE table_1341663_44 (district VARCHAR, party VARCHAR)
SELECT district FROM table_1341663_44 WHERE party = "Republican"
### Context: CREATE TABLE table_1341663_44 (district VARCHAR, party VARCHAR) ### Question: Which district is republican? ### Answer: SELECT district FROM table_1341663_44 WHERE party = "Republican"
Name the result when the incumbent was george h. mahon
CREATE TABLE table_1341663_44 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341663_44 WHERE incumbent = "George H. Mahon"
### Context: CREATE TABLE table_1341663_44 (result VARCHAR, incumbent VARCHAR) ### Question: Name the result when the incumbent was george h. mahon ### Answer: SELECT result FROM table_1341663_44 WHERE incumbent = "George H. Mahon"
What was the incumbent of texas 3?
CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 3"
### Context: CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR) ### Question: What was the incumbent of texas 3? ### Answer: SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 3"
What was the incumbent for texas 19?
CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 19"
### Context: CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR) ### Question: What was the incumbent for texas 19? ### Answer: SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 19"
Which district has candidates is dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?
CREATE TABLE table_1341663_26 (district VARCHAR, candidates VARCHAR)
SELECT district FROM table_1341663_26 WHERE candidates = "Dick Gephardt (D) 81.9% Lee Buchschacher (R) 18.1%"
### Context: CREATE TABLE table_1341663_26 (district VARCHAR, candidates VARCHAR) ### Question: Which district has candidates is dick gephardt (d) 81.9% lee buchschacher (r) 18.1%? ### Answer: SELECT district FROM table_1341663_26 WHERE candidates = "Dick Gephardt (D) 81.9% Lee Buchschacher (R) 18.1%"
What is the result for the district missouri 2?
CREATE TABLE table_1341663_26 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341663_26 WHERE district = "Missouri 2"
### Context: CREATE TABLE table_1341663_26 (result VARCHAR, district VARCHAR) ### Question: What is the result for the district missouri 2? ### Answer: SELECT result FROM table_1341663_26 WHERE district = "Missouri 2"
When was the first elected for district missouri 7?
CREATE TABLE table_1341663_26 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_1341663_26 WHERE district = "Missouri 7"
### Context: CREATE TABLE table_1341663_26 (first_elected INTEGER, district VARCHAR) ### Question: When was the first elected for district missouri 7? ### Answer: SELECT MIN(first_elected) FROM table_1341663_26 WHERE district = "Missouri 7"
When was the earliest first election?
CREATE TABLE table_1341663_26 (first_elected INTEGER)
SELECT MIN(first_elected) FROM table_1341663_26
### Context: CREATE TABLE table_1341663_26 (first_elected INTEGER) ### Question: When was the earliest first election? ### Answer: SELECT MIN(first_elected) FROM table_1341663_26
How many times was the candidates dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?
CREATE TABLE table_1341663_26 (incumbent VARCHAR, candidates VARCHAR)
SELECT COUNT(incumbent) FROM table_1341663_26 WHERE candidates = "Dick Gephardt (D) 81.9% Lee Buchschacher (R) 18.1%"
### Context: CREATE TABLE table_1341663_26 (incumbent VARCHAR, candidates VARCHAR) ### Question: How many times was the candidates dick gephardt (d) 81.9% lee buchschacher (r) 18.1%? ### Answer: SELECT COUNT(incumbent) FROM table_1341663_26 WHERE candidates = "Dick Gephardt (D) 81.9% Lee Buchschacher (R) 18.1%"
What district did S. William Green belong to?
CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341663_33 WHERE incumbent = "S. William Green"
### Context: CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR) ### Question: What district did S. William Green belong to? ### Answer: SELECT district FROM table_1341663_33 WHERE incumbent = "S. William Green"
What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974?
CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341663_33 WHERE party = "Democratic" AND first_elected = 1974 AND incumbent = "Stephen J. Solarz"
### Context: CREATE TABLE table_1341663_33 (district VARCHAR, incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) ### Question: What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974? ### Answer: SELECT district FROM table_1341663_33 WHERE party = "Democratic" AND first_ele...
When was Stephen J. Solarz first elected?
CREATE TABLE table_1341663_33 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1341663_33 WHERE incumbent = "Stephen J. Solarz"
### Context: CREATE TABLE table_1341663_33 (first_elected INTEGER, incumbent VARCHAR) ### Question: When was Stephen J. Solarz first elected? ### Answer: SELECT MIN(first_elected) FROM table_1341663_33 WHERE incumbent = "Stephen J. Solarz"
Who were the candidates when Shirley Chisholm was the incumbent?
CREATE TABLE table_1341663_33 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341663_33 WHERE incumbent = "Shirley Chisholm"
### Context: CREATE TABLE table_1341663_33 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates when Shirley Chisholm was the incumbent? ### Answer: SELECT candidates FROM table_1341663_33 WHERE incumbent = "Shirley Chisholm"
What is the district that has Bob Wilson as an incumbent?
CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341663_6 WHERE incumbent = "Bob Wilson"
### Context: CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR) ### Question: What is the district that has Bob Wilson as an incumbent? ### Answer: SELECT district FROM table_1341663_6 WHERE incumbent = "Bob Wilson"
How many outcomes were there in the elections in California 38?
CREATE TABLE table_1341663_6 (result VARCHAR, district VARCHAR)
SELECT COUNT(result) FROM table_1341663_6 WHERE district = "California 38"
### Context: CREATE TABLE table_1341663_6 (result VARCHAR, district VARCHAR) ### Question: How many outcomes were there in the elections in California 38? ### Answer: SELECT COUNT(result) FROM table_1341663_6 WHERE district = "California 38"
What district is Charles H. Wilson the incumbent of?
CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341663_6 WHERE incumbent = "Charles H. Wilson"
### Context: CREATE TABLE table_1341663_6 (district VARCHAR, incumbent VARCHAR) ### Question: What district is Charles H. Wilson the incumbent of? ### Answer: SELECT district FROM table_1341663_6 WHERE incumbent = "Charles H. Wilson"
What party was the winning one in the elections in the California 30 district?
CREATE TABLE table_1341663_6 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341663_6 WHERE district = "California 30"
### Context: CREATE TABLE table_1341663_6 (party VARCHAR, district VARCHAR) ### Question: What party was the winning one in the elections in the California 30 district? ### Answer: SELECT party FROM table_1341663_6 WHERE district = "California 30"
How many times did an election feature the result robert l. leggett (d) 50.2% albert dehr (r) 49.8%?
CREATE TABLE table_1341672_6 (result VARCHAR, candidates VARCHAR)
SELECT COUNT(result) FROM table_1341672_6 WHERE candidates = "Robert L. Leggett (D) 50.2% Albert Dehr (R) 49.8%"
### Context: CREATE TABLE table_1341672_6 (result VARCHAR, candidates VARCHAR) ### Question: How many times did an election feature the result robert l. leggett (d) 50.2% albert dehr (r) 49.8%? ### Answer: SELECT COUNT(result) FROM table_1341672_6 WHERE candidates = "Robert L. Leggett (D) 50.2% Albert Dehr (R) 49.8%"
What year was incumbent mark w. hannaford elected?
CREATE TABLE table_1341672_6 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1341672_6 WHERE incumbent = "Mark W. Hannaford"
### Context: CREATE TABLE table_1341672_6 (first_elected INTEGER, incumbent VARCHAR) ### Question: What year was incumbent mark w. hannaford elected? ### Answer: SELECT MIN(first_elected) FROM table_1341672_6 WHERE incumbent = "Mark W. Hannaford"
what is the district where the incumbent is richard kelly?
CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341672_10 WHERE incumbent = "Richard Kelly"
### Context: CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR) ### Question: what is the district where the incumbent is richard kelly? ### Answer: SELECT district FROM table_1341672_10 WHERE incumbent = "Richard Kelly"