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