Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
19,300
<question>: What is the english spelling of the word that has the strongs trasliteration of y e howram? <context>: CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR)
SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = "Y e howram"
19,301
<question>: What is the strongs # of the english spelling word jehojakin? <context>: CREATE TABLE table_1242447_1 (strongs__number VARCHAR, english_spelling VARCHAR)
SELECT strongs__number FROM table_1242447_1 WHERE english_spelling = "Jehojakin"
19,302
<question>: What is the strongs transliteration of the hebrew word יוֹחָנָן? <context>: CREATE TABLE table_1242447_1 (strongs_transliteration VARCHAR, hebrew_word VARCHAR)
SELECT strongs_transliteration FROM table_1242447_1 WHERE hebrew_word = "יוֹחָנָן"
19,303
<question>: How many strongs transliteration of the english spelling of the work jehojakin? <context>: CREATE TABLE table_1242447_1 (strongs_transliteration VARCHAR, english_spelling VARCHAR)
SELECT COUNT(strongs_transliteration) FROM table_1242447_1 WHERE english_spelling = "Jehojakin"
19,304
<question>: Kaluvanchikudy is the main town in what DS division? <context>: CREATE TABLE table_12485020_1 (ds_division VARCHAR, main_town VARCHAR)
SELECT ds_division FROM table_12485020_1 WHERE main_town = "Kaluvanchikudy"
19,305
<question>: What DS division has S. L. M. Haneefa as the divisional secretary? <context>: CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR)
SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = "S. L. M. Haneefa"
19,306
<question>: What is the name of the DS division where the divisional secretary is S. H. Muzammil? <context>: CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR)
SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = "S. H. Muzammil"
19,307
<question>: How many figures are given for the region's total in 1947? <context>: CREATE TABLE table_12555835_1 (population__region_total_ VARCHAR, year VARCHAR)
SELECT COUNT(population__region_total_) FROM table_12555835_1 WHERE year = 1947
19,308
<question>: What was the smallest population figure for Mareeba? <context>: CREATE TABLE table_12555835_1 (population__mareeba_ INTEGER)
SELECT MIN(population__mareeba_) FROM table_12555835_1
19,309
<question>: How many episodes were watched by 12.72 million U.S. viewers? <context>: CREATE TABLE table_12570759_2 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(written_by) FROM table_12570759_2 WHERE us_viewers__millions_ = "12.72"
19,310
<question>: How many millions of U.S. viewers watched the episode directed by Rob Bailey and written by Pam Veasey? <context>: CREATE TABLE table_12570759_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT us_viewers__millions_ FROM table_12570759_2 WHERE directed_by = "Rob Bailey" AND written_by = "Pam Veasey"
19,311
<question>: How many persons had immunity in the episode when Wanda was eliminated? <context>: CREATE TABLE table_1272844_2 (immunity VARCHAR, eliminated VARCHAR)
SELECT COUNT(immunity) FROM table_1272844_2 WHERE eliminated = "Wanda"
19,312
<question>: What is the name of the episode in which Jenn is eliminated? <context>: CREATE TABLE table_1272844_2 (episode_title VARCHAR, eliminated VARCHAR)
SELECT episode_title FROM table_1272844_2 WHERE eliminated = "Jenn"
19,313
<question>: What was the vote tally on the episode aired May 5, 2005? <context>: CREATE TABLE table_1272844_2 (vote VARCHAR, air_date VARCHAR)
SELECT vote FROM table_1272844_2 WHERE air_date = "May 5, 2005"
19,314
<question>: Who received the reward on the episode where the finish was "3rd voted out day 8"? <context>: CREATE TABLE table_1272844_2 (reward VARCHAR, finish VARCHAR)
SELECT reward FROM table_1272844_2 WHERE finish = "3rd voted Out Day 8"
19,315
<question>: What was the vote on the episode where the finish was "10th voted out 3rd jury member day 30"? <context>: CREATE TABLE table_1272844_2 (vote VARCHAR, finish VARCHAR)
SELECT vote FROM table_1272844_2 WHERE finish = "10th voted Out 3rd Jury Member Day 30"
19,316
<question>: How many votes were taken when the outcome was "6th voted out day 12"? <context>: CREATE TABLE table_1272844_2 (vote VARCHAR, finish VARCHAR)
SELECT COUNT(vote) FROM table_1272844_2 WHERE finish = "6th voted Out Day 12"
19,317
<question>: What is the short stem for garbitzen? <context>: CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR)
SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = "garbitzen"
19,318
<question>: What is the perfect stem for pozten? <context>: CREATE TABLE table_12784134_24 (perfect_stem VARCHAR, imperfect_stem VARCHAR)
SELECT perfect_stem FROM table_12784134_24 WHERE imperfect_stem = "pozten"
19,319
<question>: Name the perfect stem for jo <context>: CREATE TABLE table_12784134_24 (perfect_stem VARCHAR, short_stem VARCHAR)
SELECT COUNT(perfect_stem) FROM table_12784134_24 WHERE short_stem = "jo"
19,320
<question>: What is the number for future stem for poztu? <context>: CREATE TABLE table_12784134_24 (future_stem VARCHAR, perfect_stem VARCHAR)
SELECT COUNT(future_stem) FROM table_12784134_24 WHERE perfect_stem = "poztu"
19,321
<question>: Name the try bonus of points against at 430 <context>: CREATE TABLE table_12792876_4 (try_bonus VARCHAR, points_against VARCHAR)
SELECT try_bonus FROM table_12792876_4 WHERE points_against = "430"
19,322
<question>: Name the losing bonus of 96 points <context>: CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR)
SELECT losing_bonus FROM table_12792876_4 WHERE points = "96"
19,323
<question>: Name the points against for 51 points <context>: CREATE TABLE table_12792876_4 (points_against VARCHAR, points VARCHAR)
SELECT points_against FROM table_12792876_4 WHERE points = "51"
19,324
<question>: Name the tries against for 87 points <context>: CREATE TABLE table_12792876_4 (tries_against VARCHAR, points VARCHAR)
SELECT tries_against FROM table_12792876_4 WHERE points = "87"
19,325
<question>: Name the tries against for drawn <context>: CREATE TABLE table_12792876_4 (tries_against VARCHAR)
SELECT COUNT(tries_against) FROM table_12792876_4 WHERE "drawn" = "drawn"
19,326
<question>: Name the losing bonus for 27 <context>: CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, tries_for VARCHAR)
SELECT losing_bonus FROM table_12792876_4 WHERE tries_for = "27"
19,327
<question>: What is the rear sight in the Cole model no. 735? <context>: CREATE TABLE table_12834315_1 (rear_sight VARCHAR, colt_model_no VARCHAR)
SELECT rear_sight FROM table_12834315_1 WHERE colt_model_no = "735"
19,328
<question>: What are the Colt model numbers of the models named GAU-5A/A, with no bayonet lug, no case deflector and stock of 2nd generation? <context>: CREATE TABLE table_12834315_1 (colt_model_no VARCHAR, name VARCHAR, case_deflector VARCHAR, bayonet_lug VARCHAR, stock VARCHAR)
SELECT colt_model_no FROM table_12834315_1 WHERE bayonet_lug = "No" AND stock = "2nd Generation" AND case_deflector = "No" AND name = "GAU-5A/A"
19,329
<question>: What's the type of muzzle devices on the models with round hand guards? <context>: CREATE TABLE table_12834315_1 (muzzle_device VARCHAR, hand_guards VARCHAR)
SELECT muzzle_device FROM table_12834315_1 WHERE hand_guards = "Round"
19,330
<question>: Clubs involved is 8, what number would you find from winners from previous round? <context>: CREATE TABLE table_1281200_1 (winners_from_previous_round VARCHAR, clubs_involved VARCHAR)
SELECT winners_from_previous_round FROM table_1281200_1 WHERE clubs_involved = 8
19,331
<question>: From the round name of third round; what would the new entries this round that would be found? <context>: CREATE TABLE table_1281200_1 (new_entries_this_round VARCHAR, round VARCHAR)
SELECT new_entries_this_round FROM table_1281200_1 WHERE round = "Third round"
19,332
<question>: When looking at new entries this round and seeing 8; what number in total is there for clubs remaining? <context>: CREATE TABLE table_1281200_1 (clubs_remaining VARCHAR, new_entries_this_round VARCHAR)
SELECT COUNT(clubs_remaining) FROM table_1281200_1 WHERE new_entries_this_round = "8"
19,333
<question>: During the first phase portion of phase and having 16 clubs involved; what would you find for the winners from previous round? <context>: CREATE TABLE table_1281200_1 (winners_from_previous_round VARCHAR, phase VARCHAR, clubs_involved VARCHAR)
SELECT winners_from_previous_round FROM table_1281200_1 WHERE phase = "First phase" AND clubs_involved = 16
19,334
<question>: The new entries this round was shown to be 12, in which phase would you find this? <context>: CREATE TABLE table_1281200_1 (phase VARCHAR, new_entries_this_round VARCHAR)
SELECT phase FROM table_1281200_1 WHERE new_entries_this_round = "12"
19,335
<question>: What country submitted miehen työ? <context>: CREATE TABLE table_12842068_1 (submitting_country VARCHAR, original_title VARCHAR)
SELECT submitting_country FROM table_12842068_1 WHERE original_title = "Miehen työ"
19,336
<question>: What was the title of the movie from lebanon? <context>: CREATE TABLE table_12842068_1 (film_title_used_in_nomination VARCHAR, submitting_country VARCHAR)
SELECT film_title_used_in_nomination FROM table_12842068_1 WHERE submitting_country = "Lebanon"
19,337
<question>: What country submitted the movie the orphanage? <context>: CREATE TABLE table_12842068_1 (submitting_country VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = "The Orphanage"
19,338
<question>: What year did University of Saskatchewan have their first season? <context>: CREATE TABLE table_12896884_1 (first_season INTEGER, institution VARCHAR)
SELECT MAX(first_season) FROM table_12896884_1 WHERE institution = "University of Saskatchewan"
19,339
<question>: What football stadium has a school enrollment of 43579? <context>: CREATE TABLE table_12896884_1 (football_stadium VARCHAR, enrollment VARCHAR)
SELECT football_stadium FROM table_12896884_1 WHERE enrollment = 43579
19,340
<question>: How many endowments does Mosaic Stadium have? <context>: CREATE TABLE table_12896884_1 (endowment VARCHAR, football_stadium VARCHAR)
SELECT COUNT(endowment) FROM table_12896884_1 WHERE football_stadium = "Mosaic Stadium"
19,341
<question>: What is the enrollment for Foote Field? <context>: CREATE TABLE table_12896884_1 (enrollment INTEGER, football_stadium VARCHAR)
SELECT MAX(enrollment) FROM table_12896884_1 WHERE football_stadium = "Foote Field"
19,342
<question>: How many cities have an enrollment of 19082? <context>: CREATE TABLE table_12896884_1 (city VARCHAR, enrollment VARCHAR)
SELECT COUNT(city) FROM table_12896884_1 WHERE enrollment = 19082
19,343
<question>: Name the number of points for south korea <context>: CREATE TABLE table_13282157_3 (points VARCHAR, country VARCHAR)
SELECT COUNT(points) FROM table_13282157_3 WHERE country = "South Korea"
19,344
<question>: How many dismissals did the player Peter McGlashan have? <context>: CREATE TABLE table_13337302_16 (dismissals VARCHAR, player VARCHAR)
SELECT dismissals FROM table_13337302_16 WHERE player = "Peter McGlashan"
19,345
<question>: How many stumpings did the player Tim Latham have? <context>: CREATE TABLE table_13337302_16 (stumpings INTEGER, player VARCHAR)
SELECT MAX(stumpings) FROM table_13337302_16 WHERE player = "Tim Latham"
19,346
<question>: List the ranks of all dismissals with a value of 4 <context>: CREATE TABLE table_13337302_16 (rank VARCHAR, dismissals VARCHAR)
SELECT rank FROM table_13337302_16 WHERE dismissals = 4
19,347
<question>: How many innings had a total of 2 catches and 0 stumpings? <context>: CREATE TABLE table_13337302_16 (innings VARCHAR, catches VARCHAR, stumpings VARCHAR)
SELECT COUNT(innings) FROM table_13337302_16 WHERE catches = 2 AND stumpings = 0
19,348
<question>: In what district was the incumbent Steve Chabot? <context>: CREATE TABLE table_1341395_36 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341395_36 WHERE incumbent = "Steve Chabot"
19,349
<question>: Incumbent Deborah Pryce was a member of what party? <context>: CREATE TABLE table_1341395_36 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341395_36 WHERE incumbent = "Deborah Pryce"
19,350
<question>: Who were the candidates in the election where Saxby Chambliss was the incumbent? <context>: CREATE TABLE table_1341453_12 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341453_12 WHERE incumbent = "Saxby Chambliss"
19,351
<question>: What party does William J. Jefferson? <context>: CREATE TABLE table_1341453_20 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_20 WHERE incumbent = "William J. Jefferson"
19,352
<question>: What were the results for incumbent Jim McCrery? <context>: CREATE TABLE table_1341453_20 (results VARCHAR, incumbent VARCHAR)
SELECT results FROM table_1341453_20 WHERE incumbent = "Jim McCrery"
19,353
<question>: How many candidates were elected first in 1980? <context>: CREATE TABLE table_1341453_20 (candidates VARCHAR, first_elected VARCHAR)
SELECT COUNT(candidates) FROM table_1341453_20 WHERE first_elected = 1980
19,354
<question>: What district does John Cooksey represent? <context>: CREATE TABLE table_1341453_20 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341453_20 WHERE incumbent = "John Cooksey"
19,355
<question>: What district was John Porter elected in? <context>: CREATE TABLE table_1341453_15 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341453_15 WHERE incumbent = "John Porter"
19,356
<question>: What was the result in Illinois 7? <context>: CREATE TABLE table_1341453_15 (results VARCHAR, district VARCHAR)
SELECT results FROM table_1341453_15 WHERE district = "Illinois 7"
19,357
<question>: Who were the candidates in the district where Jerry Costello won? <context>: CREATE TABLE table_1341453_15 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341453_15 WHERE incumbent = "Jerry Costello"
19,358
<question>: How many times did incumbent ruben hinojosa get elected? <context>: CREATE TABLE table_1341453_45 (results VARCHAR, incumbent VARCHAR)
SELECT COUNT(results) FROM table_1341453_45 WHERE incumbent = "Ruben Hinojosa"
19,359
<question>: What district is ruben hinojosa from? <context>: CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341453_45 WHERE incumbent = "Ruben Hinojosa"
19,360
<question>: What district is nick lampson from? <context>: CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341453_45 WHERE incumbent = "Nick Lampson"
19,361
<question>: What year was incumbent jim mcdermott first elected? <context>: CREATE TABLE table_1341522_50 (first_elected INTEGER, incumbent VARCHAR)
SELECT MIN(first_elected) FROM table_1341522_50 WHERE incumbent = "Jim McDermott"
19,362
<question>: What was the result of the election of doc hastings (r) 53.3% jay inslee (d) 46.7% <context>: CREATE TABLE table_1341522_50 (status VARCHAR, opponent VARCHAR)
SELECT status FROM table_1341522_50 WHERE opponent = "Doc Hastings (R) 53.3% Jay Inslee (D) 46.7%"
19,363
<question>: What districts does incumbent Curt Weldon hold? <context>: CREATE TABLE table_1341568_39 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341568_39 WHERE incumbent = "Curt Weldon"
19,364
<question>: How many champions were there when the first driver was hiroki yoshimoto ( 2005 )? <context>: CREATE TABLE table_13416000_3 (champions VARCHAR, first_driver_s_ VARCHAR)
SELECT champions FROM table_13416000_3 WHERE first_driver_s_ = "Hiroki Yoshimoto ( 2005 )"
19,365
<question>: How many entries are there for first driver for Canada? <context>: CREATE TABLE table_13416000_3 (first_driver_s_ VARCHAR, country VARCHAR)
SELECT COUNT(first_driver_s_) FROM table_13416000_3 WHERE country = "Canada"
19,366
<question>: Name the candidates for georgia 8 <context>: CREATE TABLE table_1341604_11 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341604_11 WHERE district = "Georgia 8"
19,367
<question>: Name the party of georgia 4 <context>: CREATE TABLE table_1341604_11 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1341604_11 WHERE district = "Georgia 4"
19,368
<question>: Name the party for jack thomas brinkley <context>: CREATE TABLE table_1341604_11 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341604_11 WHERE incumbent = "Jack Thomas Brinkley"
19,369
<question>: Name the districk for larry mcdonald <context>: CREATE TABLE table_1341604_11 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341604_11 WHERE incumbent = "Larry McDonald"
19,370
<question>: what's the result with district being florida 7 <context>: CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1341604_10 WHERE district = "Florida 7"
19,371
<question>: what's the district with result being new seat democratic gain <context>: CREATE TABLE table_1341604_10 (district VARCHAR, result VARCHAR)
SELECT district FROM table_1341604_10 WHERE result = "New seat Democratic gain"
19,372
<question>: how many candidates with result being new seat democratic gain <context>: CREATE TABLE table_1341604_10 (candidates VARCHAR, result VARCHAR)
SELECT COUNT(candidates) FROM table_1341604_10 WHERE result = "New seat Democratic gain"
19,373
<question>: how many result with district being florida 14 <context>: CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR)
SELECT COUNT(result) FROM table_1341604_10 WHERE district = "Florida 14"
19,374
<question>: what's the first elected with district being florida 7 <context>: CREATE TABLE table_1341604_10 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_1341604_10 WHERE district = "Florida 7"
19,375
<question>: who is the the candidates with incumbent being don fuqua <context>: CREATE TABLE table_1341604_10 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341604_10 WHERE incumbent = "Don Fuqua"
19,376
<question>: How many candidates were first elected in 1972? <context>: CREATE TABLE table_1341640_11 (candidates VARCHAR, first_elected VARCHAR)
SELECT COUNT(candidates) FROM table_1341640_11 WHERE first_elected = 1972
19,377
<question>: What is the party with the candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%? <context>: CREATE TABLE table_1341640_11 (party VARCHAR, candidates VARCHAR)
SELECT party FROM table_1341640_11 WHERE candidates = "Newt Gingrich (R) 59.1% Dock H. Davis (D) 40.9%"
19,378
<question>: What is the earliest first elected for district georgia 1? <context>: CREATE TABLE table_1341640_11 (first_elected INTEGER, district VARCHAR)
SELECT MIN(first_elected) FROM table_1341640_11 WHERE district = "Georgia 1"
19,379
<question>: How many parties were for candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%? <context>: CREATE TABLE table_1341640_11 (party VARCHAR, candidates VARCHAR)
SELECT COUNT(party) FROM table_1341640_11 WHERE candidates = "Newt Gingrich (R) 59.1% Dock H. Davis (D) 40.9%"
19,380
<question>: How many incumbents were for district georgia 6? <context>: CREATE TABLE table_1341640_11 (incumbent VARCHAR, district VARCHAR)
SELECT COUNT(incumbent) FROM table_1341640_11 WHERE district = "Georgia 6"
19,381
<question>: Name the district for tim lee hall <context>: CREATE TABLE table_1341672_14 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1341672_14 WHERE incumbent = "Tim Lee Hall"
19,382
<question>: Name the number of first elected for phil crane <context>: CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1341672_14 WHERE incumbent = "Phil Crane"
19,383
<question>: Name the party for tim lee hall <context>: CREATE TABLE table_1341672_14 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341672_14 WHERE incumbent = "Tim Lee Hall"
19,384
<question>: Name the candidates for illinois 15 <context>: CREATE TABLE table_1341672_14 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341672_14 WHERE district = "Illinois 15"
19,385
<question>: Name the first elected for abner j. mikva <context>: CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341672_14 WHERE incumbent = "Abner J. Mikva"
19,386
<question>: Name the total number of incumbent for first elected of 1944 <context>: CREATE TABLE table_1341672_14 (incumbent VARCHAR, first_elected VARCHAR)
SELECT COUNT(incumbent) FROM table_1341672_14 WHERE first_elected = 1944
19,387
<question>: How many incumbents come from alvin bush's district? <context>: CREATE TABLE table_1341930_38 (candidates VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1341930_38 WHERE incumbent = "Alvin Bush"
19,388
<question>: Who were the candidates in the Kentucky 4 voting district? <context>: CREATE TABLE table_1342218_17 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1342218_17 WHERE district = "Kentucky 4"
19,389
<question>: How many times was incumbent Noble Jones Gregory first elected? <context>: CREATE TABLE table_1342218_17 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1342218_17 WHERE incumbent = "Noble Jones Gregory"
19,390
<question>: What was the result in the voting district Kentucky 2? <context>: CREATE TABLE table_1342218_17 (result VARCHAR, district VARCHAR)
SELECT result FROM table_1342218_17 WHERE district = "Kentucky 2"
19,391
<question>: What was the result of the election incumbent Brent Spence took place in? <context>: CREATE TABLE table_1342218_17 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342218_17 WHERE incumbent = "Brent Spence"
19,392
<question>: Which party won in the election in voting district Kentucky 5? <context>: CREATE TABLE table_1342218_17 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1342218_17 WHERE district = "Kentucky 5"
19,393
<question>: List all candidates in the democratic party where the election had the incumbent Frank Chelf running. <context>: CREATE TABLE table_1342218_17 (candidates VARCHAR, party VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1342218_17 WHERE party = "Democratic" AND incumbent = "Frank Chelf"
19,394
<question>: Which district is jamie l. whitten from? <context>: CREATE TABLE table_1342233_24 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_1342233_24 WHERE incumbent = "Jamie L. Whitten"
19,395
<question>: What candidates are from mississippi 6? <context>: CREATE TABLE table_1342233_24 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1342233_24 WHERE district = "Mississippi 6"
19,396
<question>: What is the incumbent from 1941? <context>: CREATE TABLE table_1342233_24 (incumbent VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_1342233_24 WHERE first_elected = 1941
19,397
<question>: What is the result for w. arthur winstead? <context>: CREATE TABLE table_1342233_24 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342233_24 WHERE incumbent = "W. Arthur Winstead"
19,398
<question>: How many were first elected in the Arkansas 4 district? <context>: CREATE TABLE table_1342233_5 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_1342233_5 WHERE district = "Arkansas 4"
19,399
<question>: How many districts had William F. Norrell as the incumbent? <context>: CREATE TABLE table_1342233_5 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1342233_5 WHERE incumbent = "William F. Norrell"