question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Name the english gloss for haŋȟ’áŋna
CREATE TABLE table_1499774_5 (english_gloss VARCHAR, santee_sisseton VARCHAR)
SELECT english_gloss FROM table_1499774_5 WHERE santee_sisseton = "haŋȟ’áŋna"
Name the number of english gloss for wakȟáŋyeža
CREATE TABLE table_1499774_5 (english_gloss VARCHAR, northern_lakota VARCHAR)
SELECT COUNT(english_gloss) FROM table_1499774_5 WHERE northern_lakota = "wakȟáŋyeža"
What was the first year of the Lithuanian National Badminton Championships?
CREATE TABLE table_15001753_1 (year INTEGER)
SELECT MIN(year) FROM table_15001753_1
How many years did aivaras kvedarauskas juozas spelveris participate in the men's doubles?
CREATE TABLE table_15001753_1 (year VARCHAR, mens_doubles VARCHAR)
SELECT COUNT(year) FROM table_15001753_1 WHERE mens_doubles = "Aivaras Kvedarauskas Juozas Spelveris"
In 2004, where the womens singles is daniela kressig who is the mens singles
CREATE TABLE table_15001681_1 (mens_singles VARCHAR, womens_singles VARCHAR)
SELECT mens_singles FROM table_15001681_1 WHERE womens_singles = "Daniela Kressig"
What is the most current year where the women's doubles champions are astrid eidenbenz claudia jehle
CREATE TABLE table_15001681_1 (year INTEGER, womens_doubles VARCHAR)
SELECT MAX(year) FROM table_15001681_1 WHERE womens_doubles = "Astrid Eidenbenz Claudia Jehle"
In the year 2006, the womens singles had no competition and the mens doubles were roland hilti kilian pfister, what were the womens doubles
CREATE TABLE table_15001681_1 (womens_doubles VARCHAR, year VARCHAR, womens_singles VARCHAR, mens_doubles VARCHAR)
SELECT womens_doubles FROM table_15001681_1 WHERE womens_singles = "no competition" AND mens_doubles = "Roland Hilti Kilian Pfister" AND year = 2006
In 2001, where the mens singles is armand jehle and the womens singles is michaela ritter, who are the mixed doubles
CREATE TABLE table_15001681_1 (mixed_doubles VARCHAR, womens_singles VARCHAR, mens_singles VARCHAR)
SELECT mixed_doubles FROM table_15001681_1 WHERE womens_singles = "Michaela Ritter" AND mens_singles = "Armand Jehle"
In 1987 who was the mens singles
CREATE TABLE table_15001681_1 (mens_singles VARCHAR, year VARCHAR)
SELECT mens_singles FROM table_15001681_1 WHERE year = 1987
When is the rhel release date when scientific linux release is 3.0.4
CREATE TABLE table_1500146_1 (rhel_release_date VARCHAR, scientific_linux_release VARCHAR)
SELECT rhel_release_date FROM table_1500146_1 WHERE scientific_linux_release = "3.0.4"
Name the delay when scientific linux release is 5.10
CREATE TABLE table_1500146_1 (delay VARCHAR, scientific_linux_release VARCHAR)
SELECT delay FROM table_1500146_1 WHERE scientific_linux_release = "5.10"
Name the scientific linux release when delay is 28d
CREATE TABLE table_1500146_1 (scientific_linux_release VARCHAR, delay VARCHAR)
SELECT scientific_linux_release FROM table_1500146_1 WHERE delay = "28d"
What is the United States rank?
CREATE TABLE table_150343_3 (rank VARCHAR, country_territory VARCHAR)
SELECT COUNT(rank) FROM table_150343_3 WHERE country_territory = "United States"
What is Venezuela's total rank?
CREATE TABLE table_150343_3 (total VARCHAR, country_territory VARCHAR)
SELECT total FROM table_150343_3 WHERE country_territory = "Venezuela"
What is Iceland's total?
CREATE TABLE table_150343_3 (total VARCHAR, country_territory VARCHAR)
SELECT COUNT(total) FROM table_150343_3 WHERE country_territory = "Iceland"
What is the worst (highest) score?
CREATE TABLE table_1506950_4 (score INTEGER)
SELECT MAX(score) FROM table_1506950_4
What days were the rounds of 66-67-70-67 recorded?
CREATE TABLE table_1506950_4 (date VARCHAR, rounds VARCHAR)
SELECT date FROM table_1506950_4 WHERE rounds = "66-67-70-67"
What country hosts the tournament the open championship?
CREATE TABLE table_1506950_4 (country VARCHAR, tournament VARCHAR)
SELECT country FROM table_1506950_4 WHERE tournament = "The Open Championship"
What players finished 2nd?
CREATE TABLE table_1506950_4 (player VARCHAR, finish VARCHAR)
SELECT player FROM table_1506950_4 WHERE finish = "2nd"
WHAT YEAR WAS IT WHEN THE SCORE WAS 3 & 2?
CREATE TABLE table_1507806_1 (year VARCHAR, winning_score VARCHAR)
SELECT year FROM table_1507806_1 WHERE winning_score = "3 & 2"
HOW MANY YEARS WAS IT FOR THE SCORE (76-73-79-72=300)?
CREATE TABLE table_1507806_1 (year VARCHAR, winning_score VARCHAR)
SELECT COUNT(year) FROM table_1507806_1 WHERE winning_score = (76 - 73 - 79 - 72 = 300)
WHAT WAS THE YEAR WHEN THE RUNNER-UP WAS WILLIAM MEHLHORN?
CREATE TABLE table_1507806_1 (year INTEGER, runner_up VARCHAR)
SELECT MAX(year) FROM table_1507806_1 WHERE runner_up = "William Mehlhorn"
WHAT YEAR DID MIKE BRADY GET RUNNER-UP?
CREATE TABLE table_1507806_1 (year INTEGER, runner_up VARCHAR)
SELECT MIN(year) FROM table_1507806_1 WHERE runner_up = "Mike Brady"
WHAT WAS THE WINNING SCORE IN YEAR 1922?
CREATE TABLE table_1507806_1 (winning_score VARCHAR, year VARCHAR)
SELECT winning_score FROM table_1507806_1 WHERE year = 1922
what's the cancelable with bubbles being yes
CREATE TABLE table_1507852_5 (cancelable VARCHAR, bubbles VARCHAR)
SELECT cancelable FROM table_1507852_5 WHERE bubbles = "Yes"
what's the bubbles with attribute being onpopuphidden
CREATE TABLE table_1507852_5 (bubbles VARCHAR, attribute VARCHAR)
SELECT bubbles FROM table_1507852_5 WHERE attribute = "onpopuphidden"
how many bubbles with category being input
CREATE TABLE table_1507852_5 (bubbles VARCHAR, category VARCHAR)
SELECT COUNT(bubbles) FROM table_1507852_5 WHERE category = "Input"
what's the type with description being fires when the overflow state changes.
CREATE TABLE table_1507852_5 (type VARCHAR, description VARCHAR)
SELECT type FROM table_1507852_5 WHERE description = "Fires when the overflow state changes."
what's the attribute with cancelable being yes
CREATE TABLE table_1507852_5 (attribute VARCHAR, cancelable VARCHAR)
SELECT attribute FROM table_1507852_5 WHERE cancelable = "Yes"
What is the original air date for the episode with a production code of 318?
CREATE TABLE table_15185133_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_15185133_1 WHERE production_code = 318
What season has an episode written by john o'bryan and directed by ethan spaulding?
CREATE TABLE table_15185133_1 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT no_in_season FROM table_15185133_1 WHERE written_by = "John O'Bryan" AND directed_by = "Ethan Spaulding"
how many segments involve wood boring augers
CREATE TABLE table_15187735_17 (segment_a VARCHAR, segment_d VARCHAR)
SELECT segment_a FROM table_15187735_17 WHERE segment_d = "Wood Boring Augers"
for the shows featuring beet sugar, what was on before that
CREATE TABLE table_15187735_17 (segment_b VARCHAR, segment_c VARCHAR)
SELECT segment_b FROM table_15187735_17 WHERE segment_c = "Beet Sugar"
are rolled wafers in many episodes
CREATE TABLE table_15187735_17 (series_ep VARCHAR, segment_a VARCHAR)
SELECT series_ep FROM table_15187735_17 WHERE segment_a = "Rolled Wafers"
Name the best actor for uncle boonmee who can recall his past lives
CREATE TABLE table_15301258_1 (best_actor VARCHAR, best_film VARCHAR)
SELECT best_actor FROM table_15301258_1 WHERE best_film = "Uncle Boonmee Who Can Recall His Past Lives"
Name the best director for mother
CREATE TABLE table_15301258_1 (best_director VARCHAR, best_film VARCHAR)
SELECT best_director FROM table_15301258_1 WHERE best_film = "Mother"
Name the year for sammo hung for ip man 2
CREATE TABLE table_15301258_1 (year VARCHAR, best_supporting_actor VARCHAR)
SELECT year FROM table_15301258_1 WHERE best_supporting_actor = "Sammo Hung for Ip Man 2"
Name the best supporting actress for sun honglei for mongol
CREATE TABLE table_15301258_1 (best_supporting_actress VARCHAR, best_supporting_actor VARCHAR)
SELECT best_supporting_actress FROM table_15301258_1 WHERE best_supporting_actor = "Sun Honglei for Mongol"
How many years was Jiyai Shin the champion?
CREATE TABLE table_1529260_2 (year VARCHAR, champion VARCHAR)
SELECT COUNT(year) FROM table_1529260_2 WHERE champion = "Jiyai Shin"
What countries have a margin of victory at 6 strokes?
CREATE TABLE table_1529260_2 (country VARCHAR, margin_of_victory VARCHAR)
SELECT country FROM table_1529260_2 WHERE margin_of_victory = "6 strokes"
How many dollars is the purse when the margin of victory is 8 strokes?
CREATE TABLE table_1529260_2 (purse___us VARCHAR, margin_of_victory VARCHAR)
SELECT COUNT(purse___us) AS $__ FROM table_1529260_2 WHERE margin_of_victory = "8 strokes"
What is the lowest year listed?
CREATE TABLE table_1529260_2 (year INTEGER)
SELECT MIN(year) FROM table_1529260_2
At what date is the score 66-72-64-65=267?
CREATE TABLE table_1529260_2 (dates VARCHAR, score VARCHAR)
SELECT dates FROM table_1529260_2 WHERE score = 66 - 72 - 64 - 65 = 267
How many teams are #2 on the list?
CREATE TABLE table_15313204_1 (records VARCHAR, _number VARCHAR)
SELECT COUNT(records) FROM table_15313204_1 WHERE _number = 2
What are the record(s) for the team with a winning percentage of .464?
CREATE TABLE table_15313204_1 (records VARCHAR, pct VARCHAR)
SELECT records FROM table_15313204_1 WHERE pct = ".464"
Name the points for paulistano
CREATE TABLE table_15418319_1 (points VARCHAR, team VARCHAR)
SELECT points FROM table_15418319_1 WHERE team = "Paulistano"
Name the total number of titles for 3020 production code
CREATE TABLE table_15472061_1 (title VARCHAR, production_code VARCHAR)
SELECT COUNT(title) FROM table_15472061_1 WHERE production_code = "3020"
Name the number in the series for when the viewers is 7.78
CREATE TABLE table_15472061_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
SELECT no_in_series FROM table_15472061_1 WHERE us_viewers__millions_ = "7.78"
Name the number of original air date for when the number in season is 10/11
CREATE TABLE table_15472061_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT COUNT(original_air_date) FROM table_15472061_1 WHERE no_in_season = "10/11"
Which race number in the Indy F3 Challenge circuit had John Martin in pole position?
CREATE TABLE table_15530244_2 (race VARCHAR, circuit VARCHAR, pole_position VARCHAR)
SELECT race FROM table_15530244_2 WHERE circuit = "Indy F3 Challenge" AND pole_position = "John Martin"
What is the highest race number in the Phillip Island circuit with James Winslow as the winning driver and pole position?
CREATE TABLE table_15530244_2 (race INTEGER, pole_position VARCHAR, circuit VARCHAR, winning_driver VARCHAR)
SELECT MAX(race) FROM table_15530244_2 WHERE circuit = "Phillip Island" AND winning_driver = "James Winslow" AND pole_position = "James Winslow"
Name the least amount of tackles for danny clark
CREATE TABLE table_15581223_8 (tackles INTEGER, player VARCHAR)
SELECT MIN(tackles) FROM table_15581223_8 WHERE player = "Danny Clark"
Name the most tackles for 3.5 sacks
CREATE TABLE table_15581223_8 (tackles INTEGER, sacks VARCHAR)
SELECT MAX(tackles) FROM table_15581223_8 WHERE sacks = "3.5"
Name the least fum rec td
CREATE TABLE table_15581223_8 (fum_rec INTEGER)
SELECT MIN(fum_rec) AS TD FROM table_15581223_8
Name the least int yards when sacks is 11.5
CREATE TABLE table_15581223_8 (int INTEGER, sacks VARCHAR)
SELECT MIN(int) AS yards FROM table_15581223_8 WHERE sacks = "11.5"
Name the least amount of int yards
CREATE TABLE table_15581223_8 (int INTEGER)
SELECT MIN(int) AS yards FROM table_15581223_8
What jersey number did Al Harrington wear
CREATE TABLE table_15621965_8 (no INTEGER, player VARCHAR)
SELECT MAX(no) FROM table_15621965_8 WHERE player = "Al Harrington"
What school did Dwight Howard play for
CREATE TABLE table_15621965_8 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_15621965_8 WHERE player = "Dwight Howard"
How many players belong to Notre Dame?
CREATE TABLE table_15621965_7 (player VARCHAR, school_club_team VARCHAR)
SELECT COUNT(player) FROM table_15621965_7 WHERE school_club_team = "Notre Dame"
What number identifies Chris Gatling?
CREATE TABLE table_15621965_7 (no INTEGER, player VARCHAR)
SELECT MAX(no) FROM table_15621965_7 WHERE player = "Chris Gatling"
What is the extortion and theft rates where the United Nations Observer Mission Uganda-Rwanda is active?
CREATE TABLE table_15652027_1 (extortion_theft_3 VARCHAR, united_nations_mission VARCHAR)
SELECT extortion_theft_3 FROM table_15652027_1 WHERE united_nations_mission = "United Nations Observer Mission Uganda-Rwanda"
What is the sexual abuse rate where the conflict is the Burundi Civil War?
CREATE TABLE table_15652027_1 (sexual_abuse_1 INTEGER, conflict VARCHAR)
SELECT MIN(sexual_abuse_1) FROM table_15652027_1 WHERE conflict = "Burundi Civil War"
What is the sexual abuse rate where the conflict is the Burundi Civil War?
CREATE TABLE table_15652027_1 (sexual_abuse_1 INTEGER, conflict VARCHAR)
SELECT MAX(sexual_abuse_1) FROM table_15652027_1 WHERE conflict = "Burundi Civil War"
What is the sexual abuse rate where the conflict is the Second Sudanese Civil War?
CREATE TABLE table_15652027_1 (sexual_abuse_1 INTEGER, conflict VARCHAR)
SELECT MIN(sexual_abuse_1) FROM table_15652027_1 WHERE conflict = "Second Sudanese Civil War"
When was the Kymberly Paige the Centerfold?
CREATE TABLE table_1566848_8 (date VARCHAR, centerfold_model VARCHAR)
SELECT date FROM table_1566848_8 WHERE centerfold_model = "Kymberly Paige"
When was Kalin Olson listed as the centerfold model?
CREATE TABLE table_1566850_8 (date VARCHAR, centerfold_model VARCHAR)
SELECT date FROM table_1566850_8 WHERE centerfold_model = "Kalin Olson"
What is the name of the cover model on 3-97?
CREATE TABLE table_1566850_8 (cover_model VARCHAR, date VARCHAR)
SELECT cover_model FROM table_1566850_8 WHERE date = "3-97"
Who was the centerfold model when a pictorial was done on marilyn monroe?
CREATE TABLE table_1566850_8 (centerfold_model VARCHAR, pictorials VARCHAR)
SELECT centerfold_model FROM table_1566850_8 WHERE pictorials = "Marilyn Monroe"
Who was the interview subject on the date 1-97?
CREATE TABLE table_1566850_8 (interview_subject VARCHAR, date VARCHAR)
SELECT interview_subject FROM table_1566850_8 WHERE date = "1-97"
Who was the cover model when the issue's pictorials was pmoy - sara jean underwood?
CREATE TABLE table_1566852_8 (cover_model VARCHAR, pictorials VARCHAR)
SELECT cover_model FROM table_1566852_8 WHERE pictorials = "PMOY - Sara Jean Underwood"
List the pictorals from issues when lindsey roeper was the cover model.
CREATE TABLE table_1566852_8 (pictorials VARCHAR, cover_model VARCHAR)
SELECT pictorials FROM table_1566852_8 WHERE cover_model = "Lindsey Roeper"
Who was the centerfold model when the issue's pictorial was kimberly bell , bunnies of the new playboy club?
CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR)
SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = "Kimberly Bell , Bunnies of the New Playboy Club"
Who was the centerfold model when the issue's pictorial was amanda beard, reby sky , girls of montauk ?
CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR)
SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = "Amanda Beard, Reby Sky , Girls of Montauk"
Who answered the 20 questions on 10-07?
CREATE TABLE table_1566852_8 (date VARCHAR)
SELECT 20 AS _questions FROM table_1566852_8 WHERE date = "10-07"
Name the wickets for overs bowled being 15
CREATE TABLE table_15700367_2 (wickets VARCHAR, overs_bowled VARCHAR)
SELECT wickets FROM table_15700367_2 WHERE overs_bowled = "15"
Name the total number of wickets being yuvraj singh
CREATE TABLE table_15700367_2 (wickets VARCHAR, name VARCHAR)
SELECT COUNT(wickets) FROM table_15700367_2 WHERE name = "Yuvraj Singh"
Name the name for when overs bowled is 31.2
CREATE TABLE table_15700367_2 (name VARCHAR, overs_bowled VARCHAR)
SELECT name FROM table_15700367_2 WHERE overs_bowled = "31.2"
Name the runs conceded where overs bowled is 53
CREATE TABLE table_15700367_2 (runs_conceded VARCHAR, overs_bowled VARCHAR)
SELECT COUNT(runs_conceded) FROM table_15700367_2 WHERE overs_bowled = "53"
Name the maaidens where overs bowled is 13
CREATE TABLE table_15700367_2 (maidens VARCHAR, overs_bowled VARCHAR)
SELECT maidens FROM table_15700367_2 WHERE overs_bowled = "13"
On what date was the race at Nazareth?
CREATE TABLE table_15736385_1 (date VARCHAR, location VARCHAR)
SELECT date FROM table_15736385_1 WHERE location = "Nazareth"
At which location did Rick Mears drive?
CREATE TABLE table_15736385_1 (location VARCHAR, driver VARCHAR)
SELECT location FROM table_15736385_1 WHERE driver = "Rick Mears"
Which team raced on October 19?
CREATE TABLE table_15736385_1 (team VARCHAR, date VARCHAR)
SELECT team FROM table_15736385_1 WHERE date = "October 19"
What engine does Galles Racing use?
CREATE TABLE table_15736385_1 (engine VARCHAR, team VARCHAR)
SELECT engine FROM table_15736385_1 WHERE team = "Galles Racing"
What game happened on December 19?
CREATE TABLE table_15780049_5 (game INTEGER, date VARCHAR)
SELECT MAX(game) FROM table_15780049_5 WHERE date = "December 19"
Who scored the most points against Washington?
CREATE TABLE table_15780049_5 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_15780049_5 WHERE team = "Washington"
Which municipalities located in the county of Finnmark have populations bigger than 6187.0?
CREATE TABLE table_157826_1 (municipality VARCHAR, county VARCHAR, population VARCHAR)
SELECT municipality FROM table_157826_1 WHERE county = "Finnmark" AND population > 6187.0
In which county is the city/town of Halden located?
CREATE TABLE table_157826_1 (county VARCHAR, city_town VARCHAR)
SELECT county FROM table_157826_1 WHERE city_town = "Halden"
Which municipality has a population of 24421?
CREATE TABLE table_157826_1 (municipality VARCHAR, population VARCHAR)
SELECT municipality FROM table_157826_1 WHERE population = 24421
What is the total population in the city/town of Arendal?
CREATE TABLE table_157826_1 (population VARCHAR, city_town VARCHAR)
SELECT COUNT(population) FROM table_157826_1 WHERE city_town = "Arendal"
What are the cities/towns located in the municipality of Horten?
CREATE TABLE table_157826_1 (city_town VARCHAR, municipality VARCHAR)
SELECT city_town FROM table_157826_1 WHERE municipality = "Horten"
What are the cities/towns located in the municipality of Moss?
CREATE TABLE table_157826_1 (city_town VARCHAR, municipality VARCHAR)
SELECT city_town FROM table_157826_1 WHERE municipality = "Moss"
Name the song choice when week number is hollywood
CREATE TABLE table_15796054_3 (song_choice VARCHAR, week__number VARCHAR)
SELECT song_choice FROM table_15796054_3 WHERE week__number = "Hollywood"
Name the week number for andrew lloyd webber
CREATE TABLE table_15796054_3 (week__number VARCHAR, theme VARCHAR)
SELECT week__number FROM table_15796054_3 WHERE theme = "Andrew Lloyd Webber"
Name the order number for the beatles and result is safe
CREATE TABLE table_15796054_3 (order__number VARCHAR, original_artist VARCHAR, result VARCHAR)
SELECT order__number FROM table_15796054_3 WHERE original_artist = "The Beatles" AND result = "Safe"
What is the production code for the episode written by Drew Z. Greenberg?
CREATE TABLE table_158088_2 (production_code VARCHAR, written_by VARCHAR)
SELECT production_code FROM table_158088_2 WHERE written_by = "Drew Z. Greenberg"
Who directed episode number 3?
CREATE TABLE table_158088_2 (directed_by VARCHAR, episode_no VARCHAR)
SELECT directed_by FROM table_158088_2 WHERE episode_no = 3
Which Season originally aired on September 17, 1955
CREATE TABLE table_15824796_4 (season__number VARCHAR, original_air_date VARCHAR)
SELECT season__number FROM table_15824796_4 WHERE original_air_date = "September 17, 1955"
What is the lowest number of series?
CREATE TABLE table_15824796_4 (series__number INTEGER)
SELECT MIN(series__number) FROM table_15824796_4
When did season 9 originally air?
CREATE TABLE table_15824796_4 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_15824796_4 WHERE season__number = 9
On what date was the attendance at Continental Airlines Arena 13,755?
CREATE TABLE table_15869204_4 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_15869204_4 WHERE location_attendance = "Continental Airlines Arena 13,755"