question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
What year was incumbent mark w. hannaford elected? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MIN("first_elected") FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Mark W. Hannaford'; | 1-1341672-6 |
what is the district where the incumbent is richard kelly? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Richard Kelly'; | 1-1341672-10 |
what is the result where the candidates is robert l. f. sikes (d) unopposed? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "united_states_house_of_representatives_e" WHERE "candidates"='Robert L. F. Sikes (D) Unopposed'; | 1-1341672-10 |
who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "candidates"='William V. Chappell, Jr. (D) Unopposed'; | 1-1341672-10 |
what is the district where the incumbent is james a. haley? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='James A. Haley'; | 1-1341672-10 |
what is the district where the incumbent is richard kelly? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Richard Kelly'; | 1-1341672-10 |
who are the candidates where the district is florida 8? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "district"='Florida 8'; | 1-1341672-10 |
what year was the first elected incumbant Sidney R. Yates? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "first_elected" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Sidney R. Yates'; | 1-1341690-13 |
How many incumbents are there in district Louisiana 5? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("incumbent") FROM "united_states_house_of_representatives_e" WHERE "district"='Louisiana 5'; | 1-1341690-18 |
How many incumbents resulted in a lost renomination republican gain? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("incumbent") FROM "united_states_house_of_representatives_e" WHERE "result"='Lost renomination Republican gain'; | 1-1341690-18 |
In which district is the incumbent John Breaux? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='John Breaux'; | 1-1341690-18 |
What year was Otto Passman (d) unopposed first elected? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MAX("first_elected") FROM "united_states_house_of_representatives_e" WHERE "candidates"='Otto Passman (D) Unopposed'; | 1-1341690-18 |
What were the results when the incumbent was John Breaux? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='John Breaux'; | 1-1341690-18 |
Name the candidates for texas 1 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "district"='Texas 1'; | 1-1341690-43 |
Name the incumbent for district texas 12 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "district"='Texas 12'; | 1-1341690-43 |
Name the candidates for texas 20 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "district"='Texas 20'; | 1-1341690-43 |
what is the district with the candidates edward boland (d) unopposed? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "candidates"='Edward Boland (D) Unopposed'; | 1-1341690-21 |
what is the party where the candidates are edward boland (d) unopposed? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "candidates"='Edward Boland (D) Unopposed'; | 1-1341690-21 |
what is the party where the incumbent is edward boland? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Edward Boland'; | 1-1341690-21 |
How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("incumbent") FROM "united_states_house_of_representatives_e" WHERE "candidates"='Paul Tsongas (D) 60.6% Paul W. Cronin (R) 39.4%'; | 1-1341690-21 |
List all candidates in elections where the incumbent politician is Goodloe Byron. | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Goodloe Byron'; | 1-1341690-20 |
How many instances are there of party in the situation where Robert Bauman is the incumbent politician? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Robert Bauman'; | 1-1341690-20 |
What is the party of the election in which Robert Bauman is the incumbent? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Robert Bauman'; | 1-1341690-20 |
List all results where the voting district is Maryland 7. | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "united_states_house_of_representatives_e" WHERE "district"='Maryland 7'; | 1-1341690-20 |
What are all the results where Robert Bauman is the incumbent politician? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Robert Bauman'; | 1-1341690-20 |
Who were the candidates in the district won by the incumbent Del Latta? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Del Latta'; | 1-1341690-35 |
Who were the candidates in the districts that was first elected in 1966? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1966; | 1-1341690-35 |
Who was running for office in the California 10 district? | CREATE TABLE "table1_1341690_5" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_1341690_5" WHERE "district"='California 10'; | 1-1341690-5 |
How many parties won the election in the California 23 district? | CREATE TABLE "table1_1341690_5" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "table1_1341690_5" WHERE "district"='California 23'; | 1-1341690-5 |
What republican candidate was first elected most recently? | CREATE TABLE "table1_1341690_5" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MAX("first_elected") FROM "table1_1341690_5" WHERE "party"='Republican'; | 1-1341690-5 |
Phillip Landrum was first elected in 1952 from the ninth district of Georgia. | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1952; | 1-1341707-12 |
What party did the incumbent from the Illinois 12 district belong to? | CREATE TABLE "table1_1341707_15" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "party" FROM "table1_1341707_15" WHERE "district"='Illinois 12'; | 1-1341707-15 |
Who was the democratic incumbent in the Illinois 11 district who was re-elected? | CREATE TABLE "table1_1341707_15" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "table1_1341707_15" WHERE "party"='Democratic' AND "result"='Re-elected' AND "district"='Illinois 11'; | 1-1341707-15 |
Which incumbent was first elected in 1964? | CREATE TABLE "table1_1341707_15" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "table1_1341707_15" WHERE "first_elected"='1964'; | 1-1341707-15 |
What party did the incumbent from the Illinois 1 district belong to? | CREATE TABLE "table1_1341707_15" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "party" FROM "table1_1341707_15" WHERE "district"='Illinois 1'; | 1-1341707-15 |
What candidates ran in the election with don fuqua? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Don Fuqua'; | 1-1341690-9 |
How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("incumbent") FROM "united_states_house_of_representatives_e" WHERE "candidates"='Sam M. Gibbons (D) Unopposed'; | 1-1341690-9 |
What is the last year that someone is first elected? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MAX("first_elected") FROM "united_states_house_of_representatives_e"; | 1-1341690-9 |
Who was the incumbent in 1940? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1940; | 1-1341690-9 |
what is the party when the incumbent is sidney r. yates? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Sidney R. Yates'; | 1-1341718-14 |
what was the year first elected for district illinois 7? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MAX("first_elected") FROM "united_states_house_of_representatives_e" WHERE "district"='Illinois 7'; | 1-1341718-14 |
how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("incumbent") FROM "united_states_house_of_representatives_e" WHERE "candidates"='Phil Crane (R) 58.0% Edward A. Warman (D) 42.0%'; | 1-1341718-14 |
how many times was it the district illinois 18? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("candidates") FROM "united_states_house_of_representatives_e" WHERE "district"='Illinois 18'; | 1-1341718-14 |
who were the candidates when the incumbent was ed derwinski? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Ed Derwinski'; | 1-1341718-14 |
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 "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MIN("first_elected") FROM "united_states_house_of_representatives_e" WHERE "party"='Republican' AND "candidates"='Robert H. Michel (R) 66.1% Rosa Lee Fox (D) 33.9%'; | 1-1341718-14 |
Who is the incumbent in district Texas 15? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "district"='Texas 15'; | 1-1341707-45 |
Which district elected incumbent Earle Cabell? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Earle Cabell'; | 1-1341718-44 |
What was the result when Ray Roberts was elected? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Ray Roberts'; | 1-1341718-44 |
What is the highest year that a candidate was first elected? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MAX("first_elected") FROM "united_states_house_of_representatives_e"; | 1-1341738-11 |
Incumbent Bill Harsha was the winner in an election in which the candidates were who? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Bill Harsha'; | 1-1341718-36 |
What was the party of the first elected candidate in 1954? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1954; | 1-1341738-36 |
How many districts does Donald D. Clancy represent? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("district") FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Donald D. Clancy'; | 1-1341738-36 |
Which party is Lawrence H. Fountain part of? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Lawrence H. Fountain'; | 1-1341738-34 |
Who was the first person elected in North Carolina 8? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "first_elected" FROM "united_states_house_of_representatives_e" WHERE "district"='North Carolina 8'; | 1-1341738-34 |
who was the candidate elected to the democratic party in 1952? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "first_elected"='1952' AND "party"='Democratic'; | 1-1341738-34 |
What district did Joe Waggonner belong to? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Joe Waggonner'; | 1-1341738-19 |
What is the name of the incumbent who was first eleccted in 1940? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1940; | 1-1341738-19 |
What party does incumbent edwin reinecke represent? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Edwin Reinecke'; | 1-1341738-6 |
Who were the candidates in the election that featured incumbent don edwards? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Don Edwards'; | 1-1341738-6 |
Who's the incumbent of Indiana 4 district? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "district"='Indiana 4'; | 1-1341843-15 |
Who's the incumbent of the district with first election held in 1950? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "first_elected"='1950'; | 1-1341843-15 |
Who was featured in the election of charles edward bennett redistricted from 2nd? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Charles Edward Bennett Redistricted from 2nd'; | 1-1341843-10 |
Name the first elected for the republican party | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "first_elected" FROM "united_states_house_of_representatives_e" WHERE "party"='Republican'; | 1-1341865-23 |
Name the district with philip philbin | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Philip Philbin'; | 1-1341865-23 |
Name the party with edward boland | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Edward Boland'; | 1-1341865-23 |
What was the district who had their first elected in 1966? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1966; | 1-1341843-44 |
Who was the candidate when the incumbent was Richard C. White? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Richard C. White'; | 1-1341843-44 |
What district did Donald Ray Matthews belong to? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Donald Ray Matthews'; | 1-1341865-11 |
What party did Don Fuqua belong to? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Don Fuqua'; | 1-1341865-11 |
How many parties won the election in the Louisiana 5 district? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "united_states_house_of_representatives_e" WHERE "district"='Louisiana 5'; | 1-1341865-20 |
How many candidates were elected in the Louisiana 4 district? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("first_elected") FROM "united_states_house_of_representatives_e" WHERE "district"='Louisiana 4'; | 1-1341865-20 |
Who was the winner in the Louisiana 7 district? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "district"='Louisiana 7'; | 1-1341865-20 |
what's party with district being tennessee 3 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "district"='Tennessee 3'; | 1-1341865-44 |
how many party with district being tennessee 1 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "united_states_house_of_representatives_e" WHERE "district"='Tennessee 1'; | 1-1341865-44 |
what's party with district being tennessee 3 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "district"='Tennessee 3'; | 1-1341865-44 |
how many incumbent with district being tennessee 5 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("incumbent") FROM "united_states_house_of_representatives_e" WHERE "district"='Tennessee 5'; | 1-1341865-44 |
what's incumbent with district being tennessee 5 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "united_states_house_of_representatives_e" WHERE "district"='Tennessee 5'; | 1-1341865-44 |
Who ran in the race for Jack Brooks' seat? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Jack Brooks'; | 1-1341865-45 |
which section did seymour halpern run in | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Seymour Halpern'; | 1-1341865-34 |
What district is incumbent albert w. johnson from? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Albert W. Johnson'; | 1-1341865-40 |
How many times was frank m. clark the incumbent? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("result") FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Frank M. Clark'; | 1-1341865-40 |
What district is incumbent elmer j. holland from? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Elmer J. Holland'; | 1-1341865-40 |
To which party does Frank T. Bow belong? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Frank T. Bow'; | 1-1341865-37 |
Who ran in the race for the seat of incumbent Carl W. Rich? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Carl W. Rich'; | 1-1341865-37 |
In which district is the incumbent Carl W. Rich? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Carl W. Rich'; | 1-1341865-37 |
Name the candidates where incumbent Carl Vinson is? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Carl Vinson'; | 1-1341884-12 |
Name the candidates for massachusetts 8 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "district"='Massachusetts 8'; | 1-1341884-23 |
What candidates were in the election when a republican was re-elected? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "result"='Re-elected' AND "party"='Republican'; | 1-1341884-19 |
What district is incumbent frank chelf from? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Frank Chelf'; | 1-1341884-19 |
How many districts represented Edwin E. Willis? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("district") FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Edwin E. Willis'; | 1-1341884-20 |
Who were all the candidates when the first elected year was 1961? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1961; | 1-1341884-20 |
What party did Hale Boggs belong to? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Hale Boggs'; | 1-1341884-20 |
what is the political affiliation of the texas 12 district | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "district"='Texas 12'; | 1-1341884-45 |
how many voted in the texas 6 section | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "first_elected" FROM "united_states_house_of_representatives_e" WHERE "district"='Texas 6'; | 1-1341884-45 |
what is the political affiliation of ray roberts | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Ray Roberts'; | 1-1341884-45 |
What district featured an election between james a. byrne (d) 59.3% joseph r. burns (r) 40.7%? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "united_states_house_of_representatives_e" WHERE "candidates"='James A. Byrne (D) 59.3% Joseph R. Burns (R) 40.7%'; | 1-1341884-40 |
Name the candidates for massachusetts 6 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "district"='Massachusetts 6'; | 1-1341897-23 |
Name the result for massachusetts 3 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "united_states_house_of_representatives_e" WHERE "district"='Massachusetts 3'; | 1-1341897-23 |
Name the candidate first elected in 1942 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1942; | 1-1341897-23 |
Name the party for massachusetts 3 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "party" FROM "united_states_house_of_representatives_e" WHERE "district"='Massachusetts 3'; | 1-1341897-23 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.