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