question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
When was James William Trimble first elected in the Arkansas 3 district?
CREATE TABLE table_1341897_6 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_1341897_6 WHERE district = "Arkansas 3"
### Context: CREATE TABLE table_1341897_6 (first_elected INTEGER, district VARCHAR) ### Question: When was James William Trimble first elected in the Arkansas 3 district? ### Answer: SELECT MIN(first_elected) FROM table_1341897_6 WHERE district = "Arkansas 3"
When party did the incumbent in the Arkansas 5 district belong to?
CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341897_6 WHERE district = "Arkansas 5"
### Context: CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR) ### Question: When party did the incumbent in the Arkansas 5 district belong to? ### Answer: SELECT party FROM table_1341897_6 WHERE district = "Arkansas 5"
What was the result in the Arkansas 5 district election?
CREATE TABLE table_1341897_6 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341897_6 WHERE district = "Arkansas 5"
### Context: CREATE TABLE table_1341897_6 (result VARCHAR, district VARCHAR) ### Question: What was the result in the Arkansas 5 district election? ### Answer: SELECT result FROM table_1341897_6 WHERE district = "Arkansas 5"
What party did the incumbent in the Arkansas 2 district belong to?
CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341897_6 WHERE district = "Arkansas 2"
### Context: CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR) ### Question: What party did the incumbent in the Arkansas 2 district belong to? ### Answer: SELECT party FROM table_1341897_6 WHERE district = "Arkansas 2"
How many candidates were there in the election for William Jennings Bryan Dorn's seat?
CREATE TABLE table_1341897_42 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341897_42 WHERE incumbent = "William Jennings Bryan Dorn"
### Context: CREATE TABLE table_1341897_42 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many candidates were there in the election for William Jennings Bryan Dorn's seat? ### Answer: SELECT COUNT(candidates) FROM table_1341897_42 WHERE incumbent = "William Jennings Bryan Dorn"
What is the earliest year that a candidate was first elected?
CREATE TABLE table_1341897_42 (first_elected INTEGER)
SELECT MIN(first_elected) FROM table_1341897_42
### Context: CREATE TABLE table_1341897_42 (first_elected INTEGER) ### Question: What is the earliest year that a candidate was first elected? ### Answer: SELECT MIN(first_elected) FROM table_1341897_42
What was the result of the election in which Lindley Beckworth was the incumbent?
CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341897_45 WHERE incumbent = "Lindley Beckworth"
### Context: CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of the election in which Lindley Beckworth was the incumbent? ### Answer: SELECT result FROM table_1341897_45 WHERE incumbent = "Lindley Beckworth"
Which incumbent was first elected in 1936?
CREATE TABLE table_1341897_45 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341897_45 WHERE first_elected = 1936
### Context: CREATE TABLE table_1341897_45 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Which incumbent was first elected in 1936? ### Answer: SELECT incumbent FROM table_1341897_45 WHERE first_elected = 1936
What was the result of the election in which Walter E. Rogers was the incumbent?
CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341897_45 WHERE incumbent = "Walter E. Rogers"
### Context: CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of the election in which Walter E. Rogers was the incumbent? ### Answer: SELECT result FROM table_1341897_45 WHERE incumbent = "Walter E. Rogers"
When was Paul Rogers first elected?
CREATE TABLE table_1341930_10 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341930_10 WHERE incumbent = "Paul Rogers"
### Context: CREATE TABLE table_1341930_10 (first_elected VARCHAR, incumbent VARCHAR) ### Question: When was Paul Rogers first elected? ### Answer: SELECT first_elected FROM table_1341930_10 WHERE incumbent = "Paul Rogers"
Which district is James A. Haley from?
CREATE TABLE table_1341930_10 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341930_10 WHERE incumbent = "James A. Haley"
### Context: CREATE TABLE table_1341930_10 (district VARCHAR, incumbent VARCHAR) ### Question: Which district is James A. Haley from? ### Answer: SELECT district FROM table_1341930_10 WHERE incumbent = "James A. Haley"
What year were the latest elections?
CREATE TABLE table_1341930_10 (first_elected INTEGER)
SELECT MAX(first_elected) FROM table_1341930_10
### Context: CREATE TABLE table_1341930_10 (first_elected INTEGER) ### Question: What year were the latest elections? ### Answer: SELECT MAX(first_elected) FROM table_1341930_10
In what district is the incumbent John Bell Williams?
CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341930_24 WHERE incumbent = "John Bell Williams"
### Context: CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR) ### Question: In what district is the incumbent John Bell Williams? ### Answer: SELECT district FROM table_1341930_24 WHERE incumbent = "John Bell Williams"
In what year was John Bell Williams first elected?
CREATE TABLE table_1341930_24 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341930_24 WHERE incumbent = "John Bell Williams"
### Context: CREATE TABLE table_1341930_24 (first_elected VARCHAR, incumbent VARCHAR) ### Question: In what year was John Bell Williams first elected? ### Answer: SELECT first_elected FROM table_1341930_24 WHERE incumbent = "John Bell Williams"
How many districts have W. Arthur Winstead as elected official?
CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1341930_24 WHERE incumbent = "W. Arthur Winstead"
### Context: CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR) ### Question: How many districts have W. Arthur Winstead as elected official? ### Answer: SELECT COUNT(district) FROM table_1341930_24 WHERE incumbent = "W. Arthur Winstead"
What is the district for carl vinson?
CREATE TABLE table_1341930_11 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341930_11 WHERE incumbent = "Carl Vinson"
### Context: CREATE TABLE table_1341930_11 (district VARCHAR, incumbent VARCHAR) ### Question: What is the district for carl vinson? ### Answer: SELECT district FROM table_1341930_11 WHERE incumbent = "Carl Vinson"
What is the most first elected for james c. davis?
CREATE TABLE table_1341930_11 (first_elected INTEGER, incumbent VARCHAR)
SELECT MAX(first_elected) FROM table_1341930_11 WHERE incumbent = "James C. Davis"
### Context: CREATE TABLE table_1341930_11 (first_elected INTEGER, incumbent VARCHAR) ### Question: What is the most first elected for james c. davis? ### Answer: SELECT MAX(first_elected) FROM table_1341930_11 WHERE incumbent = "James C. Davis"
What is the first elected for georgia 4?
CREATE TABLE table_1341930_11 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341930_11 WHERE district = "Georgia 4"
### Context: CREATE TABLE table_1341930_11 (first_elected VARCHAR, district VARCHAR) ### Question: What is the first elected for georgia 4? ### Answer: SELECT first_elected FROM table_1341930_11 WHERE district = "Georgia 4"
which affiliation does edwin e. willis affiliate with
CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341930_18 WHERE incumbent = "Edwin E. Willis"
### Context: CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR) ### Question: which affiliation does edwin e. willis affiliate with ### Answer: SELECT party FROM table_1341930_18 WHERE incumbent = "Edwin E. Willis"
which affiliation is james h. morrison part of
CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341930_18 WHERE incumbent = "James H. Morrison"
### Context: CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR) ### Question: which affiliation is james h. morrison part of ### Answer: SELECT party FROM table_1341930_18 WHERE incumbent = "James H. Morrison"
Who is the candidate that was first elected in 1914?
CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914
### Context: CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR) ### Question: Who is the candidate that was first elected in 1914? ### Answer: SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914
In which district is the incumbent Carl Vinson?
CREATE TABLE table_1341973_11 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341973_11 WHERE incumbent = "Carl Vinson"
### Context: CREATE TABLE table_1341973_11 (district VARCHAR, incumbent VARCHAR) ### Question: In which district is the incumbent Carl Vinson? ### Answer: SELECT district FROM table_1341973_11 WHERE incumbent = "Carl Vinson"
Name the candidates for l. mendel rivers
CREATE TABLE table_1341930_40 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341930_40 WHERE incumbent = "L. Mendel Rivers"
### Context: CREATE TABLE table_1341930_40 (candidates VARCHAR, incumbent VARCHAR) ### Question: Name the candidates for l. mendel rivers ### Answer: SELECT COUNT(candidates) FROM table_1341930_40 WHERE incumbent = "L. Mendel Rivers"
Name the result for south carolina 4
CREATE TABLE table_1341930_40 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341930_40 WHERE district = "South Carolina 4"
### Context: CREATE TABLE table_1341930_40 (result VARCHAR, district VARCHAR) ### Question: Name the result for south carolina 4 ### Answer: SELECT result FROM table_1341930_40 WHERE district = "South Carolina 4"
Name the candidates for south carolina 3
CREATE TABLE table_1341930_40 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341930_40 WHERE district = "South Carolina 3"
### Context: CREATE TABLE table_1341930_40 (candidates VARCHAR, district VARCHAR) ### Question: Name the candidates for south carolina 3 ### Answer: SELECT candidates FROM table_1341930_40 WHERE district = "South Carolina 3"
Name the incumbent for first elected 1956
CREATE TABLE table_1341930_40 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341930_40 WHERE first_elected = 1956
### Context: CREATE TABLE table_1341930_40 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Name the incumbent for first elected 1956 ### Answer: SELECT incumbent FROM table_1341930_40 WHERE first_elected = 1956
Name the number of party with the incubent james william trimble
CREATE TABLE table_1341930_5 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(party) FROM table_1341930_5 WHERE incumbent = "James William Trimble"
### Context: CREATE TABLE table_1341930_5 (party VARCHAR, incumbent VARCHAR) ### Question: Name the number of party with the incubent james william trimble ### Answer: SELECT COUNT(party) FROM table_1341930_5 WHERE incumbent = "James William Trimble"
What is the result for first elected in 1944
CREATE TABLE table_1341930_5 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1341930_5 WHERE first_elected = 1944
### Context: CREATE TABLE table_1341930_5 (result VARCHAR, first_elected VARCHAR) ### Question: What is the result for first elected in 1944 ### Answer: SELECT result FROM table_1341930_5 WHERE first_elected = 1944
What is the number of party in the arkansas 1 district
CREATE TABLE table_1341930_5 (party VARCHAR, district VARCHAR)
SELECT COUNT(party) FROM table_1341930_5 WHERE district = "Arkansas 1"
### Context: CREATE TABLE table_1341930_5 (party VARCHAR, district VARCHAR) ### Question: What is the number of party in the arkansas 1 district ### Answer: SELECT COUNT(party) FROM table_1341930_5 WHERE district = "Arkansas 1"
Who is the incumbent in the Alabama 6 voting district?
CREATE TABLE table_1341973_3 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341973_3 WHERE district = "Alabama 6"
### Context: CREATE TABLE table_1341973_3 (incumbent VARCHAR, district VARCHAR) ### Question: Who is the incumbent in the Alabama 6 voting district? ### Answer: SELECT incumbent FROM table_1341973_3 WHERE district = "Alabama 6"
Which candidates were in the election where Frank W. Boykin was an incumbent?
CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341973_3 WHERE incumbent = "Frank W. Boykin"
### Context: CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR) ### Question: Which candidates were in the election where Frank W. Boykin was an incumbent? ### Answer: SELECT candidates FROM table_1341973_3 WHERE incumbent = "Frank W. Boykin"
Who were the candidates in the election where the incumbent is George M. Grant?
CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341973_3 WHERE incumbent = "George M. Grant"
### Context: CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates in the election where the incumbent is George M. Grant? ### Answer: SELECT candidates FROM table_1341973_3 WHERE incumbent = "George M. Grant"
Which candidates ran in the Alabama 6 district?
CREATE TABLE table_1341973_3 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341973_3 WHERE district = "Alabama 6"
### Context: CREATE TABLE table_1341973_3 (candidates VARCHAR, district VARCHAR) ### Question: Which candidates ran in the Alabama 6 district? ### Answer: SELECT candidates FROM table_1341973_3 WHERE district = "Alabama 6"
What is the latest year listed with the Alabama 4 voting district?
CREATE TABLE table_1341973_3 (first_elected INTEGER, district VARCHAR)
SELECT MAX(first_elected) FROM table_1341973_3 WHERE district = "Alabama 4"
### Context: CREATE TABLE table_1341973_3 (first_elected INTEGER, district VARCHAR) ### Question: What is the latest year listed with the Alabama 4 voting district? ### Answer: SELECT MAX(first_elected) FROM table_1341973_3 WHERE district = "Alabama 4"
What was the result when incumbent Fred E. Busbey was elected?
CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342013_12 WHERE incumbent = "Fred E. Busbey"
### Context: CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result when incumbent Fred E. Busbey was elected? ### Answer: SELECT result FROM table_1342013_12 WHERE incumbent = "Fred E. Busbey"
How many results are listed for the election where Noah M. Mason was elected?
CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(result) FROM table_1342013_12 WHERE incumbent = "Noah M. Mason"
### Context: CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR) ### Question: How many results are listed for the election where Noah M. Mason was elected? ### Answer: SELECT COUNT(result) FROM table_1342013_12 WHERE incumbent = "Noah M. Mason"
What was the result when Leo E. Allen was elected?
CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342013_12 WHERE incumbent = "Leo E. Allen"
### Context: CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result when Leo E. Allen was elected? ### Answer: SELECT result FROM table_1342013_12 WHERE incumbent = "Leo E. Allen"
Which party had a person who has been in the seat since 1914?
CREATE TABLE table_1342013_10 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_1342013_10 WHERE first_elected = 1914
### Context: CREATE TABLE table_1342013_10 (party VARCHAR, first_elected VARCHAR) ### Question: Which party had a person who has been in the seat since 1914? ### Answer: SELECT party FROM table_1342013_10 WHERE first_elected = 1914
Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr.
CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1342013_10 WHERE incumbent = "Prince Hulon Preston, Jr."
### Context: CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR) ### Question: Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr. ### Answer: SELECT candidates FROM table_1342013_10 WHERE incumbent = "Prince Hulon Preston, Jr."
How many candidates ran in the race where the incumbent is J. L. Pilcher?
CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1342013_10 WHERE incumbent = "J. L. Pilcher"
### Context: CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many candidates ran in the race where the incumbent is J. L. Pilcher? ### Answer: SELECT COUNT(candidates) FROM table_1342013_10 WHERE incumbent = "J. L. Pilcher"
John W. Heselton was first elected in what year?
CREATE TABLE table_1342013_20 (first_elected INTEGER, incumbent VARCHAR)
SELECT MAX(first_elected) FROM table_1342013_20 WHERE incumbent = "John W. Heselton"
### Context: CREATE TABLE table_1342013_20 (first_elected INTEGER, incumbent VARCHAR) ### Question: John W. Heselton was first elected in what year? ### Answer: SELECT MAX(first_elected) FROM table_1342013_20 WHERE incumbent = "John W. Heselton"
Thomas J. Lane is the incumbent of how many parties?
CREATE TABLE table_1342013_20 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(party) FROM table_1342013_20 WHERE incumbent = "Thomas J. Lane"
### Context: CREATE TABLE table_1342013_20 (party VARCHAR, incumbent VARCHAR) ### Question: Thomas J. Lane is the incumbent of how many parties? ### Answer: SELECT COUNT(party) FROM table_1342013_20 WHERE incumbent = "Thomas J. Lane"
Who is the incumbent first elected in 1944?
CREATE TABLE table_1342013_20 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1342013_20 WHERE first_elected = 1944
### Context: CREATE TABLE table_1342013_20 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Who is the incumbent first elected in 1944? ### Answer: SELECT incumbent FROM table_1342013_20 WHERE first_elected = 1944
What was the result for the politician first elected in 1942?
CREATE TABLE table_1342013_20 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1342013_20 WHERE first_elected = 1942
### Context: CREATE TABLE table_1342013_20 (result VARCHAR, first_elected VARCHAR) ### Question: What was the result for the politician first elected in 1942? ### Answer: SELECT result FROM table_1342013_20 WHERE first_elected = 1942
what's the result for district ohio 2
CREATE TABLE table_1342013_34 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1342013_34 WHERE district = "Ohio 2"
### Context: CREATE TABLE table_1342013_34 (result VARCHAR, district VARCHAR) ### Question: what's the result for district ohio 2 ### Answer: SELECT result FROM table_1342013_34 WHERE district = "Ohio 2"
who is the the incumbent with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%
CREATE TABLE table_1342013_34 (incumbent VARCHAR, candidates VARCHAR)
SELECT incumbent FROM table_1342013_34 WHERE candidates = "John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%"
### Context: CREATE TABLE table_1342013_34 (incumbent VARCHAR, candidates VARCHAR) ### Question: who is the the incumbent with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% ### Answer: SELECT incumbent FROM table_1342013_34 WHERE candidates = "John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%"
who is the the incumbent with district being ohio 2
CREATE TABLE table_1342013_34 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1342013_34 WHERE district = "Ohio 2"
### Context: CREATE TABLE table_1342013_34 (incumbent VARCHAR, district VARCHAR) ### Question: who is the the incumbent with district being ohio 2 ### Answer: SELECT incumbent FROM table_1342013_34 WHERE district = "Ohio 2"
what's the result with incumbent being william h. ayres
CREATE TABLE table_1342013_34 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342013_34 WHERE incumbent = "William H. Ayres"
### Context: CREATE TABLE table_1342013_34 (result VARCHAR, incumbent VARCHAR) ### Question: what's the result with incumbent being william h. ayres ### Answer: SELECT result FROM table_1342013_34 WHERE incumbent = "William H. Ayres"
how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%
CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR)
SELECT COUNT(party) FROM table_1342013_34 WHERE candidates = "John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%"
### Context: CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR) ### Question: how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% ### Answer: SELECT COUNT(party) FROM table_1342013_34 WHERE candidates = "John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%"
what district is Brooks Hays in
CREATE TABLE table_1342013_4 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1342013_4 WHERE incumbent = "Brooks Hays"
### Context: CREATE TABLE table_1342013_4 (district VARCHAR, incumbent VARCHAR) ### Question: what district is Brooks Hays in ### Answer: SELECT district FROM table_1342013_4 WHERE incumbent = "Brooks Hays"
Omar Burleson was the incumbent in what district?
CREATE TABLE table_1342013_42 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1342013_42 WHERE incumbent = "Omar Burleson"
### Context: CREATE TABLE table_1342013_42 (district VARCHAR, incumbent VARCHAR) ### Question: Omar Burleson was the incumbent in what district? ### Answer: SELECT district FROM table_1342013_42 WHERE incumbent = "Omar Burleson"
In what district was incumbent first elected in 1938?
CREATE TABLE table_1342013_42 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1342013_42 WHERE first_elected = 1938
### Context: CREATE TABLE table_1342013_42 (district VARCHAR, first_elected VARCHAR) ### Question: In what district was incumbent first elected in 1938? ### Answer: SELECT district FROM table_1342013_42 WHERE first_elected = 1938
Name the party for the pennsylvania 25
CREATE TABLE table_1342013_37 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1342013_37 WHERE district = "Pennsylvania 25"
### Context: CREATE TABLE table_1342013_37 (party VARCHAR, district VARCHAR) ### Question: Name the party for the pennsylvania 25 ### Answer: SELECT party FROM table_1342013_37 WHERE district = "Pennsylvania 25"
Name the minumim first elected for alvin bush
CREATE TABLE table_1342013_37 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1342013_37 WHERE incumbent = "Alvin Bush"
### Context: CREATE TABLE table_1342013_37 (first_elected INTEGER, incumbent VARCHAR) ### Question: Name the minumim first elected for alvin bush ### Answer: SELECT MIN(first_elected) FROM table_1342013_37 WHERE incumbent = "Alvin Bush"
What is the incumbent for pennsylvania 15
CREATE TABLE table_1342013_37 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1342013_37 WHERE district = "Pennsylvania 15"
### Context: CREATE TABLE table_1342013_37 (incumbent VARCHAR, district VARCHAR) ### Question: What is the incumbent for pennsylvania 15 ### Answer: SELECT incumbent FROM table_1342013_37 WHERE district = "Pennsylvania 15"
What are the candidates for noah m. mason?
CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1342149_13 WHERE incumbent = "Noah M. Mason"
### Context: CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR) ### Question: What are the candidates for noah m. mason? ### Answer: SELECT COUNT(candidates) FROM table_1342149_13 WHERE incumbent = "Noah M. Mason"
What is the candidates for fred e. busbey?
CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1342149_13 WHERE incumbent = "Fred E. Busbey"
### Context: CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR) ### Question: What is the candidates for fred e. busbey? ### Answer: SELECT candidates FROM table_1342149_13 WHERE incumbent = "Fred E. Busbey"
What is the incumbent for 1932?
CREATE TABLE table_1342149_13 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932
### Context: CREATE TABLE table_1342149_13 (incumbent VARCHAR, first_elected VARCHAR) ### Question: What is the incumbent for 1932? ### Answer: SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932
how many first elected with incumbent being charles edward bennett
CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = "Charles Edward Bennett"
### Context: CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR) ### Question: how many first elected with incumbent being charles edward bennett ### Answer: SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = "Charles Edward Bennett"
who is the the incumbent with dbeingtrict being florida 2
CREATE TABLE table_1342013_9 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1342013_9 WHERE district = "Florida 2"
### Context: CREATE TABLE table_1342013_9 (incumbent VARCHAR, district VARCHAR) ### Question: who is the the incumbent with dbeingtrict being florida 2 ### Answer: SELECT incumbent FROM table_1342013_9 WHERE district = "Florida 2"
what's the result with candidates being charles edward bennett (d) unopposed
CREATE TABLE table_1342013_9 (result VARCHAR, candidates VARCHAR)
SELECT result FROM table_1342013_9 WHERE candidates = "Charles Edward Bennett (D) Unopposed"
### Context: CREATE TABLE table_1342013_9 (result VARCHAR, candidates VARCHAR) ### Question: what's the result with candidates being charles edward bennett (d) unopposed ### Answer: SELECT result FROM table_1342013_9 WHERE candidates = "Charles Edward Bennett (D) Unopposed"
what's the result with dbeingtrict being florida 4
CREATE TABLE table_1342013_9 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1342013_9 WHERE district = "Florida 4"
### Context: CREATE TABLE table_1342013_9 (result VARCHAR, district VARCHAR) ### Question: what's the result with dbeingtrict being florida 4 ### Answer: SELECT result FROM table_1342013_9 WHERE district = "Florida 4"
how many party with candidates being charles edward bennett (d) unopposed
CREATE TABLE table_1342013_9 (party VARCHAR, candidates VARCHAR)
SELECT COUNT(party) FROM table_1342013_9 WHERE candidates = "Charles Edward Bennett (D) Unopposed"
### Context: CREATE TABLE table_1342013_9 (party VARCHAR, candidates VARCHAR) ### Question: how many party with candidates being charles edward bennett (d) unopposed ### Answer: SELECT COUNT(party) FROM table_1342013_9 WHERE candidates = "Charles Edward Bennett (D) Unopposed"
how many first elected with incumbent being william c. lantaff
CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = "William C. Lantaff"
### Context: CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR) ### Question: how many first elected with incumbent being william c. lantaff ### Answer: SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = "William C. Lantaff"
What was the result of the election when Tic Forrester ran as an incumbent?
CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342149_11 WHERE incumbent = "Tic Forrester"
### Context: CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of the election when Tic Forrester ran as an incumbent? ### Answer: SELECT result FROM table_1342149_11 WHERE incumbent = "Tic Forrester"
What was the final result for Craig Hosmer?
CREATE TABLE table_1342013_5 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342013_5 WHERE incumbent = "Craig Hosmer"
### Context: CREATE TABLE table_1342013_5 (result VARCHAR, incumbent VARCHAR) ### Question: What was the final result for Craig Hosmer? ### Answer: SELECT result FROM table_1342013_5 WHERE incumbent = "Craig Hosmer"
What district does Harlan Hagen represent?
CREATE TABLE table_1342013_5 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1342013_5 WHERE incumbent = "Harlan Hagen"
### Context: CREATE TABLE table_1342013_5 (district VARCHAR, incumbent VARCHAR) ### Question: What district does Harlan Hagen represent? ### Answer: SELECT district FROM table_1342013_5 WHERE incumbent = "Harlan Hagen"
Who was the candidate in the election in the Louisiana 2 district?
CREATE TABLE table_1342149_18 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1342149_18 WHERE district = "Louisiana 2"
### Context: CREATE TABLE table_1342149_18 (candidates VARCHAR, district VARCHAR) ### Question: Who was the candidate in the election in the Louisiana 2 district? ### Answer: SELECT candidates FROM table_1342149_18 WHERE district = "Louisiana 2"
What candidate was re-elected in the Louisiana 5 district?
CREATE TABLE table_1342149_18 (candidates VARCHAR, result VARCHAR, district VARCHAR)
SELECT candidates FROM table_1342149_18 WHERE result = "Re-elected" AND district = "Louisiana 5"
### Context: CREATE TABLE table_1342149_18 (candidates VARCHAR, result VARCHAR, district VARCHAR) ### Question: What candidate was re-elected in the Louisiana 5 district? ### Answer: SELECT candidates FROM table_1342149_18 WHERE result = "Re-elected" AND district = "Louisiana 5"
What party's candidate was re-elected in the Louisiana 6 district?
CREATE TABLE table_1342149_18 (party VARCHAR, result VARCHAR, district VARCHAR)
SELECT party FROM table_1342149_18 WHERE result = "Re-elected" AND district = "Louisiana 6"
### Context: CREATE TABLE table_1342149_18 (party VARCHAR, result VARCHAR, district VARCHAR) ### Question: What party's candidate was re-elected in the Louisiana 6 district? ### Answer: SELECT party FROM table_1342149_18 WHERE result = "Re-elected" AND district = "Louisiana 6"
What was the result in the election where Hale Boggs was the incumbent?
CREATE TABLE table_1342149_18 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342149_18 WHERE incumbent = "Hale Boggs"
### Context: CREATE TABLE table_1342149_18 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result in the election where Hale Boggs was the incumbent? ### Answer: SELECT result FROM table_1342149_18 WHERE incumbent = "Hale Boggs"
Name the result for mississippi 2
CREATE TABLE table_1342149_24 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1342149_24 WHERE district = "Mississippi 2"
### Context: CREATE TABLE table_1342149_24 (result VARCHAR, district VARCHAR) ### Question: Name the result for mississippi 2 ### Answer: SELECT result FROM table_1342149_24 WHERE district = "Mississippi 2"
Name the number of candidates for 1941
CREATE TABLE table_1342149_24 (candidates VARCHAR, first_elected VARCHAR)
SELECT COUNT(candidates) FROM table_1342149_24 WHERE first_elected = 1941
### Context: CREATE TABLE table_1342149_24 (candidates VARCHAR, first_elected VARCHAR) ### Question: Name the number of candidates for 1941 ### Answer: SELECT COUNT(candidates) FROM table_1342149_24 WHERE first_elected = 1941
Name the candidates for result of lost renomination democratic loss
CREATE TABLE table_1342149_24 (candidates VARCHAR, result VARCHAR)
SELECT candidates FROM table_1342149_24 WHERE result = "Lost renomination Democratic loss"
### Context: CREATE TABLE table_1342149_24 (candidates VARCHAR, result VARCHAR) ### Question: Name the candidates for result of lost renomination democratic loss ### Answer: SELECT candidates FROM table_1342149_24 WHERE result = "Lost renomination Democratic loss"
Name the result for first elected of 1920
CREATE TABLE table_1342149_24 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1342149_24 WHERE first_elected = 1920
### Context: CREATE TABLE table_1342149_24 (result VARCHAR, first_elected VARCHAR) ### Question: Name the result for first elected of 1920 ### Answer: SELECT result FROM table_1342149_24 WHERE first_elected = 1920
In the District Tennessee 7 what is the number of first elected?
CREATE TABLE table_1342149_42 (first_elected INTEGER, district VARCHAR)
SELECT MAX(first_elected) FROM table_1342149_42 WHERE district = "Tennessee 7"
### Context: CREATE TABLE table_1342149_42 (first_elected INTEGER, district VARCHAR) ### Question: In the District Tennessee 7 what is the number of first elected? ### Answer: SELECT MAX(first_elected) FROM table_1342149_42 WHERE district = "Tennessee 7"
What is the candidates result that is tom j. murray (d) unopposed?
CREATE TABLE table_1342149_42 (result VARCHAR, candidates VARCHAR)
SELECT result FROM table_1342149_42 WHERE candidates = "Tom J. Murray (D) Unopposed"
### Context: CREATE TABLE table_1342149_42 (result VARCHAR, candidates VARCHAR) ### Question: What is the candidates result that is tom j. murray (d) unopposed? ### Answer: SELECT result FROM table_1342149_42 WHERE candidates = "Tom J. Murray (D) Unopposed"
For the Republican party what are the names of the incumbents?
CREATE TABLE table_1342149_42 (incumbent VARCHAR, party VARCHAR)
SELECT incumbent FROM table_1342149_42 WHERE party = "Republican"
### Context: CREATE TABLE table_1342149_42 (incumbent VARCHAR, party VARCHAR) ### Question: For the Republican party what are the names of the incumbents? ### Answer: SELECT incumbent FROM table_1342149_42 WHERE party = "Republican"
How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.1%?
CREATE TABLE table_1342149_42 (party VARCHAR, candidates VARCHAR)
SELECT COUNT(party) FROM table_1342149_42 WHERE candidates = "Howard Baker, Sr. (R) 68.9% Boyd W. Cox (D) 31.1%"
### Context: CREATE TABLE table_1342149_42 (party VARCHAR, candidates VARCHAR) ### Question: How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.1%? ### Answer: SELECT COUNT(party) FROM table_1342149_42 WHERE candidates = "Howard Baker, Sr. (R) 68.9% Boyd W. Cox (D) 31.1%"
Which district had Paul B. Dague as the incumbent?
CREATE TABLE table_1342149_38 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1342149_38 WHERE incumbent = "Paul B. Dague"
### Context: CREATE TABLE table_1342149_38 (district VARCHAR, incumbent VARCHAR) ### Question: Which district had Paul B. Dague as the incumbent? ### Answer: SELECT district FROM table_1342149_38 WHERE incumbent = "Paul B. Dague"
What was the result in the election where the incumbent was first elected in 1942?
CREATE TABLE table_1342149_43 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1342149_43 WHERE first_elected = "1942"
### Context: CREATE TABLE table_1342149_43 (result VARCHAR, first_elected VARCHAR) ### Question: What was the result in the election where the incumbent was first elected in 1942? ### Answer: SELECT result FROM table_1342149_43 WHERE first_elected = "1942"
What was the result of the election in the Texas 3 district?
CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1342149_43 WHERE district = "Texas 3"
### Context: CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR) ### Question: What was the result of the election in the Texas 3 district? ### Answer: SELECT result FROM table_1342149_43 WHERE district = "Texas 3"
What party did incumbent Wright Patman belong to?
CREATE TABLE table_1342149_43 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1342149_43 WHERE incumbent = "Wright Patman"
### Context: CREATE TABLE table_1342149_43 (party VARCHAR, incumbent VARCHAR) ### Question: What party did incumbent Wright Patman belong to? ### Answer: SELECT party FROM table_1342149_43 WHERE incumbent = "Wright Patman"
What was the result of the election in the Texas 4 district?
CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1342149_43 WHERE district = "Texas 4"
### Context: CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR) ### Question: What was the result of the election in the Texas 4 district? ### Answer: SELECT result FROM table_1342149_43 WHERE district = "Texas 4"
What party did the re-elected incumbent of the Texas 11 district belong to?
CREATE TABLE table_1342149_43 (party VARCHAR, result VARCHAR, district VARCHAR)
SELECT party FROM table_1342149_43 WHERE result = "Re-elected" AND district = "Texas 11"
### Context: CREATE TABLE table_1342149_43 (party VARCHAR, result VARCHAR, district VARCHAR) ### Question: What party did the re-elected incumbent of the Texas 11 district belong to? ### Answer: SELECT party FROM table_1342149_43 WHERE result = "Re-elected" AND district = "Texas 11"
List all those first elected in the California 22 voting district.
CREATE TABLE table_1342149_6 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1342149_6 WHERE district = "California 22"
### Context: CREATE TABLE table_1342149_6 (first_elected VARCHAR, district VARCHAR) ### Question: List all those first elected in the California 22 voting district. ### Answer: SELECT first_elected FROM table_1342149_6 WHERE district = "California 22"
Who was the first elected incumbent in the 1946 election?
CREATE TABLE table_1342149_6 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1342149_6 WHERE first_elected = "1946"
### Context: CREATE TABLE table_1342149_6 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Who was the first elected incumbent in the 1946 election? ### Answer: SELECT incumbent FROM table_1342149_6 WHERE first_elected = "1946"
How many results does the California 29 voting district have?
CREATE TABLE table_1342149_6 (result VARCHAR, district VARCHAR)
SELECT COUNT(result) FROM table_1342149_6 WHERE district = "California 29"
### Context: CREATE TABLE table_1342149_6 (result VARCHAR, district VARCHAR) ### Question: How many results does the California 29 voting district have? ### Answer: SELECT COUNT(result) FROM table_1342149_6 WHERE district = "California 29"
Which party had Clair Engle as an incumbent?
CREATE TABLE table_1342149_6 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1342149_6 WHERE incumbent = "Clair Engle"
### Context: CREATE TABLE table_1342149_6 (party VARCHAR, incumbent VARCHAR) ### Question: Which party had Clair Engle as an incumbent? ### Answer: SELECT party FROM table_1342149_6 WHERE incumbent = "Clair Engle"
What party does sid simpson represent?
CREATE TABLE table_1342198_13 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1342198_13 WHERE incumbent = "Sid Simpson"
### Context: CREATE TABLE table_1342198_13 (party VARCHAR, incumbent VARCHAR) ### Question: What party does sid simpson represent? ### Answer: SELECT party FROM table_1342198_13 WHERE incumbent = "Sid Simpson"
How many candidates ran against barratt o'hara?
CREATE TABLE table_1342198_13 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1342198_13 WHERE incumbent = "Barratt O'Hara"
### Context: CREATE TABLE table_1342198_13 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many candidates ran against barratt o'hara? ### Answer: SELECT COUNT(candidates) FROM table_1342198_13 WHERE incumbent = "Barratt O'Hara"
What year was incumbent barratt o'hara first elected?
CREATE TABLE table_1342198_13 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1342198_13 WHERE incumbent = "Barratt O'Hara"
### Context: CREATE TABLE table_1342198_13 (first_elected VARCHAR, incumbent VARCHAR) ### Question: What year was incumbent barratt o'hara first elected? ### Answer: SELECT first_elected FROM table_1342198_13 WHERE incumbent = "Barratt O'Hara"
How many results for minimum first elected incumbent Noble Jones Gregory?
CREATE TABLE table_1342198_17 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1342198_17 WHERE incumbent = "Noble Jones Gregory"
### Context: CREATE TABLE table_1342198_17 (first_elected INTEGER, incumbent VARCHAR) ### Question: How many results for minimum first elected incumbent Noble Jones Gregory? ### Answer: SELECT MIN(first_elected) FROM table_1342198_17 WHERE incumbent = "Noble Jones Gregory"
How many results for incumbent Noble Jones Gregory?
CREATE TABLE table_1342198_17 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1342198_17 WHERE incumbent = "Noble Jones Gregory"
### Context: CREATE TABLE table_1342198_17 (district VARCHAR, incumbent VARCHAR) ### Question: How many results for incumbent Noble Jones Gregory? ### Answer: SELECT COUNT(district) FROM table_1342198_17 WHERE incumbent = "Noble Jones Gregory"
Who is the candidate wehre district is louisiana 1?
CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1342198_18 WHERE district = "Louisiana 1"
### Context: CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR) ### Question: Who is the candidate wehre district is louisiana 1? ### Answer: SELECT candidates FROM table_1342198_18 WHERE district = "Louisiana 1"
What is the party where the incumbent is overton brooks?
CREATE TABLE table_1342198_18 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1342198_18 WHERE incumbent = "Overton Brooks"
### Context: CREATE TABLE table_1342198_18 (party VARCHAR, incumbent VARCHAR) ### Question: What is the party where the incumbent is overton brooks? ### Answer: SELECT party FROM table_1342198_18 WHERE incumbent = "Overton Brooks"
who athe party where district is louisiana 2?
CREATE TABLE table_1342198_18 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1342198_18 WHERE district = "Louisiana 2"
### Context: CREATE TABLE table_1342198_18 (party VARCHAR, district VARCHAR) ### Question: who athe party where district is louisiana 2? ### Answer: SELECT party FROM table_1342198_18 WHERE district = "Louisiana 2"
who is the candidate where district is louisiana 3?
CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1342198_18 WHERE district = "Louisiana 3"
### Context: CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR) ### Question: who is the candidate where district is louisiana 3? ### Answer: SELECT candidates FROM table_1342198_18 WHERE district = "Louisiana 3"
what is the minimum number first elected to district louisiana 5?
CREATE TABLE table_1342198_18 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_1342198_18 WHERE district = "Louisiana 5"
### Context: CREATE TABLE table_1342198_18 (first_elected INTEGER, district VARCHAR) ### Question: what is the minimum number first elected to district louisiana 5? ### Answer: SELECT MIN(first_elected) FROM table_1342198_18 WHERE district = "Louisiana 5"
What was the result when incumbent Tom Steed was elected?
CREATE TABLE table_1342198_36 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342198_36 WHERE incumbent = "Tom Steed"
### Context: CREATE TABLE table_1342198_36 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result when incumbent Tom Steed was elected? ### Answer: SELECT result FROM table_1342198_36 WHERE incumbent = "Tom Steed"