question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
What district is incumbent albert rains 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 Rains'; | 1-1341897-3 |
How many candidates represent the district of kenneth a. roberts? | 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"='Kenneth A. Roberts'; | 1-1341897-3 |
Who was the incumbent in the Arkansas 2 district election? | 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"='Arkansas 2'; | 1-1341897-6 |
When was Dale Alford first elected in the Arkansas 5 district? | 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"='Arkansas 5'; | 1-1341897-6 |
When was James William Trimble first elected in the Arkansas 3 district? | 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"='Arkansas 3'; | 1-1341897-6 |
When party did the incumbent in the Arkansas 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"='Arkansas 5'; | 1-1341897-6 |
What was the result in the Arkansas 5 district election? | 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"='Arkansas 5'; | 1-1341897-6 |
What party did the incumbent in the Arkansas 2 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"='Arkansas 2'; | 1-1341897-6 |
How many candidates were there in the election for William Jennings Bryan Dorn's seat? | 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"='William Jennings Bryan Dorn'; | 1-1341897-42 |
What is the earliest 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 MIN("first_elected") FROM "united_states_house_of_representatives_e"; | 1-1341897-42 |
What was the result of the election in which Lindley Beckworth was the incumbent? | 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"='Lindley Beckworth'; | 1-1341897-45 |
Which incumbent was first elected in 1936? | 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"=1936; | 1-1341897-45 |
What was the result of the election in which Walter E. Rogers was the incumbent? | 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"='Walter E. Rogers'; | 1-1341897-45 |
When was Paul Rogers 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"='Paul Rogers'; | 1-1341930-10 |
Which district is James A. Haley 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"='James A. Haley'; | 1-1341930-10 |
What year were the latest elections? | 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-1341930-10 |
In what district is the incumbent John Bell Williams? | 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 Bell Williams'; | 1-1341930-24 |
In what year was John Bell Williams 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"='John Bell Williams'; | 1-1341930-24 |
How many districts have W. Arthur Winstead as elected official? | 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"='W. Arthur Winstead'; | 1-1341930-24 |
What is the district for carl vinson? | 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 Vinson'; | 1-1341930-11 |
What is the most first elected for james c. davis? | 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 "incumbent"='James C. Davis'; | 1-1341930-11 |
What is the first elected for georgia 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"='Georgia 4'; | 1-1341930-11 |
which affiliation does edwin e. willis affiliate with | 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 E. Willis'; | 1-1341930-18 |
which affiliation is james h. morrison part of | 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"='James H. Morrison'; | 1-1341930-18 |
Who is the candidate that was first elected in 1914? | 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"=1914; | 1-1341973-11 |
In which district is the incumbent Carl Vinson? | 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 Vinson'; | 1-1341973-11 |
Name the candidates for l. mendel rivers | 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"='L. Mendel Rivers'; | 1-1341930-40 |
Name the result 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 "result" FROM "united_states_house_of_representatives_e" WHERE "district"='South Carolina 4'; | 1-1341930-40 |
Name the candidates 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-1341930-40 |
Name the incumbent for first elected 1956 | 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"=1956; | 1-1341930-40 |
Name the number of party with the incubent james william trimble | 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"='James William Trimble'; | 1-1341930-5 |
What is the result for 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 "result" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1944; | 1-1341930-5 |
What is the number of party in the arkansas 1 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"='Arkansas 1'; | 1-1341930-5 |
Who is the incumbent in the Alabama 6 voting 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"='Alabama 6'; | 1-1341973-3 |
Which candidates were in the election where Frank W. Boykin was an 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"='Frank W. Boykin'; | 1-1341973-3 |
Who were the candidates in the election where the incumbent is George M. Grant? | 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"='George M. Grant'; | 1-1341973-3 |
Which candidates ran in the Alabama 6 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"='Alabama 6'; | 1-1341973-3 |
What is the latest year listed with the Alabama 4 voting district? | 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 4'; | 1-1341973-3 |
What was the result when incumbent Fred E. Busbey 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"='Fred E. Busbey'; | 1-1342013-12 |
How many results are listed for the election where Noah M. Mason was elected? | 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"='Noah M. Mason'; | 1-1342013-12 |
What was the result when Leo E. Allen 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"='Leo E. Allen'; | 1-1342013-12 |
Which party had a person who has been in the seat since 1914? | 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"=1914; | 1-1342013-10 |
Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr. | 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"='Prince Hulon Preston, Jr.'; | 1-1342013-10 |
How many candidates ran in the race where the incumbent is J. L. Pilcher? | 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"='J. L. Pilcher'; | 1-1342013-10 |
John W. Heselton was first elected in what year? | 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 "incumbent"='John W. Heselton'; | 1-1342013-20 |
Thomas J. Lane is the incumbent of how many parties? | 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"='Thomas J. Lane'; | 1-1342013-20 |
Who is the 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 "incumbent" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1944; | 1-1342013-20 |
What was the result for the politician 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 "result" FROM "united_states_house_of_representatives_e" WHERE "first_elected"=1942; | 1-1342013-20 |
what's the result for district ohio 2 | CREATE TABLE "table1_1342013_34" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "table1_1342013_34" WHERE "district"='Ohio 2'; | 1-1342013-34 |
who is the the incumbent with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% | CREATE TABLE "table1_1342013_34" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "table1_1342013_34" WHERE "candidates"='John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%'; | 1-1342013-34 |
who is the the incumbent with district being ohio 2 | CREATE TABLE "table1_1342013_34" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "incumbent" FROM "table1_1342013_34" WHERE "district"='Ohio 2'; | 1-1342013-34 |
what's the result with incumbent being william h. ayres | CREATE TABLE "table1_1342013_34" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT "result" FROM "table1_1342013_34" WHERE "incumbent"='William H. Ayres'; | 1-1342013-34 |
how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% | CREATE TABLE "table1_1342013_34" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"result" text,
"candidates" text
); | SELECT COUNT("party") FROM "table1_1342013_34" WHERE "candidates"='John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%'; | 1-1342013-34 |
what district is Brooks Hays 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"='Brooks Hays'; | 1-1342013-4 |
Omar Burleson was the incumbent in what district? | 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"='Omar Burleson'; | 1-1342013-42 |
In what district was incumbent first elected in 1938? | 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"=1938; | 1-1342013-42 |
Name the party for the pennsylvania 25 | 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"='Pennsylvania 25'; | 1-1342013-37 |
Name the minumim first elected for alvin bush | 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"='Alvin Bush'; | 1-1342013-37 |
What is the incumbent for pennsylvania 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"='Pennsylvania 15'; | 1-1342013-37 |
What are the candidates for noah m. mason? | 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"='Noah M. Mason'; | 1-1342149-13 |
What is the candidates for fred e. busbey? | 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"='Fred E. Busbey'; | 1-1342149-13 |
What is the incumbent for 1932? | 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"=1932; | 1-1342149-13 |
how many first elected with incumbent being charles edward bennett | 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"='Charles Edward Bennett'; | 1-1342013-9 |
who is the the incumbent with dbeingtrict being florida 2 | 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"='Florida 2'; | 1-1342013-9 |
what's the result with candidates being charles edward bennett (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"='Charles Edward Bennett (D) Unopposed'; | 1-1342013-9 |
what's the result with dbeingtrict being florida 4 | 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"='Florida 4'; | 1-1342013-9 |
how many party with candidates being charles edward bennett (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("party") FROM "united_states_house_of_representatives_e" WHERE "candidates"='Charles Edward Bennett (D) Unopposed'; | 1-1342013-9 |
how many first elected with incumbent being william c. lantaff | 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 C. Lantaff'; | 1-1342013-9 |
What was the result of the election when Tic Forrester ran as an incumbent? | 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"='Tic Forrester'; | 1-1342149-11 |
What was the final result for Craig Hosmer? | 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"='Craig Hosmer'; | 1-1342013-5 |
What district does Harlan Hagen represent? | 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"='Harlan Hagen'; | 1-1342013-5 |
Who was the candidate in the election in the Louisiana 2 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"='Louisiana 2'; | 1-1342149-18 |
What candidate was re-elected 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 "candidates" FROM "united_states_house_of_representatives_e" WHERE "result"='Re-elected' AND "district"='Louisiana 5'; | 1-1342149-18 |
What party's candidate was re-elected in the Louisiana 6 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 "result"='Re-elected' AND "district"='Louisiana 6'; | 1-1342149-18 |
What was the result in the election where Hale Boggs was the incumbent? | 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"='Hale Boggs'; | 1-1342149-18 |
what is the channel width that overlaps channels 1,3-6? | CREATE TABLE "b_802_11_channel_to_frequency_map" (
"channel" real,
"center_frequency" text,
"frequency_delta" text,
"channel_width" text,
"overlaps_channels" text
); | SELECT "channel_width" FROM "b_802_11_channel_to_frequency_map" WHERE "overlaps_channels"='1,3-6'; | 1-13420417-1 |
Name the result for mississippi 2 | 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"='Mississippi 2'; | 1-1342149-24 |
Name the number of candidates for 1941 | 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 "first_elected"=1941; | 1-1342149-24 |
Name the candidates for result of lost renomination democratic loss | 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"='Lost renomination Democratic loss'; | 1-1342149-24 |
Name the result for first elected of 1920 | 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"=1920; | 1-1342149-24 |
In the District Tennessee 7 what is the number of 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 "district"='Tennessee 7'; | 1-1342149-42 |
What is the candidates result that is tom j. murray (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"='Tom J. Murray (D) Unopposed'; | 1-1342149-42 |
For the Republican party what are the names of the incumbents? | 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 "party"='Republican'; | 1-1342149-42 |
How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.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 "candidates"='Howard Baker, Sr. (R) 68.9% Boyd W. Cox (D) 31.1%'; | 1-1342149-42 |
Which district had Paul B. Dague as the incumbent? | 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"='Paul B. Dague'; | 1-1342149-38 |
What was the result in the election where the incumbent was first elected in 1942? | 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 "first_elected"='1942'; | 1-1342149-43 |
What was the result of the election in the Texas 3 district? | 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"='Texas 3'; | 1-1342149-43 |
What party did incumbent Wright Patman belong to? | 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"='Wright Patman'; | 1-1342149-43 |
What was the result of the election in the Texas 4 district? | 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"='Texas 4'; | 1-1342149-43 |
What party did the re-elected incumbent of the Texas 11 district belong to? | 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 "result"='Re-elected' AND "district"='Texas 11'; | 1-1342149-43 |
List all those first elected in the California 22 voting district. | 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"='California 22'; | 1-1342149-6 |
Who was the first elected incumbent in the 1946 election? | 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"='1946'; | 1-1342149-6 |
How many results does the California 29 voting district have? | CREATE TABLE "united_states_house_of_representatives_e" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" text,
"result" text,
"candidates" text
); | SELECT COUNT("result") FROM "united_states_house_of_representatives_e" WHERE "district"='California 29'; | 1-1342149-6 |
Which party had Clair Engle as an incumbent? | 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"='Clair Engle'; | 1-1342149-6 |
What party does sid simpson 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"='Sid Simpson'; | 1-1342198-13 |
How many candidates ran against barratt o'hara? | 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"='Barratt O''Hara'; | 1-1342198-13 |
What year was incumbent barratt o'hara 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"='Barratt O''Hara'; | 1-1342198-13 |
How many results for minimum first elected incumbent Noble Jones Gregory? | 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"='Noble Jones Gregory'; | 1-1342198-17 |
How many results for incumbent Noble Jones Gregory? | 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"='Noble Jones Gregory'; | 1-1342198-17 |
Who is the candidate wehre district is louisiana 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"='Louisiana 1'; | 1-1342198-18 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.