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