question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What was the candidates for hardie scott | CREATE TABLE table_1342198_38 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342198_38 WHERE incumbent = "Hardie Scott" | ### Context: CREATE TABLE table_1342198_38 (candidates VARCHAR, incumbent VARCHAR) ### Question: What was the candidates for hardie scott ### Answer: SELECT candidates FROM table_1342198_38 WHERE incumbent = "Hardie Scott" |
What is the number of candidates for pennsylvania 3 | CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR) | SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = "Pennsylvania 3" | ### Context: CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR) ### Question: What is the number of candidates for pennsylvania 3 ### Answer: SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = "Pennsylvania 3" |
What is the number of candidates for pennsylvania 21 | CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR) | SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = "Pennsylvania 21" | ### Context: CREATE TABLE table_1342198_38 (candidates VARCHAR, district VARCHAR) ### Question: What is the number of candidates for pennsylvania 21 ### Answer: SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = "Pennsylvania 21" |
What is the party for first elected 1948 for william t. granahan | CREATE TABLE table_1342198_38 (party VARCHAR, first_elected VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342198_38 WHERE first_elected = 1948 AND incumbent = "William T. Granahan" | ### Context: CREATE TABLE table_1342198_38 (party VARCHAR, first_elected VARCHAR, incumbent VARCHAR) ### Question: What is the party for first elected 1948 for william t. granahan ### Answer: SELECT party FROM table_1342198_38 WHERE first_elected = 1948 AND incumbent = "William T. Granahan" |
How many candidates were there in the race where Cecil R. King is the incumbent? | CREATE TABLE table_1342198_6 (candidates VARCHAR, incumbent VARCHAR) | SELECT COUNT(candidates) FROM table_1342198_6 WHERE incumbent = "Cecil R. King" | ### Context: CREATE TABLE table_1342198_6 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many candidates were there in the race where Cecil R. King is the incumbent? ### Answer: SELECT COUNT(candidates) FROM table_1342198_6 WHERE incumbent = "Cecil R. King" |
How many districts have an incumbent first elected in 1944? | CREATE TABLE table_1342198_6 (district VARCHAR, first_elected VARCHAR) | SELECT COUNT(district) FROM table_1342198_6 WHERE first_elected = 1944 | ### Context: CREATE TABLE table_1342198_6 (district VARCHAR, first_elected VARCHAR) ### Question: How many districts have an incumbent first elected in 1944? ### Answer: SELECT COUNT(district) FROM table_1342198_6 WHERE first_elected = 1944 |
Who was the incumbent in the Illinois 17 district? | CREATE TABLE table_1342218_13 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_1342218_13 WHERE district = "Illinois 17" | ### Context: CREATE TABLE table_1342218_13 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent in the Illinois 17 district? ### Answer: SELECT incumbent FROM table_1342218_13 WHERE district = "Illinois 17" |
How many people on this list are named thomas abernethy? | CREATE TABLE table_1342218_24 (candidates VARCHAR, incumbent VARCHAR) | SELECT COUNT(candidates) FROM table_1342218_24 WHERE incumbent = "Thomas Abernethy" | ### Context: CREATE TABLE table_1342218_24 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many people on this list are named thomas abernethy? ### Answer: SELECT COUNT(candidates) FROM table_1342218_24 WHERE incumbent = "Thomas Abernethy" |
How many times was w. arthur winstead first elected? | CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = "W. Arthur Winstead" | ### Context: CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR) ### Question: How many times was w. arthur winstead first elected? ### Answer: SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = "W. Arthur Winstead" |
How many times was william m. colmer winstead first elected? | CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = "William M. Colmer" | ### Context: CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR) ### Question: How many times was william m. colmer winstead first elected? ### Answer: SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = "William M. Colmer" |
What was the result of the election with jamie l. whitten? | CREATE TABLE table_1342218_24 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342218_24 WHERE incumbent = "Jamie L. Whitten" | ### Context: CREATE TABLE table_1342218_24 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of the election with jamie l. whitten? ### Answer: SELECT result FROM table_1342218_24 WHERE incumbent = "Jamie L. Whitten" |
What candidate was re-elected and was first elected in 1942? | CREATE TABLE table_1342218_35 (candidates VARCHAR, result VARCHAR, first_elected VARCHAR) | SELECT candidates FROM table_1342218_35 WHERE result = "Re-elected" AND first_elected = 1942 | ### Context: CREATE TABLE table_1342218_35 (candidates VARCHAR, result VARCHAR, first_elected VARCHAR) ### Question: What candidate was re-elected and was first elected in 1942? ### Answer: SELECT candidates FROM table_1342218_35 WHERE result = "Re-elected" AND first_elected = 1942 |
Who are the candidates in the election in the Ohio 9 district? | CREATE TABLE table_1342218_35 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342218_35 WHERE district = "Ohio 9" | ### Context: CREATE TABLE table_1342218_35 (candidates VARCHAR, district VARCHAR) ### Question: Who are the candidates in the election in the Ohio 9 district? ### Answer: SELECT candidates FROM table_1342218_35 WHERE district = "Ohio 9" |
What year was incumbent Michael A. Feighan first elected? | CREATE TABLE table_1342218_35 (first_elected INTEGER, incumbent VARCHAR) | SELECT MIN(first_elected) FROM table_1342218_35 WHERE incumbent = "Michael A. Feighan" | ### Context: CREATE TABLE table_1342218_35 (first_elected INTEGER, incumbent VARCHAR) ### Question: What year was incumbent Michael A. Feighan first elected? ### Answer: SELECT MIN(first_elected) FROM table_1342218_35 WHERE incumbent = "Michael A. Feighan" |
What party does the incumbent from the Ohio 5 district belong to? | CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1342218_35 WHERE district = "Ohio 5" | ### Context: CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR) ### Question: What party does the incumbent from the Ohio 5 district belong to? ### Answer: SELECT party FROM table_1342218_35 WHERE district = "Ohio 5" |
What party does the incumbent from the Ohio 20 district belong to? | CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1342218_35 WHERE district = "Ohio 20" | ### Context: CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR) ### Question: What party does the incumbent from the Ohio 20 district belong to? ### Answer: SELECT party FROM table_1342218_35 WHERE district = "Ohio 20" |
What party does the incumbent from the Ohio 7 district belong to? | CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1342218_35 WHERE district = "Ohio 7" | ### Context: CREATE TABLE table_1342218_35 (party VARCHAR, district VARCHAR) ### Question: What party does the incumbent from the Ohio 7 district belong to? ### Answer: SELECT party FROM table_1342218_35 WHERE district = "Ohio 7" |
Who is the candidate for the district Arkansas 2? | CREATE TABLE table_1342218_5 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342218_5 WHERE district = "Arkansas 2" | ### Context: CREATE TABLE table_1342218_5 (candidates VARCHAR, district VARCHAR) ### Question: Who is the candidate for the district Arkansas 2? ### Answer: SELECT candidates FROM table_1342218_5 WHERE district = "Arkansas 2" |
Which district has the incumbent Wilbur Mills and a re-elected result? | CREATE TABLE table_1342218_5 (district VARCHAR, result VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342218_5 WHERE result = "Re-elected" AND incumbent = "Wilbur Mills" | ### Context: CREATE TABLE table_1342218_5 (district VARCHAR, result VARCHAR, incumbent VARCHAR) ### Question: Which district has the incumbent Wilbur Mills and a re-elected result? ### Answer: SELECT district FROM table_1342218_5 WHERE result = "Re-elected" AND incumbent = "Wilbur Mills" |
What year was first-elected for the row of Texas 2? | CREATE TABLE table_1342218_43 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_1342218_43 WHERE district = "Texas 2" | ### Context: CREATE TABLE table_1342218_43 (first_elected VARCHAR, district VARCHAR) ### Question: What year was first-elected for the row of Texas 2? ### Answer: SELECT first_elected FROM table_1342218_43 WHERE district = "Texas 2" |
What was the result for the incumbent Milton H. West? | CREATE TABLE table_1342218_43 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342218_43 WHERE incumbent = "Milton H. West" | ### Context: CREATE TABLE table_1342218_43 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result for the incumbent Milton H. West? ### Answer: SELECT result FROM table_1342218_43 WHERE incumbent = "Milton H. West" |
What party is associated with Texas 2? | CREATE TABLE table_1342218_43 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1342218_43 WHERE district = "Texas 2" | ### Context: CREATE TABLE table_1342218_43 (party VARCHAR, district VARCHAR) ### Question: What party is associated with Texas 2? ### Answer: SELECT party FROM table_1342218_43 WHERE district = "Texas 2" |
When the result is retired to run for U.S. Senate Democratic Hold, who is the candidate? | CREATE TABLE table_1342218_43 (candidates VARCHAR, result VARCHAR) | SELECT candidates FROM table_1342218_43 WHERE result = "Retired to run for U.S. Senate Democratic hold" | ### Context: CREATE TABLE table_1342218_43 (candidates VARCHAR, result VARCHAR) ### Question: When the result is retired to run for U.S. Senate Democratic Hold, who is the candidate? ### Answer: SELECT candidates FROM table_1342218_43 WHERE result = "Retired to run for U.S. Senate Democratic hold" |
What candidate has a result of being re-elected in the Texas 7 District? | CREATE TABLE table_1342218_43 (candidates VARCHAR, result VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342218_43 WHERE result = "Re-elected" AND district = "Texas 7" | ### Context: CREATE TABLE table_1342218_43 (candidates VARCHAR, result VARCHAR, district VARCHAR) ### Question: What candidate has a result of being re-elected in the Texas 7 District? ### Answer: SELECT candidates FROM table_1342218_43 WHERE result = "Re-elected" AND district = "Texas 7" |
Which party is associated with the candidate Albert Sidney Camp (D) unopposed? | CREATE TABLE table_1342233_11 (party VARCHAR, candidates VARCHAR) | SELECT COUNT(party) FROM table_1342233_11 WHERE candidates = "Albert Sidney Camp (D) Unopposed" | ### Context: CREATE TABLE table_1342233_11 (party VARCHAR, candidates VARCHAR) ### Question: Which party is associated with the candidate Albert Sidney Camp (D) unopposed? ### Answer: SELECT COUNT(party) FROM table_1342233_11 WHERE candidates = "Albert Sidney Camp (D) Unopposed" |
Which district is associated with the incumbent Carl Vinson? | CREATE TABLE table_1342233_11 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342233_11 WHERE incumbent = "Carl Vinson" | ### Context: CREATE TABLE table_1342233_11 (candidates VARCHAR, incumbent VARCHAR) ### Question: Which district is associated with the incumbent Carl Vinson? ### Answer: SELECT candidates FROM table_1342233_11 WHERE incumbent = "Carl Vinson" |
Which candidates are associated with the Georgia 7 district? | CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342233_11 WHERE district = "Georgia 7" | ### Context: CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR) ### Question: Which candidates are associated with the Georgia 7 district? ### Answer: SELECT candidates FROM table_1342233_11 WHERE district = "Georgia 7" |
What candidate is associated with the Georgia 4 district? | CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342233_11 WHERE district = "Georgia 4" | ### Context: CREATE TABLE table_1342233_11 (candidates VARCHAR, district VARCHAR) ### Question: What candidate is associated with the Georgia 4 district? ### Answer: SELECT candidates FROM table_1342233_11 WHERE district = "Georgia 4" |
What year was incumbent joe b. bates first elected? | CREATE TABLE table_1342233_17 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1342233_17 WHERE incumbent = "Joe B. Bates" | ### Context: CREATE TABLE table_1342233_17 (first_elected VARCHAR, incumbent VARCHAR) ### Question: What year was incumbent joe b. bates first elected? ### Answer: SELECT first_elected FROM table_1342233_17 WHERE incumbent = "Joe B. Bates" |
What party is incumbent virgil chapman from? | CREATE TABLE table_1342233_17 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342233_17 WHERE incumbent = "Virgil Chapman" | ### Context: CREATE TABLE table_1342233_17 (party VARCHAR, incumbent VARCHAR) ### Question: What party is incumbent virgil chapman from? ### Answer: SELECT party FROM table_1342233_17 WHERE incumbent = "Virgil Chapman" |
What year was clair engle first elected? | CREATE TABLE table_1342218_6 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1342218_6 WHERE incumbent = "Clair Engle" | ### Context: CREATE TABLE table_1342218_6 (first_elected VARCHAR, incumbent VARCHAR) ### Question: What year was clair engle first elected? ### Answer: SELECT first_elected FROM table_1342218_6 WHERE incumbent = "Clair Engle" |
what is the result of the first elected is 1943? | CREATE TABLE table_1342218_6 (result VARCHAR, first_elected VARCHAR) | SELECT result FROM table_1342218_6 WHERE first_elected = 1943 | ### Context: CREATE TABLE table_1342218_6 (result VARCHAR, first_elected VARCHAR) ### Question: what is the result of the first elected is 1943? ### Answer: SELECT result FROM table_1342218_6 WHERE first_elected = 1943 |
what the the end number where albert rains was running | CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR) | SELECT COUNT(result) FROM table_1342233_3 WHERE incumbent = "Albert Rains" | ### Context: CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR) ### Question: what the the end number where albert rains was running ### Answer: SELECT COUNT(result) FROM table_1342233_3 WHERE incumbent = "Albert Rains" |
what the was the final in which frank w. boykin was running | CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342233_3 WHERE incumbent = "Frank W. Boykin" | ### Context: CREATE TABLE table_1342233_3 (result VARCHAR, incumbent VARCHAR) ### Question: what the was the final in which frank w. boykin was running ### Answer: SELECT result FROM table_1342233_3 WHERE incumbent = "Frank W. Boykin" |
Name the total number of first elected for sol bloom | CREATE TABLE table_1342233_32 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_1342233_32 WHERE incumbent = "Sol Bloom" | ### Context: CREATE TABLE table_1342233_32 (first_elected VARCHAR, incumbent VARCHAR) ### Question: Name the total number of first elected for sol bloom ### Answer: SELECT COUNT(first_elected) FROM table_1342233_32 WHERE incumbent = "Sol Bloom" |
Name the candidates for ellsworth b. buck | CREATE TABLE table_1342233_32 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342233_32 WHERE incumbent = "Ellsworth B. Buck" | ### Context: CREATE TABLE table_1342233_32 (candidates VARCHAR, incumbent VARCHAR) ### Question: Name the candidates for ellsworth b. buck ### Answer: SELECT candidates FROM table_1342233_32 WHERE incumbent = "Ellsworth B. Buck" |
What are the candidates for new york 35? | CREATE TABLE table_1342233_32 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342233_32 WHERE district = "New York 35" | ### Context: CREATE TABLE table_1342233_32 (candidates VARCHAR, district VARCHAR) ### Question: What are the candidates for new york 35? ### Answer: SELECT candidates FROM table_1342233_32 WHERE district = "New York 35" |
What is the party for new york 20? | CREATE TABLE table_1342233_32 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1342233_32 WHERE district = "New York 20" | ### Context: CREATE TABLE table_1342233_32 (party VARCHAR, district VARCHAR) ### Question: What is the party for new york 20? ### Answer: SELECT party FROM table_1342233_32 WHERE district = "New York 20" |
What was the result of the election featuring r. ewing thomason (d) unopposed? | CREATE TABLE table_1342233_43 (result VARCHAR, candidates VARCHAR) | SELECT result FROM table_1342233_43 WHERE candidates = "R. Ewing Thomason (D) Unopposed" | ### Context: CREATE TABLE table_1342233_43 (result VARCHAR, candidates VARCHAR) ### Question: What was the result of the election featuring r. ewing thomason (d) unopposed? ### Answer: SELECT result FROM table_1342233_43 WHERE candidates = "R. Ewing Thomason (D) Unopposed" |
What district is eugene worley from? | CREATE TABLE table_1342233_43 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342233_43 WHERE incumbent = "Eugene Worley" | ### Context: CREATE TABLE table_1342233_43 (district VARCHAR, incumbent VARCHAR) ### Question: What district is eugene worley from? ### Answer: SELECT district FROM table_1342233_43 WHERE incumbent = "Eugene Worley" |
how many result with candidates being richard j. welch (r) unopposed | CREATE TABLE table_1342233_6 (result VARCHAR, candidates VARCHAR) | SELECT COUNT(result) FROM table_1342233_6 WHERE candidates = "Richard J. Welch (R) Unopposed" | ### Context: CREATE TABLE table_1342233_6 (result VARCHAR, candidates VARCHAR) ### Question: how many result with candidates being richard j. welch (r) unopposed ### Answer: SELECT COUNT(result) FROM table_1342233_6 WHERE candidates = "Richard J. Welch (R) Unopposed" |
what's the result with incumbent being jack z. anderson | CREATE TABLE table_1342233_6 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342233_6 WHERE incumbent = "Jack Z. Anderson" | ### Context: CREATE TABLE table_1342233_6 (result VARCHAR, incumbent VARCHAR) ### Question: what's the result with incumbent being jack z. anderson ### Answer: SELECT result FROM table_1342233_6 WHERE incumbent = "Jack Z. Anderson" |
what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed | CREATE TABLE table_1342233_6 (district VARCHAR, result VARCHAR, candidates VARCHAR) | SELECT district FROM table_1342233_6 WHERE result = "Re-elected" AND candidates = "Clarence F. Lea (D) Unopposed" | ### Context: CREATE TABLE table_1342233_6 (district VARCHAR, result VARCHAR, candidates VARCHAR) ### Question: what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed ### Answer: SELECT district FROM table_1342233_6 WHERE result = "Re-elected" AND candidates = "Clarence F. Le... |
what's the first elected with incumbent being clair engle | CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1342233_6 WHERE incumbent = "Clair Engle" | ### Context: CREATE TABLE table_1342233_6 (first_elected VARCHAR, incumbent VARCHAR) ### Question: what's the first elected with incumbent being clair engle ### Answer: SELECT first_elected FROM table_1342233_6 WHERE incumbent = "Clair Engle" |
who is the the candidates with incumbent being alfred j. elliott | CREATE TABLE table_1342233_6 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342233_6 WHERE incumbent = "Alfred J. Elliott" | ### Context: CREATE TABLE table_1342233_6 (candidates VARCHAR, incumbent VARCHAR) ### Question: who is the the candidates with incumbent being alfred j. elliott ### Answer: SELECT candidates FROM table_1342233_6 WHERE incumbent = "Alfred J. Elliott" |
who is the the incumbent with candidates being jack z. anderson (r) unopposed | CREATE TABLE table_1342233_6 (incumbent VARCHAR, candidates VARCHAR) | SELECT incumbent FROM table_1342233_6 WHERE candidates = "Jack Z. Anderson (R) Unopposed" | ### Context: CREATE TABLE table_1342233_6 (incumbent VARCHAR, candidates VARCHAR) ### Question: who is the the incumbent with candidates being jack z. anderson (r) unopposed ### Answer: SELECT incumbent FROM table_1342233_6 WHERE candidates = "Jack Z. Anderson (R) Unopposed" |
How many parties does incumbent carl vinson represent? | CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR) | SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = "Carl Vinson" | ### Context: CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR) ### Question: How many parties does incumbent carl vinson represent? ### Answer: SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = "Carl Vinson" |
How many parties does incumbent stephen pace represent? | CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR) | SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = "Stephen Pace" | ### Context: CREATE TABLE table_1342249_11 (party VARCHAR, incumbent VARCHAR) ### Question: How many parties does incumbent stephen pace represent? ### Answer: SELECT COUNT(party) FROM table_1342249_11 WHERE incumbent = "Stephen Pace" |
Who were the candidates when Noah M. Mason was incumbent? | CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342249_13 WHERE incumbent = "Noah M. Mason" | ### Context: CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates when Noah M. Mason was incumbent? ### Answer: SELECT candidates FROM table_1342249_13 WHERE incumbent = "Noah M. Mason" |
In what year was Leo E. Allen first elected? | CREATE TABLE table_1342249_13 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1342249_13 WHERE incumbent = "Leo E. Allen" | ### Context: CREATE TABLE table_1342249_13 (first_elected VARCHAR, incumbent VARCHAR) ### Question: In what year was Leo E. Allen first elected? ### Answer: SELECT first_elected FROM table_1342249_13 WHERE incumbent = "Leo E. Allen" |
Who were the candidates when Sid Simpson was the incumbent? | CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342249_13 WHERE incumbent = "Sid Simpson" | ### Context: CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates when Sid Simpson was the incumbent? ### Answer: SELECT candidates FROM table_1342249_13 WHERE incumbent = "Sid Simpson" |
What was the result of Robert L. F. Sikes' election bid? | CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342256_10 WHERE incumbent = "Robert L. F. Sikes" | ### Context: CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of Robert L. F. Sikes' election bid? ### Answer: SELECT result FROM table_1342256_10 WHERE incumbent = "Robert L. F. Sikes" |
How many districts have an incumbent first elected in 1940? | CREATE TABLE table_1342256_10 (district VARCHAR, first_elected VARCHAR) | SELECT COUNT(district) FROM table_1342256_10 WHERE first_elected = 1940 | ### Context: CREATE TABLE table_1342256_10 (district VARCHAR, first_elected VARCHAR) ### Question: How many districts have an incumbent first elected in 1940? ### Answer: SELECT COUNT(district) FROM table_1342256_10 WHERE first_elected = 1940 |
How many races involve incumbent Pat Cannon? | CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR) | SELECT COUNT(result) FROM table_1342256_10 WHERE incumbent = "Pat Cannon" | ### Context: CREATE TABLE table_1342256_10 (result VARCHAR, incumbent VARCHAR) ### Question: How many races involve incumbent Pat Cannon? ### Answer: SELECT COUNT(result) FROM table_1342256_10 WHERE incumbent = "Pat Cannon" |
Which incumbent was first elected in 1940? | CREATE TABLE table_1342256_10 (incumbent VARCHAR, first_elected VARCHAR) | SELECT incumbent FROM table_1342256_10 WHERE first_elected = 1940 | ### Context: CREATE TABLE table_1342256_10 (incumbent VARCHAR, first_elected VARCHAR) ### Question: Which incumbent was first elected in 1940? ### Answer: SELECT incumbent FROM table_1342256_10 WHERE first_elected = 1940 |
What is the first electedfor district ohio 18 | CREATE TABLE table_1342249_35 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_1342249_35 WHERE district = "Ohio 18" | ### Context: CREATE TABLE table_1342249_35 (first_elected VARCHAR, district VARCHAR) ### Question: What is the first electedfor district ohio 18 ### Answer: SELECT first_elected FROM table_1342249_35 WHERE district = "Ohio 18" |
What is the incumbent for ohio 12? | CREATE TABLE table_1342249_35 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_1342249_35 WHERE district = "Ohio 12" | ### Context: CREATE TABLE table_1342249_35 (incumbent VARCHAR, district VARCHAR) ### Question: What is the incumbent for ohio 12? ### Answer: SELECT incumbent FROM table_1342249_35 WHERE district = "Ohio 12" |
Who are all of the candidates in the election featuring james r. domengeaux? | CREATE TABLE table_1342256_18 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342256_18 WHERE incumbent = "James R. Domengeaux" | ### Context: CREATE TABLE table_1342256_18 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who are all of the candidates in the election featuring james r. domengeaux? ### Answer: SELECT candidates FROM table_1342256_18 WHERE incumbent = "James R. Domengeaux" |
Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent? | CREATE TABLE table_1342256_33 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342256_33 WHERE incumbent = "Harold D. Cooley" | ### Context: CREATE TABLE table_1342256_33 (candidates VARCHAR, incumbent VARCHAR) ### Question: Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent? ### Answer: SELECT candidates FROM table_1342256_33 WHERE incumbent = "Harold D. Cooley" |
How many partys have a candidate first elected in 1923? | CREATE TABLE table_1342256_33 (party VARCHAR, first_elected VARCHAR) | SELECT COUNT(party) FROM table_1342256_33 WHERE first_elected = 1923 | ### Context: CREATE TABLE table_1342256_33 (party VARCHAR, first_elected VARCHAR) ### Question: How many partys have a candidate first elected in 1923? ### Answer: SELECT COUNT(party) FROM table_1342256_33 WHERE first_elected = 1923 |
what was the number of candidates when Leon Sacks was incumbent? | CREATE TABLE table_1342256_38 (candidates VARCHAR, incumbent VARCHAR) | SELECT COUNT(candidates) FROM table_1342256_38 WHERE incumbent = "Leon Sacks" | ### Context: CREATE TABLE table_1342256_38 (candidates VARCHAR, incumbent VARCHAR) ### Question: what was the number of candidates when Leon Sacks was incumbent? ### Answer: SELECT COUNT(candidates) FROM table_1342256_38 WHERE incumbent = "Leon Sacks" |
What was the result in Pennsylvania 13? | CREATE TABLE table_1342256_38 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1342256_38 WHERE district = "Pennsylvania 13" | ### Context: CREATE TABLE table_1342256_38 (result VARCHAR, district VARCHAR) ### Question: What was the result in Pennsylvania 13? ### Answer: SELECT result FROM table_1342256_38 WHERE district = "Pennsylvania 13" |
Who was the incumbent in Pennsylvania 27? | CREATE TABLE table_1342256_38 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_1342256_38 WHERE district = "Pennsylvania 27" | ### Context: CREATE TABLE table_1342256_38 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent in Pennsylvania 27? ### Answer: SELECT incumbent FROM table_1342256_38 WHERE district = "Pennsylvania 27" |
Who are the contenders In the New York 19 polling area race? | CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342256_32 WHERE district = "New York 19" | ### Context: CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR) ### Question: Who are the contenders In the New York 19 polling area race? ### Answer: SELECT candidates FROM table_1342256_32 WHERE district = "New York 19" |
How many polling areas are there with John Taber as the sitting Representative? | CREATE TABLE table_1342256_32 (district VARCHAR, incumbent VARCHAR) | SELECT COUNT(district) FROM table_1342256_32 WHERE incumbent = "John Taber" | ### Context: CREATE TABLE table_1342256_32 (district VARCHAR, incumbent VARCHAR) ### Question: How many polling areas are there with John Taber as the sitting Representative? ### Answer: SELECT COUNT(district) FROM table_1342256_32 WHERE incumbent = "John Taber" |
Who are the contenders In the New York 29 polling area race? | CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342256_32 WHERE district = "New York 29" | ### Context: CREATE TABLE table_1342256_32 (candidates VARCHAR, district VARCHAR) ### Question: Who are the contenders In the New York 29 polling area race? ### Answer: SELECT candidates FROM table_1342256_32 WHERE district = "New York 29" |
Which political party is involved where John J. Delaney is the sitting Representative? | CREATE TABLE table_1342256_32 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342256_32 WHERE incumbent = "John J. Delaney" | ### Context: CREATE TABLE table_1342256_32 (party VARCHAR, incumbent VARCHAR) ### Question: Which political party is involved where John J. Delaney is the sitting Representative? ### Answer: SELECT party FROM table_1342256_32 WHERE incumbent = "John J. Delaney" |
Who is the sitting Representative In the New York 10 polling area race? | CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_1342256_32 WHERE district = "New York 10" | ### Context: CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR) ### Question: Who is the sitting Representative In the New York 10 polling area race? ### Answer: SELECT incumbent FROM table_1342256_32 WHERE district = "New York 10" |
How many sitting Representatives are there in the New York 10 polling area? | CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR) | SELECT COUNT(incumbent) FROM table_1342256_32 WHERE district = "New York 10" | ### Context: CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR) ### Question: How many sitting Representatives are there in the New York 10 polling area? ### Answer: SELECT COUNT(incumbent) FROM table_1342256_32 WHERE district = "New York 10" |
What is the district for james p. richards? | CREATE TABLE table_1342256_40 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342256_40 WHERE incumbent = "James P. Richards" | ### Context: CREATE TABLE table_1342256_40 (district VARCHAR, incumbent VARCHAR) ### Question: What is the district for james p. richards? ### Answer: SELECT district FROM table_1342256_40 WHERE incumbent = "James P. Richards" |
What is the candidate for south carolina 4? | CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342256_40 WHERE district = "South Carolina 4" | ### Context: CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR) ### Question: What is the candidate for south carolina 4? ### Answer: SELECT candidates FROM table_1342256_40 WHERE district = "South Carolina 4" |
What is the candidate for south carolina 3? | CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342256_40 WHERE district = "South Carolina 3" | ### Context: CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR) ### Question: What is the candidate for south carolina 3? ### Answer: SELECT candidates FROM table_1342256_40 WHERE district = "South Carolina 3" |
What is the first elected for south carolina 4? | CREATE TABLE table_1342256_40 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_1342256_40 WHERE district = "South Carolina 4" | ### Context: CREATE TABLE table_1342256_40 (first_elected VARCHAR, district VARCHAR) ### Question: What is the first elected for south carolina 4? ### Answer: SELECT first_elected FROM table_1342256_40 WHERE district = "South Carolina 4" |
How many candidates were in the election featuring brooks hays (d) unopposed? | CREATE TABLE table_1342256_5 (first_elected VARCHAR, candidates VARCHAR) | SELECT COUNT(first_elected) FROM table_1342256_5 WHERE candidates = "Brooks Hays (D) Unopposed" | ### Context: CREATE TABLE table_1342256_5 (first_elected VARCHAR, candidates VARCHAR) ### Question: How many candidates were in the election featuring brooks hays (d) unopposed? ### Answer: SELECT COUNT(first_elected) FROM table_1342256_5 WHERE candidates = "Brooks Hays (D) Unopposed" |
What party does clyde t. ellis represent? | CREATE TABLE table_1342256_5 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342256_5 WHERE incumbent = "Clyde T. Ellis" | ### Context: CREATE TABLE table_1342256_5 (party VARCHAR, incumbent VARCHAR) ### Question: What party does clyde t. ellis represent? ### Answer: SELECT party FROM table_1342256_5 WHERE incumbent = "Clyde T. Ellis" |
how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4% | CREATE TABLE table_1342256_6 (party VARCHAR, candidates VARCHAR) | SELECT COUNT(party) FROM table_1342256_6 WHERE candidates = "John J. Phillips (R) 57.6% N. E. West (D) 42.4%" | ### Context: CREATE TABLE table_1342256_6 (party VARCHAR, candidates VARCHAR) ### Question: how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4% ### Answer: SELECT COUNT(party) FROM table_1342256_6 WHERE candidates = "John J. Phillips (R) 57.6% N. E. West (D) 42.4%" |
what's the result with dbeingtrict being california 10 | CREATE TABLE table_1342256_6 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1342256_6 WHERE district = "California 10" | ### Context: CREATE TABLE table_1342256_6 (result VARCHAR, district VARCHAR) ### Question: what's the result with dbeingtrict being california 10 ### Answer: SELECT result FROM table_1342256_6 WHERE district = "California 10" |
what's the party with first elected being 1926 | CREATE TABLE table_1342256_6 (party VARCHAR, first_elected VARCHAR) | SELECT party FROM table_1342256_6 WHERE first_elected = "1926" | ### Context: CREATE TABLE table_1342256_6 (party VARCHAR, first_elected VARCHAR) ### Question: what's the party with first elected being 1926 ### Answer: SELECT party FROM table_1342256_6 WHERE first_elected = "1926" |
what's the incumbent with result being new seat republican gain | CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR) | SELECT incumbent FROM table_1342256_6 WHERE result = "New seat Republican gain" | ### Context: CREATE TABLE table_1342256_6 (incumbent VARCHAR, result VARCHAR) ### Question: what's the incumbent with result being new seat republican gain ### Answer: SELECT incumbent FROM table_1342256_6 WHERE result = "New seat Republican gain" |
what was the maxiumum for the first elected? | CREATE TABLE table_1342270_24 (first_elected INTEGER) | SELECT MAX(first_elected) FROM table_1342270_24 | ### Context: CREATE TABLE table_1342270_24 (first_elected INTEGER) ### Question: what was the maxiumum for the first elected? ### Answer: SELECT MAX(first_elected) FROM table_1342270_24 |
what's the first elected with incumbent being joe starnes | CREATE TABLE table_1342270_3 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1342270_3 WHERE incumbent = "Joe Starnes" | ### Context: CREATE TABLE table_1342270_3 (first_elected VARCHAR, incumbent VARCHAR) ### Question: what's the first elected with incumbent being joe starnes ### Answer: SELECT first_elected FROM table_1342270_3 WHERE incumbent = "Joe Starnes" |
what's the first elected with candidates being joe starnes (d) 100.0% george bogus ( w/i ) 0.003% | CREATE TABLE table_1342270_3 (first_elected VARCHAR, candidates VARCHAR) | SELECT first_elected FROM table_1342270_3 WHERE candidates = "Joe Starnes (D) 100.0% George Bogus ( W/I ) 0.003%" | ### Context: CREATE TABLE table_1342270_3 (first_elected VARCHAR, candidates VARCHAR) ### Question: what's the first elected with candidates being joe starnes (d) 100.0% george bogus ( w/i ) 0.003% ### Answer: SELECT first_elected FROM table_1342270_3 WHERE candidates = "Joe Starnes (D) 100.0% George Bogus ( W/I ) 0.00... |
how many party with dbeingtrict being alabama 6 | CREATE TABLE table_1342270_3 (party VARCHAR, district VARCHAR) | SELECT COUNT(party) FROM table_1342270_3 WHERE district = "Alabama 6" | ### Context: CREATE TABLE table_1342270_3 (party VARCHAR, district VARCHAR) ### Question: how many party with dbeingtrict being alabama 6 ### Answer: SELECT COUNT(party) FROM table_1342270_3 WHERE district = "Alabama 6" |
what are all the district with incumbent being sam hobbs | CREATE TABLE table_1342270_3 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342270_3 WHERE incumbent = "Sam Hobbs" | ### Context: CREATE TABLE table_1342270_3 (district VARCHAR, incumbent VARCHAR) ### Question: what are all the district with incumbent being sam hobbs ### Answer: SELECT district FROM table_1342270_3 WHERE incumbent = "Sam Hobbs" |
what are all the result with district being alabama 1 | CREATE TABLE table_1342270_3 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1342270_3 WHERE district = "Alabama 1" | ### Context: CREATE TABLE table_1342270_3 (result VARCHAR, district VARCHAR) ### Question: what are all the result with district being alabama 1 ### Answer: SELECT result FROM table_1342270_3 WHERE district = "Alabama 1" |
what is the maximum first elected with district being alabama 5 | CREATE TABLE table_1342270_3 (first_elected INTEGER, district VARCHAR) | SELECT MAX(first_elected) FROM table_1342270_3 WHERE district = "Alabama 5" | ### Context: CREATE TABLE table_1342270_3 (first_elected INTEGER, district VARCHAR) ### Question: what is the maximum first elected with district being alabama 5 ### Answer: SELECT MAX(first_elected) FROM table_1342270_3 WHERE district = "Alabama 5" |
What was the result in the Tennessee 6 district election? | CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1342270_42 WHERE district = "Tennessee 6" | ### Context: CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR) ### Question: What was the result in the Tennessee 6 district election? ### Answer: SELECT result FROM table_1342270_42 WHERE district = "Tennessee 6" |
In how many districts was the incumbent Estes Kefauver? | CREATE TABLE table_1342270_42 (district VARCHAR, incumbent VARCHAR) | SELECT COUNT(district) FROM table_1342270_42 WHERE incumbent = "Estes Kefauver" | ### Context: CREATE TABLE table_1342270_42 (district VARCHAR, incumbent VARCHAR) ### Question: In how many districts was the incumbent Estes Kefauver? ### Answer: SELECT COUNT(district) FROM table_1342270_42 WHERE incumbent = "Estes Kefauver" |
What is the latest year any of the incumbents were first elected? | CREATE TABLE table_1342270_42 (first_elected INTEGER) | SELECT MAX(first_elected) FROM table_1342270_42 | ### Context: CREATE TABLE table_1342270_42 (first_elected INTEGER) ### Question: What is the latest year any of the incumbents were first elected? ### Answer: SELECT MAX(first_elected) FROM table_1342270_42 |
What was the result of the Tennessee 2 district election? | CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1342270_42 WHERE district = "Tennessee 2" | ### Context: CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR) ### Question: What was the result of the Tennessee 2 district election? ### Answer: SELECT result FROM table_1342270_42 WHERE district = "Tennessee 2" |
What district is incumbent robert l. mouton from? | CREATE TABLE table_1342292_17 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342292_17 WHERE incumbent = "Robert L. Mouton" | ### Context: CREATE TABLE table_1342292_17 (district VARCHAR, incumbent VARCHAR) ### Question: What district is incumbent robert l. mouton from? ### Answer: SELECT district FROM table_1342292_17 WHERE incumbent = "Robert L. Mouton" |
William Fadjo Cravens is the only candidate who was first elected in 1939. | CREATE TABLE table_1342270_5 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_1342270_5 WHERE incumbent = "William Fadjo Cravens" | ### Context: CREATE TABLE table_1342270_5 (first_elected VARCHAR, incumbent VARCHAR) ### Question: William Fadjo Cravens is the only candidate who was first elected in 1939. ### Answer: SELECT COUNT(first_elected) FROM table_1342270_5 WHERE incumbent = "William Fadjo Cravens" |
William Fadjo Cravens serves the fourth district of Arkansas. | CREATE TABLE table_1342270_5 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342270_5 WHERE incumbent = "William Fadjo Cravens" | ### Context: CREATE TABLE table_1342270_5 (district VARCHAR, incumbent VARCHAR) ### Question: William Fadjo Cravens serves the fourth district of Arkansas. ### Answer: SELECT district FROM table_1342270_5 WHERE incumbent = "William Fadjo Cravens" |
what's the party with district being alabama 3 | CREATE TABLE table_1342292_2 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1342292_2 WHERE district = "Alabama 3" | ### Context: CREATE TABLE table_1342292_2 (party VARCHAR, district VARCHAR) ### Question: what's the party with district being alabama 3 ### Answer: SELECT party FROM table_1342292_2 WHERE district = "Alabama 3" |
what's the incumbent with candidates being sam hobbs (d) 88.2% c. w. mckay (r) 11.8% | CREATE TABLE table_1342292_2 (incumbent VARCHAR, candidates VARCHAR) | SELECT incumbent FROM table_1342292_2 WHERE candidates = "Sam Hobbs (D) 88.2% C. W. McKay (R) 11.8%" | ### Context: CREATE TABLE table_1342292_2 (incumbent VARCHAR, candidates VARCHAR) ### Question: what's the incumbent with candidates being sam hobbs (d) 88.2% c. w. mckay (r) 11.8% ### Answer: SELECT incumbent FROM table_1342292_2 WHERE candidates = "Sam Hobbs (D) 88.2% C. W. McKay (R) 11.8%" |
what's the party with incumbent being john sparkman | CREATE TABLE table_1342292_2 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342292_2 WHERE incumbent = "John Sparkman" | ### Context: CREATE TABLE table_1342292_2 (party VARCHAR, incumbent VARCHAR) ### Question: what's the party with incumbent being john sparkman ### Answer: SELECT party FROM table_1342292_2 WHERE incumbent = "John Sparkman" |
how many dbeingtrict with candidates being william b. bankhead (d) 71.3% e. m. reed (r) 28.7% | CREATE TABLE table_1342292_2 (district VARCHAR, candidates VARCHAR) | SELECT COUNT(district) FROM table_1342292_2 WHERE candidates = "William B. Bankhead (D) 71.3% E. M. Reed (R) 28.7%" | ### Context: CREATE TABLE table_1342292_2 (district VARCHAR, candidates VARCHAR) ### Question: how many dbeingtrict with candidates being william b. bankhead (d) 71.3% e. m. reed (r) 28.7% ### Answer: SELECT COUNT(district) FROM table_1342292_2 WHERE candidates = "William B. Bankhead (D) 71.3% E. M. Reed (R) 28.7%" |
what's the party with incumbent being william b. bankhead | CREATE TABLE table_1342292_2 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342292_2 WHERE incumbent = "William B. Bankhead" | ### Context: CREATE TABLE table_1342292_2 (party VARCHAR, incumbent VARCHAR) ### Question: what's the party with incumbent being william b. bankhead ### Answer: SELECT party FROM table_1342292_2 WHERE incumbent = "William B. Bankhead" |
what's the district with first elected being 1938 | CREATE TABLE table_1342292_2 (district VARCHAR, first_elected VARCHAR) | SELECT district FROM table_1342292_2 WHERE first_elected = 1938 | ### Context: CREATE TABLE table_1342292_2 (district VARCHAR, first_elected VARCHAR) ### Question: what's the district with first elected being 1938 ### Answer: SELECT district FROM table_1342292_2 WHERE first_elected = 1938 |
How many incumbents were first elected in 1930? | CREATE TABLE table_1342292_45 (party VARCHAR, first_elected VARCHAR) | SELECT COUNT(party) FROM table_1342292_45 WHERE first_elected = 1930 | ### Context: CREATE TABLE table_1342292_45 (party VARCHAR, first_elected VARCHAR) ### Question: How many incumbents were first elected in 1930? ### Answer: SELECT COUNT(party) FROM table_1342292_45 WHERE first_elected = 1930 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.