question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What is the party where the incumbent is overton brooks? | 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"='Overton Brooks'; | 1-1342198-18 |
who athe party where district is louisiana 2? | 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"='Louisiana 2'; | 1-1342198-18 |
who is the candidate where district is louisiana 3? | 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"='Louisiana 3'; | 1-1342198-18 |
what is the minimum number first elected to 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 MIN("first_elected") FROM "united_states_house_of_representatives_e" WHERE "district"='Louisiana 5'; | 1-1342198-18 |
What was the result when incumbent Tom Steed 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"='Tom Steed'; | 1-1342198-36 |
What was the candidates for hardie scott | 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"='Hardie Scott'; | 1-1342198-38 |
What is the number of candidates for pennsylvania 3 | 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"='Pennsylvania 3'; | 1-1342198-38 |
What is the number of candidates for pennsylvania 21 | 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"='Pennsylvania 21'; | 1-1342198-38 |
What is the party for first elected 1948 for william t. granahan | 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"=1948 AND "incumbent"='William T. Granahan'; | 1-1342198-38 |
How many candidates were there in the race where Cecil R. King 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 COUNT("candidates") FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Cecil R. King'; | 1-1342198-6 |
How many districts have an incumbent first elected in 1944? | 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 "first_elected"=1944; | 1-1342198-6 |
Who was the incumbent in the Illinois 17 district? | CREATE TABLE "table1_1342218_13" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "table1_1342218_13" WHERE "district"='Illinois 17'; | 1-1342218-13 |
How many people on this list are named thomas abernethy? | 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 "incumbent"='Thomas Abernethy'; | 1-1342218-24 |
How many times was w. arthur winstead first elected? | 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 "incumbent"='W. Arthur Winstead'; | 1-1342218-24 |
How many times was william m. colmer winstead first elected? | 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 "incumbent"='William M. Colmer'; | 1-1342218-24 |
What was the result of the election with jamie l. whitten? | 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"='Jamie L. Whitten'; | 1-1342218-24 |
What candidate was re-elected and was 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 "result"='Re-elected' AND "first_elected"=1942; | 1-1342218-35 |
Who are the candidates in the election in the Ohio 9 district? | 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"='Ohio 9'; | 1-1342218-35 |
What year was incumbent Michael A. Feighan first 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"='Michael A. Feighan'; | 1-1342218-35 |
What party does the incumbent from the Ohio 5 district 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 "district"='Ohio 5'; | 1-1342218-35 |
What party does the incumbent from the Ohio 20 district 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 "district"='Ohio 20'; | 1-1342218-35 |
What party does the incumbent from the Ohio 7 district 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 "district"='Ohio 7'; | 1-1342218-35 |
Who is the candidate for the district Arkansas 2? | 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"='Arkansas 2'; | 1-1342218-5 |
Which district has the incumbent Wilbur Mills and a re-elected result? | 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 "result"='Re-elected' AND "incumbent"='Wilbur Mills'; | 1-1342218-5 |
What year was first-elected for the row of Texas 2? | 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 2'; | 1-1342218-43 |
What was the result for the incumbent Milton H. West? | 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"='Milton H. West'; | 1-1342218-43 |
What party is associated with Texas 2? | 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 2'; | 1-1342218-43 |
When the result is retired to run for U.S. Senate Democratic Hold, who is the candidate? | 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"='Retired to run for U.S. Senate Democratic hold'; | 1-1342218-43 |
What candidate has a result of being re-elected in the Texas 7 District? | 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 "district"='Texas 7'; | 1-1342218-43 |
Which party is associated with the candidate Albert Sidney Camp (D) unopposed? | CREATE TABLE "table1_1342233_11" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "table1_1342233_11" WHERE "candidates"='Albert Sidney Camp (D) Unopposed'; | 1-1342233-11 |
Which district is associated with the incumbent Carl Vinson? | CREATE TABLE "table1_1342233_11" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_1342233_11" WHERE "incumbent"='Carl Vinson'; | 1-1342233-11 |
Which candidates are associated with the Georgia 7 district? | CREATE TABLE "table1_1342233_11" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_1342233_11" WHERE "district"='Georgia 7'; | 1-1342233-11 |
What candidate is associated with the Georgia 4 district? | CREATE TABLE "table1_1342233_11" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_1342233_11" WHERE "district"='Georgia 4'; | 1-1342233-11 |
What year was incumbent joe b. bates first elected? | 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"='Joe B. Bates'; | 1-1342233-17 |
What party is incumbent virgil chapman from? | 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"='Virgil Chapman'; | 1-1342233-17 |
What year was clair engle first elected? | 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"='Clair Engle'; | 1-1342218-6 |
what is the result of the first elected is 1943? | 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 "first_elected"=1943; | 1-1342218-6 |
what the the end number where albert rains was running | 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"='Albert Rains'; | 1-1342233-3 |
what the was the final in which frank w. boykin was running | 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"='Frank W. Boykin'; | 1-1342233-3 |
Name the total number of first elected for sol bloom | 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 "incumbent"='Sol Bloom'; | 1-1342233-32 |
Name the candidates for ellsworth b. buck | 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"='Ellsworth B. Buck'; | 1-1342233-32 |
What are the candidates for new york 35? | 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"='New York 35'; | 1-1342233-32 |
What is the party for new york 20? | 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"='New York 20'; | 1-1342233-32 |
What was the result of the election featuring r. ewing thomason (d) unopposed? | CREATE TABLE "table1_1342233_43" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "table1_1342233_43" WHERE "candidates"='R. Ewing Thomason (D) Unopposed'; | 1-1342233-43 |
What district is eugene worley from? | CREATE TABLE "table1_1342233_43" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "table1_1342233_43" WHERE "incumbent"='Eugene Worley'; | 1-1342233-43 |
how many result with candidates being richard j. welch (r) unopposed | CREATE TABLE "table1_1342233_6" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("result") FROM "table1_1342233_6" WHERE "candidates"='Richard J. Welch (R) Unopposed'; | 1-1342233-6 |
what's the result with incumbent being jack z. anderson | CREATE TABLE "table1_1342233_6" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "table1_1342233_6" WHERE "incumbent"='Jack Z. Anderson'; | 1-1342233-6 |
what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed | CREATE TABLE "table1_1342233_6" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "district" FROM "table1_1342233_6" WHERE "result"='Re-elected' AND "candidates"='Clarence F. Lea (D) Unopposed'; | 1-1342233-6 |
what's the first elected with incumbent being clair engle | CREATE TABLE "table1_1342233_6" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "first_elected" FROM "table1_1342233_6" WHERE "incumbent"='Clair Engle'; | 1-1342233-6 |
who is the the candidates with incumbent being alfred j. elliott | CREATE TABLE "table1_1342233_6" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_1342233_6" WHERE "incumbent"='Alfred J. Elliott'; | 1-1342233-6 |
who is the the incumbent with candidates being jack z. anderson (r) unopposed | CREATE TABLE "table1_1342233_6" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "table1_1342233_6" WHERE "candidates"='Jack Z. Anderson (R) Unopposed'; | 1-1342233-6 |
How many parties does incumbent carl vinson represent? | 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"='Carl Vinson'; | 1-1342249-11 |
How many parties does incumbent stephen pace represent? | 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"='Stephen Pace'; | 1-1342249-11 |
Who were the candidates when Noah M. Mason was incumbent? | CREATE TABLE "table1_1342249_13" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_1342249_13" WHERE "incumbent"='Noah M. Mason'; | 1-1342249-13 |
In what year was Leo E. Allen first elected? | CREATE TABLE "table1_1342249_13" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "first_elected" FROM "table1_1342249_13" WHERE "incumbent"='Leo E. Allen'; | 1-1342249-13 |
Who were the candidates when Sid Simpson was the incumbent? | CREATE TABLE "table1_1342249_13" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "candidates" FROM "table1_1342249_13" WHERE "incumbent"='Sid Simpson'; | 1-1342249-13 |
What was the result of Robert L. F. Sikes' election bid? | 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 L. F. Sikes'; | 1-1342256-10 |
How many districts have an incumbent first elected in 1940? | 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 "first_elected"=1940; | 1-1342256-10 |
How many races involve incumbent Pat Cannon? | 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"='Pat Cannon'; | 1-1342256-10 |
Which incumbent was first elected 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-1342256-10 |
What is the first electedfor district ohio 18 | 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"='Ohio 18'; | 1-1342249-35 |
What is the incumbent for ohio 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"='Ohio 12'; | 1-1342249-35 |
Who are all of the candidates in the election featuring james r. domengeaux? | 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"='James R. Domengeaux'; | 1-1342256-18 |
Name all the candidates that ran for the seat where Harold D. Cooley 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 "candidates" FROM "united_states_house_of_representatives_e" WHERE "incumbent"='Harold D. Cooley'; | 1-1342256-33 |
How many partys have a candidate first elected in 1923? | 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 "first_elected"=1923; | 1-1342256-33 |
what was the number of candidates when Leon Sacks was incumbent? | 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 "incumbent"='Leon Sacks'; | 1-1342256-38 |
What was the result in Pennsylvania 13? | 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"='Pennsylvania 13'; | 1-1342256-38 |
Who was the incumbent in Pennsylvania 27? | 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"='Pennsylvania 27'; | 1-1342256-38 |
Who are the contenders In the New York 19 polling area race? | 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"='New York 19'; | 1-1342256-32 |
How many polling areas are there with John Taber as the sitting Representative? | 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"='John Taber'; | 1-1342256-32 |
Who are the contenders In the New York 29 polling area race? | 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"='New York 29'; | 1-1342256-32 |
Which political party is involved where John J. Delaney is the sitting Representative? | 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"='John J. Delaney'; | 1-1342256-32 |
Who is the sitting Representative In the New York 10 polling area race? | 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"='New York 10'; | 1-1342256-32 |
How many sitting Representatives are there in the New York 10 polling area? | 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"='New York 10'; | 1-1342256-32 |
What is the district for james p. richards? | 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 P. Richards'; | 1-1342256-40 |
What is the candidate for south carolina 4? | 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"='South Carolina 4'; | 1-1342256-40 |
What is the candidate for south carolina 3? | 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"='South Carolina 3'; | 1-1342256-40 |
What is the first elected for south carolina 4? | 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"='South Carolina 4'; | 1-1342256-40 |
How many candidates were in the election featuring brooks hays (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("first_elected") FROM "united_states_house_of_representatives_e" WHERE "candidates"='Brooks Hays (D) Unopposed'; | 1-1342256-5 |
What party does clyde t. ellis 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"='Clyde T. Ellis'; | 1-1342256-5 |
how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4% | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "united_states_house_of_representatives_e" WHERE "candidates"='John J. Phillips (R) 57.6% N. E. West (D) 42.4%'; | 1-1342256-6 |
what's the result with dbeingtrict being california 10 | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT "result" FROM "united_states_house_of_representatives_e" WHERE "district"='California 10'; | 1-1342256-6 |
what's the party with first elected being 1926 | 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 "first_elected"='1926'; | 1-1342256-6 |
what's the incumbent with result being new seat republican gain | 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 "result"='New seat Republican gain'; | 1-1342256-6 |
what was the maxiumum for the 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-1342270-24 |
what's the first elected with incumbent being joe starnes | 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"='Joe Starnes'; | 1-1342270-3 |
what's the first elected with candidates being joe starnes (d) 100.0% george bogus ( w/i ) 0.003% | 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 "candidates"='Joe Starnes (D) 100.0% George Bogus ( W/I ) 0.003%'; | 1-1342270-3 |
how many party with dbeingtrict being alabama 6 | 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"='Alabama 6'; | 1-1342270-3 |
what are all the district with incumbent being sam hobbs | 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"='Sam Hobbs'; | 1-1342270-3 |
what are all the result with district being alabama 1 | 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"='Alabama 1'; | 1-1342270-3 |
what is the maximum first elected with district being alabama 5 | 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"='Alabama 5'; | 1-1342270-3 |
What was the result in the Tennessee 6 district election? | CREATE TABLE "table1_1342270_42" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "table1_1342270_42" WHERE "district"='Tennessee 6'; | 1-1342270-42 |
In how many districts was the incumbent Estes Kefauver? | CREATE TABLE "table1_1342270_42" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("district") FROM "table1_1342270_42" WHERE "incumbent"='Estes Kefauver'; | 1-1342270-42 |
What is the latest year any of the incumbents were first elected? | CREATE TABLE "table1_1342270_42" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT MAX("first_elected") FROM "table1_1342270_42"; | 1-1342270-42 |
What was the result of the Tennessee 2 district election? | CREATE TABLE "table1_1342270_42" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "table1_1342270_42" WHERE "district"='Tennessee 2'; | 1-1342270-42 |
What district is incumbent robert l. mouton 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"='Robert L. Mouton'; | 1-1342292-17 |
William Fadjo Cravens is the only candidate who was first elected in 1939. | 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 "incumbent"='William Fadjo Cravens'; | 1-1342270-5 |
William Fadjo Cravens serves the fourth district of Arkansas. | 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"='William Fadjo Cravens'; | 1-1342270-5 |
what's the party with district being alabama 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"='Alabama 3'; | 1-1342292-2 |
what's the incumbent with candidates being sam hobbs (d) 88.2% c. w. mckay (r) 11.8% | 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"='Sam Hobbs (D) 88.2% C. W. McKay (R) 11.8%'; | 1-1342292-2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.