question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
When was James William Trimble first elected in the Arkansas 3 district? | CREATE TABLE table_1341897_6 (first_elected INTEGER, district VARCHAR) | {
"SQL_Query": "SELECT MIN(first_elected) FROM table_1341897_6 WHERE district = \"Arkansas 3\""
} |
When party did the incumbent in the Arkansas 5 district belong to? | CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1341897_6 WHERE district = \"Arkansas 5\""
} |
What was the result in the Arkansas 5 district election? | CREATE TABLE table_1341897_6 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1341897_6 WHERE district = \"Arkansas 5\""
} |
What party did the incumbent in the Arkansas 2 district belong to? | CREATE TABLE table_1341897_6 (party VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1341897_6 WHERE district = \"Arkansas 2\""
} |
How many candidates were there in the election for William Jennings Bryan Dorn's seat? | CREATE TABLE table_1341897_42 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(candidates) FROM table_1341897_42 WHERE incumbent = \"William Jennings Bryan Dorn\""
} |
What is the earliest year that a candidate was first elected? | CREATE TABLE table_1341897_42 (first_elected INTEGER) | {
"SQL_Query": "SELECT MIN(first_elected) FROM table_1341897_42"
} |
What was the result of the election in which Lindley Beckworth was the incumbent? | CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1341897_45 WHERE incumbent = \"Lindley Beckworth\""
} |
Which incumbent was first elected in 1936? | CREATE TABLE table_1341897_45 (incumbent VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1341897_45 WHERE first_elected = 1936"
} |
What was the result of the election in which Walter E. Rogers was the incumbent? | CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1341897_45 WHERE incumbent = \"Walter E. Rogers\""
} |
When was Paul Rogers first elected? | CREATE TABLE table_1341930_10 (first_elected VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT first_elected FROM table_1341930_10 WHERE incumbent = \"Paul Rogers\""
} |
Which district is James A. Haley from? | CREATE TABLE table_1341930_10 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1341930_10 WHERE incumbent = \"James A. Haley\""
} |
What year were the latest elections? | CREATE TABLE table_1341930_10 (first_elected INTEGER) | {
"SQL_Query": "SELECT MAX(first_elected) FROM table_1341930_10"
} |
In what district is the incumbent John Bell Williams? | CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1341930_24 WHERE incumbent = \"John Bell Williams\""
} |
In what year was John Bell Williams first elected? | CREATE TABLE table_1341930_24 (first_elected VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT first_elected FROM table_1341930_24 WHERE incumbent = \"John Bell Williams\""
} |
How many districts have W. Arthur Winstead as elected official? | CREATE TABLE table_1341930_24 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(district) FROM table_1341930_24 WHERE incumbent = \"W. Arthur Winstead\""
} |
What is the district for carl vinson? | CREATE TABLE table_1341930_11 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1341930_11 WHERE incumbent = \"Carl Vinson\""
} |
What is the most first elected for james c. davis? | CREATE TABLE table_1341930_11 (first_elected INTEGER, incumbent VARCHAR) | {
"SQL_Query": "SELECT MAX(first_elected) FROM table_1341930_11 WHERE incumbent = \"James C. Davis\""
} |
What is the first elected for georgia 4? | CREATE TABLE table_1341930_11 (first_elected VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT first_elected FROM table_1341930_11 WHERE district = \"Georgia 4\""
} |
which affiliation does edwin e. willis affiliate with | CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1341930_18 WHERE incumbent = \"Edwin E. Willis\""
} |
which affiliation is james h. morrison part of | CREATE TABLE table_1341930_18 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1341930_18 WHERE incumbent = \"James H. Morrison\""
} |
Who is the candidate that was first elected in 1914? | CREATE TABLE table_1341973_11 (candidates VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1341973_11 WHERE first_elected = 1914"
} |
In which district is the incumbent Carl Vinson? | CREATE TABLE table_1341973_11 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1341973_11 WHERE incumbent = \"Carl Vinson\""
} |
Name the candidates for l. mendel rivers | CREATE TABLE table_1341930_40 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(candidates) FROM table_1341930_40 WHERE incumbent = \"L. Mendel Rivers\""
} |
Name the result for south carolina 4 | CREATE TABLE table_1341930_40 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1341930_40 WHERE district = \"South Carolina 4\""
} |
Name the candidates for south carolina 3 | CREATE TABLE table_1341930_40 (candidates VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1341930_40 WHERE district = \"South Carolina 3\""
} |
Name the incumbent for first elected 1956 | CREATE TABLE table_1341930_40 (incumbent VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1341930_40 WHERE first_elected = 1956"
} |
Name the number of party with the incubent james william trimble | CREATE TABLE table_1341930_5 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(party) FROM table_1341930_5 WHERE incumbent = \"James William Trimble\""
} |
What is the result for first elected in 1944 | CREATE TABLE table_1341930_5 (result VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1341930_5 WHERE first_elected = 1944"
} |
What is the number of party in the arkansas 1 district | CREATE TABLE table_1341930_5 (party VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT COUNT(party) FROM table_1341930_5 WHERE district = \"Arkansas 1\""
} |
Who is the incumbent in the Alabama 6 voting district? | CREATE TABLE table_1341973_3 (incumbent VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1341973_3 WHERE district = \"Alabama 6\""
} |
Which candidates were in the election where Frank W. Boykin was an incumbent? | CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1341973_3 WHERE incumbent = \"Frank W. Boykin\""
} |
Who were the candidates in the election where the incumbent is George M. Grant? | CREATE TABLE table_1341973_3 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1341973_3 WHERE incumbent = \"George M. Grant\""
} |
Which candidates ran in the Alabama 6 district? | CREATE TABLE table_1341973_3 (candidates VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1341973_3 WHERE district = \"Alabama 6\""
} |
What is the latest year listed with the Alabama 4 voting district? | CREATE TABLE table_1341973_3 (first_elected INTEGER, district VARCHAR) | {
"SQL_Query": "SELECT MAX(first_elected) FROM table_1341973_3 WHERE district = \"Alabama 4\""
} |
What was the result when incumbent Fred E. Busbey was elected? | CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_12 WHERE incumbent = \"Fred E. Busbey\""
} |
How many results are listed for the election where Noah M. Mason was elected? | CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(result) FROM table_1342013_12 WHERE incumbent = \"Noah M. Mason\""
} |
What was the result when Leo E. Allen was elected? | CREATE TABLE table_1342013_12 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_12 WHERE incumbent = \"Leo E. Allen\""
} |
Which party had a person who has been in the seat since 1914? | CREATE TABLE table_1342013_10 (party VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342013_10 WHERE first_elected = 1914"
} |
Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr. | CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1342013_10 WHERE incumbent = \"Prince Hulon Preston, Jr.\""
} |
How many candidates ran in the race where the incumbent is J. L. Pilcher? | CREATE TABLE table_1342013_10 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(candidates) FROM table_1342013_10 WHERE incumbent = \"J. L. Pilcher\""
} |
John W. Heselton was first elected in what year? | CREATE TABLE table_1342013_20 (first_elected INTEGER, incumbent VARCHAR) | {
"SQL_Query": "SELECT MAX(first_elected) FROM table_1342013_20 WHERE incumbent = \"John W. Heselton\""
} |
Thomas J. Lane is the incumbent of how many parties? | CREATE TABLE table_1342013_20 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(party) FROM table_1342013_20 WHERE incumbent = \"Thomas J. Lane\""
} |
Who is the incumbent first elected in 1944? | CREATE TABLE table_1342013_20 (incumbent VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342013_20 WHERE first_elected = 1944"
} |
What was the result for the politician first elected in 1942? | CREATE TABLE table_1342013_20 (result VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_20 WHERE first_elected = 1942"
} |
what's the result for district ohio 2 | CREATE TABLE table_1342013_34 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_34 WHERE district = \"Ohio 2\""
} |
who is the the incumbent with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% | CREATE TABLE table_1342013_34 (incumbent VARCHAR, candidates VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342013_34 WHERE candidates = \"John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%\""
} |
who is the the incumbent with district being ohio 2 | CREATE TABLE table_1342013_34 (incumbent VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342013_34 WHERE district = \"Ohio 2\""
} |
what's the result with incumbent being william h. ayres | CREATE TABLE table_1342013_34 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_34 WHERE incumbent = \"William H. Ayres\""
} |
how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5% | CREATE TABLE table_1342013_34 (party VARCHAR, candidates VARCHAR) | {
"SQL_Query": "SELECT COUNT(party) FROM table_1342013_34 WHERE candidates = \"John M. Vorys (R) 61.5% Jacob F. Myers (D) 38.5%\""
} |
what district is Brooks Hays in | CREATE TABLE table_1342013_4 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1342013_4 WHERE incumbent = \"Brooks Hays\""
} |
Omar Burleson was the incumbent in what district? | CREATE TABLE table_1342013_42 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1342013_42 WHERE incumbent = \"Omar Burleson\""
} |
In what district was incumbent first elected in 1938? | CREATE TABLE table_1342013_42 (district VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1342013_42 WHERE first_elected = 1938"
} |
Name the party for the pennsylvania 25 | CREATE TABLE table_1342013_37 (party VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342013_37 WHERE district = \"Pennsylvania 25\""
} |
Name the minumim first elected for alvin bush | CREATE TABLE table_1342013_37 (first_elected INTEGER, incumbent VARCHAR) | {
"SQL_Query": "SELECT MIN(first_elected) FROM table_1342013_37 WHERE incumbent = \"Alvin Bush\""
} |
What is the incumbent for pennsylvania 15 | CREATE TABLE table_1342013_37 (incumbent VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342013_37 WHERE district = \"Pennsylvania 15\""
} |
What are the candidates for noah m. mason? | CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(candidates) FROM table_1342149_13 WHERE incumbent = \"Noah M. Mason\""
} |
What is the candidates for fred e. busbey? | CREATE TABLE table_1342149_13 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1342149_13 WHERE incumbent = \"Fred E. Busbey\""
} |
What is the incumbent for 1932? | CREATE TABLE table_1342149_13 (incumbent VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932"
} |
how many first elected with incumbent being charles edward bennett | CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = \"Charles Edward Bennett\""
} |
who is the the incumbent with dbeingtrict being florida 2 | CREATE TABLE table_1342013_9 (incumbent VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342013_9 WHERE district = \"Florida 2\""
} |
what's the result with candidates being charles edward bennett (d) unopposed | CREATE TABLE table_1342013_9 (result VARCHAR, candidates VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_9 WHERE candidates = \"Charles Edward Bennett (D) Unopposed\""
} |
what's the result with dbeingtrict being florida 4 | CREATE TABLE table_1342013_9 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_9 WHERE district = \"Florida 4\""
} |
how many party with candidates being charles edward bennett (d) unopposed | CREATE TABLE table_1342013_9 (party VARCHAR, candidates VARCHAR) | {
"SQL_Query": "SELECT COUNT(party) FROM table_1342013_9 WHERE candidates = \"Charles Edward Bennett (D) Unopposed\""
} |
how many first elected with incumbent being william c. lantaff | CREATE TABLE table_1342013_9 (first_elected VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = \"William C. Lantaff\""
} |
What was the result of the election when Tic Forrester ran as an incumbent? | CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_11 WHERE incumbent = \"Tic Forrester\""
} |
What was the final result for Craig Hosmer? | CREATE TABLE table_1342013_5 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342013_5 WHERE incumbent = \"Craig Hosmer\""
} |
What district does Harlan Hagen represent? | CREATE TABLE table_1342013_5 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1342013_5 WHERE incumbent = \"Harlan Hagen\""
} |
Who was the candidate in the election in the Louisiana 2 district? | CREATE TABLE table_1342149_18 (candidates VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1342149_18 WHERE district = \"Louisiana 2\""
} |
What candidate was re-elected in the Louisiana 5 district? | CREATE TABLE table_1342149_18 (candidates VARCHAR, result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1342149_18 WHERE result = \"Re-elected\" AND district = \"Louisiana 5\""
} |
What party's candidate was re-elected in the Louisiana 6 district? | CREATE TABLE table_1342149_18 (party VARCHAR, result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342149_18 WHERE result = \"Re-elected\" AND district = \"Louisiana 6\""
} |
What was the result in the election where Hale Boggs was the incumbent? | CREATE TABLE table_1342149_18 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_18 WHERE incumbent = \"Hale Boggs\""
} |
Name the result for mississippi 2 | CREATE TABLE table_1342149_24 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_24 WHERE district = \"Mississippi 2\""
} |
Name the number of candidates for 1941 | CREATE TABLE table_1342149_24 (candidates VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT COUNT(candidates) FROM table_1342149_24 WHERE first_elected = 1941"
} |
Name the candidates for result of lost renomination democratic loss | CREATE TABLE table_1342149_24 (candidates VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1342149_24 WHERE result = \"Lost renomination Democratic loss\""
} |
Name the result for first elected of 1920 | CREATE TABLE table_1342149_24 (result VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_24 WHERE first_elected = 1920"
} |
In the District Tennessee 7 what is the number of first elected? | CREATE TABLE table_1342149_42 (first_elected INTEGER, district VARCHAR) | {
"SQL_Query": "SELECT MAX(first_elected) FROM table_1342149_42 WHERE district = \"Tennessee 7\""
} |
What is the candidates result that is tom j. murray (d) unopposed? | CREATE TABLE table_1342149_42 (result VARCHAR, candidates VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_42 WHERE candidates = \"Tom J. Murray (D) Unopposed\""
} |
For the Republican party what are the names of the incumbents? | CREATE TABLE table_1342149_42 (incumbent VARCHAR, party VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342149_42 WHERE party = \"Republican\""
} |
How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.1%? | CREATE TABLE table_1342149_42 (party VARCHAR, candidates VARCHAR) | {
"SQL_Query": "SELECT COUNT(party) FROM table_1342149_42 WHERE candidates = \"Howard Baker, Sr. (R) 68.9% Boyd W. Cox (D) 31.1%\""
} |
Which district had Paul B. Dague as the incumbent? | CREATE TABLE table_1342149_38 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT district FROM table_1342149_38 WHERE incumbent = \"Paul B. Dague\""
} |
What was the result in the election where the incumbent was first elected in 1942? | CREATE TABLE table_1342149_43 (result VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_43 WHERE first_elected = \"1942\""
} |
What was the result of the election in the Texas 3 district? | CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_43 WHERE district = \"Texas 3\""
} |
What party did incumbent Wright Patman belong to? | CREATE TABLE table_1342149_43 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342149_43 WHERE incumbent = \"Wright Patman\""
} |
What was the result of the election in the Texas 4 district? | CREATE TABLE table_1342149_43 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342149_43 WHERE district = \"Texas 4\""
} |
What party did the re-elected incumbent of the Texas 11 district belong to? | CREATE TABLE table_1342149_43 (party VARCHAR, result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342149_43 WHERE result = \"Re-elected\" AND district = \"Texas 11\""
} |
List all those first elected in the California 22 voting district. | CREATE TABLE table_1342149_6 (first_elected VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT first_elected FROM table_1342149_6 WHERE district = \"California 22\""
} |
Who was the first elected incumbent in the 1946 election? | CREATE TABLE table_1342149_6 (incumbent VARCHAR, first_elected VARCHAR) | {
"SQL_Query": "SELECT incumbent FROM table_1342149_6 WHERE first_elected = \"1946\""
} |
How many results does the California 29 voting district have? | CREATE TABLE table_1342149_6 (result VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT COUNT(result) FROM table_1342149_6 WHERE district = \"California 29\""
} |
Which party had Clair Engle as an incumbent? | CREATE TABLE table_1342149_6 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342149_6 WHERE incumbent = \"Clair Engle\""
} |
What party does sid simpson represent? | CREATE TABLE table_1342198_13 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342198_13 WHERE incumbent = \"Sid Simpson\""
} |
How many candidates ran against barratt o'hara? | CREATE TABLE table_1342198_13 (candidates VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(candidates) FROM table_1342198_13 WHERE incumbent = \"Barratt O'Hara\""
} |
What year was incumbent barratt o'hara first elected? | CREATE TABLE table_1342198_13 (first_elected VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT first_elected FROM table_1342198_13 WHERE incumbent = \"Barratt O'Hara\""
} |
How many results for minimum first elected incumbent Noble Jones Gregory? | CREATE TABLE table_1342198_17 (first_elected INTEGER, incumbent VARCHAR) | {
"SQL_Query": "SELECT MIN(first_elected) FROM table_1342198_17 WHERE incumbent = \"Noble Jones Gregory\""
} |
How many results for incumbent Noble Jones Gregory? | CREATE TABLE table_1342198_17 (district VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT COUNT(district) FROM table_1342198_17 WHERE incumbent = \"Noble Jones Gregory\""
} |
Who is the candidate wehre district is louisiana 1? | CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1342198_18 WHERE district = \"Louisiana 1\""
} |
What is the party where the incumbent is overton brooks? | CREATE TABLE table_1342198_18 (party VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342198_18 WHERE incumbent = \"Overton Brooks\""
} |
who athe party where district is louisiana 2? | CREATE TABLE table_1342198_18 (party VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT party FROM table_1342198_18 WHERE district = \"Louisiana 2\""
} |
who is the candidate where district is louisiana 3? | CREATE TABLE table_1342198_18 (candidates VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT candidates FROM table_1342198_18 WHERE district = \"Louisiana 3\""
} |
what is the minimum number first elected to district louisiana 5? | CREATE TABLE table_1342198_18 (first_elected INTEGER, district VARCHAR) | {
"SQL_Query": "SELECT MIN(first_elected) FROM table_1342198_18 WHERE district = \"Louisiana 5\""
} |
What was the result when incumbent Tom Steed was elected? | CREATE TABLE table_1342198_36 (result VARCHAR, incumbent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_1342198_36 WHERE incumbent = \"Tom Steed\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.