question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the english spelling of the word that has the strongs trasliteration of y e howram? | CREATE TABLE table_1242447_1 (english_spelling VARCHAR, strongs_transliteration VARCHAR) | SELECT english_spelling FROM table_1242447_1 WHERE strongs_transliteration = "Y e howram" |
What is the strongs # of the english spelling word jehojakin? | CREATE TABLE table_1242447_1 (strongs__number VARCHAR, english_spelling VARCHAR) | SELECT strongs__number FROM table_1242447_1 WHERE english_spelling = "Jehojakin" |
What is the strongs transliteration of the hebrew word יוֹחָנָן? | CREATE TABLE table_1242447_1 (strongs_transliteration VARCHAR, hebrew_word VARCHAR) | SELECT strongs_transliteration FROM table_1242447_1 WHERE hebrew_word = "יוֹחָנָן" |
How many strongs transliteration of the english spelling of the work jehojakin? | CREATE TABLE table_1242447_1 (strongs_transliteration VARCHAR, english_spelling VARCHAR) | SELECT COUNT(strongs_transliteration) FROM table_1242447_1 WHERE english_spelling = "Jehojakin" |
Kaluvanchikudy is the main town in what DS division? | CREATE TABLE table_12485020_1 (ds_division VARCHAR, main_town VARCHAR) | SELECT ds_division FROM table_12485020_1 WHERE main_town = "Kaluvanchikudy" |
What DS division has S. L. M. Haneefa as the divisional secretary? | 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" |
What is the name of the DS division where the divisional secretary is S. H. Muzammil? | CREATE TABLE table_12485020_1 (ds_division VARCHAR, divisional_secretary VARCHAR) | SELECT ds_division FROM table_12485020_1 WHERE divisional_secretary = "S. H. Muzammil" |
How many figures are given for the region's total in 1947? | CREATE TABLE table_12555835_1 (population__region_total_ VARCHAR, year VARCHAR) | SELECT COUNT(population__region_total_) FROM table_12555835_1 WHERE year = 1947 |
What was the smallest population figure for Mareeba? | CREATE TABLE table_12555835_1 (population__mareeba_ INTEGER) | SELECT MIN(population__mareeba_) FROM table_12555835_1 |
How many episodes were watched by 12.72 million U.S. viewers? | 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" |
How many millions of U.S. viewers watched the episode directed by Rob Bailey and written by Pam Veasey? | 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" |
How many persons had immunity in the episode when Wanda was eliminated? | CREATE TABLE table_1272844_2 (immunity VARCHAR, eliminated VARCHAR) | SELECT COUNT(immunity) FROM table_1272844_2 WHERE eliminated = "Wanda" |
What is the name of the episode in which Jenn is eliminated? | CREATE TABLE table_1272844_2 (episode_title VARCHAR, eliminated VARCHAR) | SELECT episode_title FROM table_1272844_2 WHERE eliminated = "Jenn" |
What was the vote tally on the episode aired May 5, 2005? | CREATE TABLE table_1272844_2 (vote VARCHAR, air_date VARCHAR) | SELECT vote FROM table_1272844_2 WHERE air_date = "May 5, 2005" |
Who received the reward on the episode where the finish was "3rd voted out day 8"? | CREATE TABLE table_1272844_2 (reward VARCHAR, finish VARCHAR) | SELECT reward FROM table_1272844_2 WHERE finish = "3rd voted Out Day 8" |
What was the vote on the episode where the finish was "10th voted out 3rd jury member day 30"? | 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" |
How many votes were taken when the outcome was "6th voted out day 12"? | CREATE TABLE table_1272844_2 (vote VARCHAR, finish VARCHAR) | SELECT COUNT(vote) FROM table_1272844_2 WHERE finish = "6th voted Out Day 12" |
What is the short stem for garbitzen? | CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR) | SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = "garbitzen" |
What is the perfect stem for pozten? | CREATE TABLE table_12784134_24 (perfect_stem VARCHAR, imperfect_stem VARCHAR) | SELECT perfect_stem FROM table_12784134_24 WHERE imperfect_stem = "pozten" |
Name the perfect stem for jo | CREATE TABLE table_12784134_24 (perfect_stem VARCHAR, short_stem VARCHAR) | SELECT COUNT(perfect_stem) FROM table_12784134_24 WHERE short_stem = "jo" |
What is the number for future stem for poztu? | CREATE TABLE table_12784134_24 (future_stem VARCHAR, perfect_stem VARCHAR) | SELECT COUNT(future_stem) FROM table_12784134_24 WHERE perfect_stem = "poztu" |
Name the try bonus of points against at 430 | CREATE TABLE table_12792876_4 (try_bonus VARCHAR, points_against VARCHAR) | SELECT try_bonus FROM table_12792876_4 WHERE points_against = "430" |
Name the losing bonus of 96 points | CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR) | SELECT losing_bonus FROM table_12792876_4 WHERE points = "96" |
Name the points against for 51 points | CREATE TABLE table_12792876_4 (points_against VARCHAR, points VARCHAR) | SELECT points_against FROM table_12792876_4 WHERE points = "51" |
Name the tries against for 87 points | CREATE TABLE table_12792876_4 (tries_against VARCHAR, points VARCHAR) | SELECT tries_against FROM table_12792876_4 WHERE points = "87" |
Name the tries against for drawn | CREATE TABLE table_12792876_4 (tries_against VARCHAR) | SELECT COUNT(tries_against) FROM table_12792876_4 WHERE "drawn" = "drawn" |
Name the losing bonus for 27 | CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, tries_for VARCHAR) | SELECT losing_bonus FROM table_12792876_4 WHERE tries_for = "27" |
What is the rear sight in the Cole model no. 735? | CREATE TABLE table_12834315_1 (rear_sight VARCHAR, colt_model_no VARCHAR) | SELECT rear_sight FROM table_12834315_1 WHERE colt_model_no = "735" |
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? | 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" |
What's the type of muzzle devices on the models with round hand guards? | CREATE TABLE table_12834315_1 (muzzle_device VARCHAR, hand_guards VARCHAR) | SELECT muzzle_device FROM table_12834315_1 WHERE hand_guards = "Round" |
Clubs involved is 8, what number would you find from winners from previous round? | 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 |
From the round name of third round; what would the new entries this round that would be found? | 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" |
When looking at new entries this round and seeing 8; what number in total is there for clubs remaining? | 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" |
During the first phase portion of phase and having 16 clubs involved; what would you find for the winners from previous round? | 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 |
The new entries this round was shown to be 12, in which phase would you find this? | CREATE TABLE table_1281200_1 (phase VARCHAR, new_entries_this_round VARCHAR) | SELECT phase FROM table_1281200_1 WHERE new_entries_this_round = "12" |
What country submitted miehen työ? | CREATE TABLE table_12842068_1 (submitting_country VARCHAR, original_title VARCHAR) | SELECT submitting_country FROM table_12842068_1 WHERE original_title = "Miehen työ" |
What was the title of the movie from lebanon? | 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" |
What country submitted the movie the orphanage? | 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" |
What year did University of Saskatchewan have their first season? | CREATE TABLE table_12896884_1 (first_season INTEGER, institution VARCHAR) | SELECT MAX(first_season) FROM table_12896884_1 WHERE institution = "University of Saskatchewan" |
What football stadium has a school enrollment of 43579? | CREATE TABLE table_12896884_1 (football_stadium VARCHAR, enrollment VARCHAR) | SELECT football_stadium FROM table_12896884_1 WHERE enrollment = 43579 |
How many endowments does Mosaic Stadium have? | CREATE TABLE table_12896884_1 (endowment VARCHAR, football_stadium VARCHAR) | SELECT COUNT(endowment) FROM table_12896884_1 WHERE football_stadium = "Mosaic Stadium" |
What is the enrollment for Foote Field? | CREATE TABLE table_12896884_1 (enrollment INTEGER, football_stadium VARCHAR) | SELECT MAX(enrollment) FROM table_12896884_1 WHERE football_stadium = "Foote Field" |
How many cities have an enrollment of 19082? | CREATE TABLE table_12896884_1 (city VARCHAR, enrollment VARCHAR) | SELECT COUNT(city) FROM table_12896884_1 WHERE enrollment = 19082 |
Name the number of points for south korea | CREATE TABLE table_13282157_3 (points VARCHAR, country VARCHAR) | SELECT COUNT(points) FROM table_13282157_3 WHERE country = "South Korea" |
How many dismissals did the player Peter McGlashan have? | CREATE TABLE table_13337302_16 (dismissals VARCHAR, player VARCHAR) | SELECT dismissals FROM table_13337302_16 WHERE player = "Peter McGlashan" |
How many stumpings did the player Tim Latham have? | CREATE TABLE table_13337302_16 (stumpings INTEGER, player VARCHAR) | SELECT MAX(stumpings) FROM table_13337302_16 WHERE player = "Tim Latham" |
List the ranks of all dismissals with a value of 4 | CREATE TABLE table_13337302_16 (rank VARCHAR, dismissals VARCHAR) | SELECT rank FROM table_13337302_16 WHERE dismissals = 4 |
How many innings had a total of 2 catches and 0 stumpings? | CREATE TABLE table_13337302_16 (innings VARCHAR, catches VARCHAR, stumpings VARCHAR) | SELECT COUNT(innings) FROM table_13337302_16 WHERE catches = 2 AND stumpings = 0 |
In what district was the incumbent Steve Chabot? | CREATE TABLE table_1341395_36 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341395_36 WHERE incumbent = "Steve Chabot" |
Incumbent Deborah Pryce was a member of what party? | CREATE TABLE table_1341395_36 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1341395_36 WHERE incumbent = "Deborah Pryce" |
Who were the candidates in the election where Saxby Chambliss was the incumbent? | CREATE TABLE table_1341453_12 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1341453_12 WHERE incumbent = "Saxby Chambliss" |
What party does William J. Jefferson? | CREATE TABLE table_1341453_20 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1341453_20 WHERE incumbent = "William J. Jefferson" |
What were the results for incumbent Jim McCrery? | CREATE TABLE table_1341453_20 (results VARCHAR, incumbent VARCHAR) | SELECT results FROM table_1341453_20 WHERE incumbent = "Jim McCrery" |
How many candidates were elected first in 1980? | CREATE TABLE table_1341453_20 (candidates VARCHAR, first_elected VARCHAR) | SELECT COUNT(candidates) FROM table_1341453_20 WHERE first_elected = 1980 |
What district does John Cooksey represent? | CREATE TABLE table_1341453_20 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341453_20 WHERE incumbent = "John Cooksey" |
What district was John Porter elected in? | CREATE TABLE table_1341453_15 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341453_15 WHERE incumbent = "John Porter" |
What was the result in Illinois 7? | CREATE TABLE table_1341453_15 (results VARCHAR, district VARCHAR) | SELECT results FROM table_1341453_15 WHERE district = "Illinois 7" |
Who were the candidates in the district where Jerry Costello won? | CREATE TABLE table_1341453_15 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1341453_15 WHERE incumbent = "Jerry Costello" |
How many times did incumbent ruben hinojosa get elected? | CREATE TABLE table_1341453_45 (results VARCHAR, incumbent VARCHAR) | SELECT COUNT(results) FROM table_1341453_45 WHERE incumbent = "Ruben Hinojosa" |
What district is ruben hinojosa from? | CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341453_45 WHERE incumbent = "Ruben Hinojosa" |
What district is nick lampson from? | CREATE TABLE table_1341453_45 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341453_45 WHERE incumbent = "Nick Lampson" |
What year was incumbent jim mcdermott first elected? | CREATE TABLE table_1341522_50 (first_elected INTEGER, incumbent VARCHAR) | SELECT MIN(first_elected) FROM table_1341522_50 WHERE incumbent = "Jim McDermott" |
What was the result of the election of doc hastings (r) 53.3% jay inslee (d) 46.7% | 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%" |
What districts does incumbent Curt Weldon hold? | CREATE TABLE table_1341568_39 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341568_39 WHERE incumbent = "Curt Weldon" |
How many champions were there when the first driver was hiroki yoshimoto ( 2005 )? | CREATE TABLE table_13416000_3 (champions VARCHAR, first_driver_s_ VARCHAR) | SELECT champions FROM table_13416000_3 WHERE first_driver_s_ = "Hiroki Yoshimoto ( 2005 )" |
How many entries are there for first driver for Canada? | CREATE TABLE table_13416000_3 (first_driver_s_ VARCHAR, country VARCHAR) | SELECT COUNT(first_driver_s_) FROM table_13416000_3 WHERE country = "Canada" |
Name the candidates for georgia 8 | CREATE TABLE table_1341604_11 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1341604_11 WHERE district = "Georgia 8" |
Name the party of georgia 4 | CREATE TABLE table_1341604_11 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1341604_11 WHERE district = "Georgia 4" |
Name the party for jack thomas brinkley | CREATE TABLE table_1341604_11 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1341604_11 WHERE incumbent = "Jack Thomas Brinkley" |
Name the districk for larry mcdonald | CREATE TABLE table_1341604_11 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341604_11 WHERE incumbent = "Larry McDonald" |
what's the result with district being florida 7 | CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1341604_10 WHERE district = "Florida 7" |
what's the district with result being new seat democratic gain | CREATE TABLE table_1341604_10 (district VARCHAR, result VARCHAR) | SELECT district FROM table_1341604_10 WHERE result = "New seat Democratic gain" |
how many candidates with result being new seat democratic gain | CREATE TABLE table_1341604_10 (candidates VARCHAR, result VARCHAR) | SELECT COUNT(candidates) FROM table_1341604_10 WHERE result = "New seat Democratic gain" |
how many result with district being florida 14 | CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR) | SELECT COUNT(result) FROM table_1341604_10 WHERE district = "Florida 14" |
what's the first elected with district being florida 7 | CREATE TABLE table_1341604_10 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_1341604_10 WHERE district = "Florida 7" |
who is the the candidates with incumbent being don fuqua | CREATE TABLE table_1341604_10 (candidates VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1341604_10 WHERE incumbent = "Don Fuqua" |
How many candidates were first elected in 1972? | CREATE TABLE table_1341640_11 (candidates VARCHAR, first_elected VARCHAR) | SELECT COUNT(candidates) FROM table_1341640_11 WHERE first_elected = 1972 |
What is the party with the candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%? | 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%" |
What is the earliest first elected for district georgia 1? | CREATE TABLE table_1341640_11 (first_elected INTEGER, district VARCHAR) | SELECT MIN(first_elected) FROM table_1341640_11 WHERE district = "Georgia 1" |
How many parties were for candidates newt gingrich (r) 59.1% dock h. davis (d) 40.9%? | 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%" |
How many incumbents were for district georgia 6? | CREATE TABLE table_1341640_11 (incumbent VARCHAR, district VARCHAR) | SELECT COUNT(incumbent) FROM table_1341640_11 WHERE district = "Georgia 6" |
Name the district for tim lee hall | CREATE TABLE table_1341672_14 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1341672_14 WHERE incumbent = "Tim Lee Hall" |
Name the number of first elected for phil crane | CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_1341672_14 WHERE incumbent = "Phil Crane" |
Name the party for tim lee hall | CREATE TABLE table_1341672_14 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1341672_14 WHERE incumbent = "Tim Lee Hall" |
Name the candidates for illinois 15 | CREATE TABLE table_1341672_14 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1341672_14 WHERE district = "Illinois 15" |
Name the first elected for abner j. mikva | CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1341672_14 WHERE incumbent = "Abner J. Mikva" |
Name the total number of incumbent for first elected of 1944 | CREATE TABLE table_1341672_14 (incumbent VARCHAR, first_elected VARCHAR) | SELECT COUNT(incumbent) FROM table_1341672_14 WHERE first_elected = 1944 |
How many incumbents come from alvin bush's district? | CREATE TABLE table_1341930_38 (candidates VARCHAR, incumbent VARCHAR) | SELECT COUNT(candidates) FROM table_1341930_38 WHERE incumbent = "Alvin Bush" |
Who were the candidates in the Kentucky 4 voting district? | CREATE TABLE table_1342218_17 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342218_17 WHERE district = "Kentucky 4" |
How many times was incumbent Noble Jones Gregory first elected? | CREATE TABLE table_1342218_17 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_1342218_17 WHERE incumbent = "Noble Jones Gregory" |
What was the result in the voting district Kentucky 2? | CREATE TABLE table_1342218_17 (result VARCHAR, district VARCHAR) | SELECT result FROM table_1342218_17 WHERE district = "Kentucky 2" |
What was the result of the election incumbent Brent Spence took place in? | CREATE TABLE table_1342218_17 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342218_17 WHERE incumbent = "Brent Spence" |
Which party won in the election in voting district Kentucky 5? | CREATE TABLE table_1342218_17 (party VARCHAR, district VARCHAR) | SELECT party FROM table_1342218_17 WHERE district = "Kentucky 5" |
List all candidates in the democratic party where the election had the incumbent Frank Chelf running. | CREATE TABLE table_1342218_17 (candidates VARCHAR, party VARCHAR, incumbent VARCHAR) | SELECT candidates FROM table_1342218_17 WHERE party = "Democratic" AND incumbent = "Frank Chelf" |
Which district is jamie l. whitten from? | CREATE TABLE table_1342233_24 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_1342233_24 WHERE incumbent = "Jamie L. Whitten" |
What candidates are from mississippi 6? | CREATE TABLE table_1342233_24 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1342233_24 WHERE district = "Mississippi 6" |
What is the incumbent from 1941? | CREATE TABLE table_1342233_24 (incumbent VARCHAR, first_elected VARCHAR) | SELECT incumbent FROM table_1342233_24 WHERE first_elected = 1941 |
What is the result for w. arthur winstead? | CREATE TABLE table_1342233_24 (result VARCHAR, incumbent VARCHAR) | SELECT result FROM table_1342233_24 WHERE incumbent = "W. Arthur Winstead" |
How many were first elected in the Arkansas 4 district? | CREATE TABLE table_1342233_5 (first_elected VARCHAR, district VARCHAR) | SELECT COUNT(first_elected) FROM table_1342233_5 WHERE district = "Arkansas 4" |
How many districts had William F. Norrell as the incumbent? | CREATE TABLE table_1342233_5 (district VARCHAR, incumbent VARCHAR) | SELECT COUNT(district) FROM table_1342233_5 WHERE incumbent = "William F. Norrell" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.