Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
29,000
<question>: When was the first election in the district whose incumbent is Ron Kind? <context>: CREATE TABLE table_1341423_49 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1341423_49 WHERE incumbent = "Ron Kind"
29,001
<question>: Name the first elected for texas 6 district <context>: CREATE TABLE table_1341423_43 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341423_43 WHERE district = "Texas 6"
29,002
<question>: Name the incumbent for texas 22 district <context>: CREATE TABLE table_1341423_43 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341423_43 WHERE district = "Texas 22"
29,003
<question>: How did the election in the Florida 14 district end? <context>: CREATE TABLE table_1341423_9 (results VARCHAR, district VARCHAR)
SELECT results FROM table_1341423_9 WHERE district = "Florida 14"
29,004
<question>: Who's the incumbent of Florida 12 district? <context>: CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341423_9 WHERE district = "Florida 12"
29,005
<question>: Who is the incumbent of Florida 9? <context>: CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341423_9 WHERE district = "Florida 9"
29,006
<question>: Who's the incumbent in Florida 6? <context>: CREATE TABLE table_1341453_11 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341453_11 WHERE district = "Florida 6"
29,007
<question>: What party does Bill McCollum belong to? <context>: CREATE TABLE table_1341453_11 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_11 WHERE incumbent = "Bill McCollum"
29,008
<question>: What are the results in the county with Peter Deutsch as a candidate? <context>: CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)
SELECT results FROM table_1341453_11 WHERE incumbent = "Peter Deutsch"
29,009
<question>: How did the election end for Robert Wexler? <context>: CREATE TABLE table_1341453_11 (results VARCHAR, incumbent VARCHAR)
SELECT results FROM table_1341453_11 WHERE incumbent = "Robert Wexler"
29,010
<question>: What party was the winner in the district Maryland 6? <context>: CREATE TABLE table_1341453_22 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341453_22 WHERE district = "Maryland 6"
29,011
<question>: Who run for office in district Maryland 3? <context>: CREATE TABLE table_1341453_22 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341453_22 WHERE district = "Maryland 3"
29,012
<question>: List the candidates in district Maryland 1 where the republican party won. <context>: CREATE TABLE table_1341453_22 (candidates VARCHAR, party VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341453_22 WHERE party = "Republican" AND district = "Maryland 1"
29,013
<question>: When did the elections take place in district Maryland 2? <context>: CREATE TABLE table_1341453_22 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_1341453_22 WHERE district = "Maryland 2"
29,014
<question>: What party is Frank Lobiondo a member of? <context>: CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_32 WHERE incumbent = "Frank LoBiondo"
29,015
<question>: Who were the candidates in the district whose incumbent is Bill Pascrell? <context>: CREATE TABLE table_1341453_32 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341453_32 WHERE incumbent = "Bill Pascrell"
29,016
<question>: What is the party of the district incumbent Jim Saxton? <context>: CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_32 WHERE incumbent = "Jim Saxton"
29,017
<question>: What party is John McHugh a member of? <context>: CREATE TABLE table_1341453_34 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_34 WHERE incumbent = "John McHugh"
29,018
<question>: What's the party elected in the district that first elected in 1990? <context>: CREATE TABLE table_1341453_34 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_1341453_34 WHERE first_elected = "1990"
29,019
<question>: What's the first elected year of the district that Ed Towns is an incumbent of? <context>: CREATE TABLE table_1341453_34 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341453_34 WHERE incumbent = "Ed Towns"
29,020
<question>: How many elections have resulted in retired democratic hold? <context>: CREATE TABLE table_1341453_34 (party VARCHAR, results VARCHAR)
SELECT COUNT(party) FROM table_1341453_34 WHERE results = "Retired Democratic hold"
29,021
<question>: What were the candidates in the district that first elected in 1980? <context>: CREATE TABLE table_1341453_34 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1341453_34 WHERE first_elected = "1980"
29,022
<question>: When was Chaka Fattah first elected in the Pennsylvania 2 district? <context>: CREATE TABLE table_1341453_40 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341453_40 WHERE district = "Pennsylvania 2"
29,023
<question>: How many incumbents were first elected in 1984? <context>: CREATE TABLE table_1341453_40 (incumbent VARCHAR, first_elected VARCHAR)
SELECT COUNT(incumbent) FROM table_1341453_40 WHERE first_elected = "1984"
29,024
<question>: When was incumbent Bud Shuster first elected? <context>: CREATE TABLE table_1341453_40 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341453_40 WHERE incumbent = "Bud Shuster"
29,025
<question>: How many candidates ran in the election where Mike Doyle was the incumbent? <context>: CREATE TABLE table_1341453_40 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341453_40 WHERE incumbent = "Mike Doyle"
29,026
<question>: Incumbent Tim Holden belonged to what party? <context>: CREATE TABLE table_1341453_40 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_40 WHERE incumbent = "Tim Holden"
29,027
<question>: In what district was Tim Holden the incumbent? <context>: CREATE TABLE table_1341453_40 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341453_40 WHERE incumbent = "Tim Holden"
29,028
<question>: Which incumbent was first elected in 1984? <context>: CREATE TABLE table_1341453_44 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341453_44 WHERE first_elected = 1984
29,029
<question>: When was the incumbent in the Tennessee 4 district first elected? <context>: CREATE TABLE table_1341453_44 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341453_44 WHERE district = "Tennessee 4"
29,030
<question>: Who are the candidates in the Tennessee 3 district election? <context>: CREATE TABLE table_1341453_44 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341453_44 WHERE district = "Tennessee 3"
29,031
<question>: What year was Bob Clement first elected? <context>: CREATE TABLE table_1341453_44 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1341453_44 WHERE incumbent = "Bob Clement"
29,032
<question>: List all the candidates for the seat where the incumbent is Sam Gibbons? <context>: CREATE TABLE table_1341472_11 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341472_11 WHERE incumbent = "Sam Gibbons"
29,033
<question>: Who were the candidates in district Wisconsin 4? <context>: CREATE TABLE table_1341453_51 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341453_51 WHERE district = "Wisconsin 4"
29,034
<question>: Who's the incumbent in the district that first elected in 1969? <context>: CREATE TABLE table_1341453_51 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341453_51 WHERE first_elected = 1969
29,035
<question>: Who's the incumbent of district Wisconsin 5? <context>: CREATE TABLE table_1341453_51 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341453_51 WHERE district = "Wisconsin 5"
29,036
<question>: How many districts does gary condit represent? <context>: CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1341453_7 WHERE incumbent = "Gary Condit"
29,037
<question>: What party was first elected in 1974? <context>: CREATE TABLE table_1341453_7 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_1341453_7 WHERE first_elected = 1974
29,038
<question>: What district is bill thomas from? <context>: CREATE TABLE table_1341453_7 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341453_7 WHERE incumbent = "Bill Thomas"
29,039
<question>: Who was the incumbent of district Georgia 2? <context>: CREATE TABLE table_1341472_12 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341472_12 WHERE district = "Georgia 2"
29,040
<question>: What district is Mac Collins an incumbent in? <context>: CREATE TABLE table_1341472_12 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341472_12 WHERE incumbent = "Mac Collins"
29,041
<question>: What's the first elected year of the district who's been the last one to do so? <context>: CREATE TABLE table_1341472_12 (first_elected INTEGER)
SELECT MAX(first_elected) FROM table_1341472_12
29,042
<question>: Who were the candidates in the district where Charlie Norwood is the incumbent? <context>: CREATE TABLE table_1341472_12 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341472_12 WHERE incumbent = "Charlie Norwood"
29,043
<question>: Which result did the Republican have with the incumbent, Billy Tauzin? <context>: CREATE TABLE table_1341472_20 (result VARCHAR, party VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341472_20 WHERE party = "Republican" AND incumbent = "Billy Tauzin"
29,044
<question>: How many districts was Robert Livingston incumbent in? <context>: CREATE TABLE table_1341472_20 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1341472_20 WHERE incumbent = "Robert Livingston"
29,045
<question>: What is the first election year listed? <context>: CREATE TABLE table_1341472_20 (first_elected INTEGER)
SELECT MIN(first_elected) FROM table_1341472_20
29,046
<question>: List all results in elections with Richard Baker as the incumbent. <context>: CREATE TABLE table_1341472_20 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1341472_20 WHERE incumbent = "Richard Baker"
29,047
<question>: how many party with district being washington 7 <context>: CREATE TABLE table_1341472_49 (party VARCHAR, district VARCHAR)
SELECT COUNT(party) FROM table_1341472_49 WHERE district = "Washington 7"
29,048
<question>: what's the latest first elected year <context>: CREATE TABLE table_1341472_49 (first_elected INTEGER)
SELECT MAX(first_elected) FROM table_1341472_49
29,049
<question>: what's the result with district being washington 7 <context>: CREATE TABLE table_1341472_49 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341472_49 WHERE district = "Washington 7"
29,050
<question>: what being the minimum first elected with district being washington 7 <context>: CREATE TABLE table_1341472_49 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_1341472_49 WHERE district = "Washington 7"
29,051
<question>: what's the result for first elected in 1948 , 1964 <context>: CREATE TABLE table_1341472_15 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_1341472_15 WHERE first_elected = "1948 , 1964"
29,052
<question>: what's the first elected with district illinois 18 <context>: CREATE TABLE table_1341472_15 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341472_15 WHERE district = "Illinois 18"
29,053
<question>: what's the party with candidates  jerry weller (r) 51.77% clem balanoff (d) 48.23% <context>: CREATE TABLE table_1341472_15 (party VARCHAR, candidates VARCHAR)
SELECT party FROM table_1341472_15 WHERE candidates = "Jerry Weller (R) 51.77% Clem Balanoff (D) 48.23%"
29,054
<question>: what's the party for the first elected in 1980 <context>: CREATE TABLE table_1341472_15 (party VARCHAR, first_elected VARCHAR)
SELECT party FROM table_1341472_15 WHERE first_elected = "1980"
29,055
<question>: what's the result with district illinois 15 <context>: CREATE TABLE table_1341472_15 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341472_15 WHERE district = "Illinois 15"
29,056
<question>: what's the total number of candidates for first elected in 1948 , 1964 <context>: CREATE TABLE table_1341472_15 (candidates VARCHAR, first_elected VARCHAR)
SELECT COUNT(candidates) FROM table_1341472_15 WHERE first_elected = "1948 , 1964"
29,057
<question>: Name thedistrict for 1994 <context>: CREATE TABLE table_1341472_34 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341472_34 WHERE first_elected = 1994
29,058
<question>: Name the result for New York 11 <context>: CREATE TABLE table_1341472_34 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341472_34 WHERE district = "New York 11"
29,059
<question>: Name the number of first elected for new york 11 <context>: CREATE TABLE table_1341472_34 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1341472_34 WHERE district = "New York 11"
29,060
<question>: Name the first elected for new york 1 <context>: CREATE TABLE table_1341472_34 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1341472_34 WHERE district = "New York 1"
29,061
<question>: What year was Larry combest elected <context>: CREATE TABLE table_1341472_45 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341472_45 WHERE incumbent = "Larry Combest"
29,062
<question>: To what district does Bill Hefner belong? <context>: CREATE TABLE table_1341522_36 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341522_36 WHERE incumbent = "Bill Hefner"
29,063
<question>: Who ran unsuccessfully against Bill Hefner? <context>: CREATE TABLE table_1341522_36 (opponent VARCHAR, incumbent VARCHAR)
SELECT opponent FROM table_1341522_36 WHERE incumbent = "Bill Hefner"
29,064
<question>: How many districts are respresented by Alex McMillan? <context>: CREATE TABLE table_1341522_36 (status VARCHAR, incumbent VARCHAR)
SELECT COUNT(status) FROM table_1341522_36 WHERE incumbent = "Alex McMillan"
29,065
<question>: What party is Sanford Bishop a member of? <context>: CREATE TABLE table_1341522_13 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341522_13 WHERE incumbent = "Sanford Bishop"
29,066
<question>: What party won in the district Georgia7? <context>: CREATE TABLE table_1341522_13 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341522_13 WHERE district = "Georgia7"
29,067
<question>: What's Georgia5's first elected year? <context>: CREATE TABLE table_1341522_13 (first_elected INTEGER, district VARCHAR)
SELECT MAX(first_elected) FROM table_1341522_13 WHERE district = "Georgia5"
29,068
<question>: Who opposed Marty Meehan in each election? <context>: CREATE TABLE table_1341522_24 (opponent VARCHAR, incumbent VARCHAR)
SELECT opponent FROM table_1341522_24 WHERE incumbent = "Marty Meehan"
29,069
<question>: Who are the opponents in Massachusetts5 district? <context>: CREATE TABLE table_1341522_24 (opponent VARCHAR, district VARCHAR)
SELECT opponent FROM table_1341522_24 WHERE district = "Massachusetts5"
29,070
<question>: What parties are represented in Massachusetts4 district? <context>: CREATE TABLE table_1341522_24 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341522_24 WHERE district = "Massachusetts4"
29,071
<question>: Who is the incumbent in district Massachusetts7? <context>: CREATE TABLE table_1341522_24 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1341522_24 WHERE district = "Massachusetts7"
29,072
<question>: how many first elected with district being new york2 <context>: CREATE TABLE table_1341549_33 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1341549_33 WHERE district = "New York2"
29,073
<question>: how many district with candidates being eliot l. engel (d) 85.2% martin richman (r) 14.8% <context>: CREATE TABLE table_1341549_33 (district VARCHAR, candidates VARCHAR)
SELECT COUNT(district) FROM table_1341549_33 WHERE candidates = "Eliot L. Engel (D) 85.2% Martin Richman (R) 14.8%"
29,074
<question>: how many candidates with party being democratic and dbeingtrict being new york5 <context>: CREATE TABLE table_1341549_33 (candidates VARCHAR, party VARCHAR, district VARCHAR)
SELECT COUNT(candidates) FROM table_1341549_33 WHERE party = "Democratic" AND district = "New York5"
29,075
<question>: how many first elected with result being re-elected and incumbent being gary ackerman redistricted from the 7th district <context>: CREATE TABLE table_1341549_33 (first_elected VARCHAR, result VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1341549_33 WHERE result = "Re-elected" AND incumbent = "Gary Ackerman Redistricted from the 7th district"
29,076
<question>: What party does ron klink represent? <context>: CREATE TABLE table_1341522_41 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341522_41 WHERE incumbent = "Ron Klink"
29,077
<question>: Who was in the election that was for incumbent bud shuster's seat? <context>: CREATE TABLE table_1341522_41 (opponent VARCHAR, incumbent VARCHAR)
SELECT opponent FROM table_1341522_41 WHERE incumbent = "Bud Shuster"
29,078
<question>: What district had someone first elected in 1982? <context>: CREATE TABLE table_1341522_41 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341522_41 WHERE first_elected = 1982
29,079
<question>: How many republican incumbents first elected in 1974? <context>: CREATE TABLE table_1341522_41 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT COUNT(incumbent) FROM table_1341522_41 WHERE party = "Republican" AND first_elected = 1974
29,080
<question>: What was the result of the election where william f. goodling was the incumbent? <context>: CREATE TABLE table_1341522_41 (status VARCHAR, incumbent VARCHAR)
SELECT status FROM table_1341522_41 WHERE incumbent = "William F. Goodling"
29,081
<question>: What party did incumbent Howard Coble belong to? <context>: CREATE TABLE table_1341568_34 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341568_34 WHERE incumbent = "Howard Coble"
29,082
<question>: What party did incumbent Stephen L. Neal belong to? <context>: CREATE TABLE table_1341568_34 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341568_34 WHERE incumbent = "Stephen L. Neal"
29,083
<question>: In how many districts was the democratic incumbent elected in 1974? <context>: CREATE TABLE table_1341568_34 (district VARCHAR, party VARCHAR, elected VARCHAR)
SELECT COUNT(district) FROM table_1341568_34 WHERE party = "Democratic" AND elected = 1974
29,084
<question>: What year was incumbent Martin Lancaster elected? <context>: CREATE TABLE table_1341568_34 (elected INTEGER, incumbent VARCHAR)
SELECT MIN(elected) FROM table_1341568_34 WHERE incumbent = "Martin Lancaster"
29,085
<question>: What are the locations where the year of election is 1980? <context>: CREATE TABLE table_1341568_24 (district VARCHAR, elected VARCHAR)
SELECT district FROM table_1341568_24 WHERE elected = 1980
29,086
<question>: What location is Vin Weber from? <context>: CREATE TABLE table_1341568_24 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341568_24 WHERE incumbent = "Vin Weber"
29,087
<question>: What is Larry Combest's district? <context>: CREATE TABLE table_1341568_44 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341568_44 WHERE incumbent = "Larry Combest"
29,088
<question>: What is the status of incumbent Charles Stenholm? <context>: CREATE TABLE table_1341568_44 (status VARCHAR, incumbent VARCHAR)
SELECT status FROM table_1341568_44 WHERE incumbent = "Charles Stenholm"
29,089
<question>: How many incumbents represent district California 34? <context>: CREATE TABLE table_1341568_6 (incumbent VARCHAR, district VARCHAR)
SELECT COUNT(incumbent) FROM table_1341568_6 WHERE district = "California 34"
29,090
<question>: What is the elected status of the Democratic party in 1989? <context>: CREATE TABLE table_1341568_6 (status VARCHAR, party VARCHAR, elected VARCHAR)
SELECT status FROM table_1341568_6 WHERE party = "Democratic" AND elected = "1989"
29,091
<question>: Who are the opponents in district California 9? <context>: CREATE TABLE table_1341568_6 (opponent VARCHAR, district VARCHAR)
SELECT opponent FROM table_1341568_6 WHERE district = "California 9"
29,092
<question>: Who are the incumbents elected in 1974? <context>: CREATE TABLE table_1341568_6 (incumbent VARCHAR, elected VARCHAR)
SELECT incumbent FROM table_1341568_6 WHERE elected = "1974"
29,093
<question>: Which incumbent was first elected in 1958? <context>: CREATE TABLE table_1341577_36 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341577_36 WHERE first_elected = 1958
29,094
<question>: Who are all the candidates who ran in the district where Ralph Regula is the incumbent? <context>: CREATE TABLE table_1341577_36 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341577_36 WHERE incumbent = "Ralph Regula"
29,095
<question>: Which party does Del Latta belong to? <context>: CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341577_36 WHERE incumbent = "Del Latta"
29,096
<question>: Which party does Tom Luken belong to? <context>: CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341577_36 WHERE incumbent = "Tom Luken"
29,097
<question>: Who were all the candidates when incumbent was Tim Valentine? <context>: CREATE TABLE table_1341577_34 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341577_34 WHERE incumbent = "Tim Valentine"
29,098
<question>: Name the incumbent for first elected 1958 <context>: CREATE TABLE table_1341577_22 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1341577_22 WHERE first_elected = 1958
29,099
<question>: What is the district for 1952? <context>: CREATE TABLE table_1341577_22 (district VARCHAR, first_elected VARCHAR)
SELECT district FROM table_1341577_22 WHERE first_elected = 1952