Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
30,300 | <question>: Which title did Neil Affleck direct? <context>: CREATE TABLE table_14724369_1 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_14724369_1 WHERE directed_by = "Neil Affleck" |
30,301 | <question>: What is the first number in series that had the production code 1ACX03? <context>: CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR) | SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = "1ACX03" |
30,302 | <question>: Which title had the production code 1ACX04? <context>: CREATE TABLE table_14724369_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_14724369_1 WHERE production_code = "1ACX04" |
30,303 | <question>: When did the show directed by Michael Dimartino first air? <context>: CREATE TABLE table_14724369_1 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_14724369_1 WHERE directed_by = "Michael DiMartino" |
30,304 | <question>: Which series numbers were directed by Monte Young? <context>: CREATE TABLE table_14724369_1 (no_in_series VARCHAR, directed_by VARCHAR) | SELECT no_in_series FROM table_14724369_1 WHERE directed_by = "Monte Young" |
30,305 | <question>: How many people directed the show written by Chris Sheridan? <context>: CREATE TABLE table_14724369_1 (directed_by VARCHAR, written_by VARCHAR) | SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan" |
30,306 | <question>: What regular seasons occurred in 2011? <context>: CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR) | SELECT regular_season FROM table_14723382_1 WHERE year = 2011 |
30,307 | <question>: What is the largest numbered? <context>: CREATE TABLE table_14723382_1 (division INTEGER) | SELECT MAX(division) FROM table_14723382_1 |
30,308 | <question>: How many positions does rene villemure play? <context>: CREATE TABLE table_1473672_2 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_1473672_2 WHERE player = "Rene Villemure" |
30,309 | <question>: What is the pick# for the medicine hat tigers (wchl)? <context>: CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR) | SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = "Medicine Hat Tigers (WCHL)" |
30,310 | <question>: What nhl team does stan weir play for? <context>: CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_1473672_2 WHERE player = "Stan Weir" |
30,311 | <question>: What nhl team does dwight bialowas play for? <context>: CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_1473672_2 WHERE player = "Dwight Bialowas" |
30,312 | <question>: Lorne Henning has the lowest pick# of? <context>: CREATE TABLE table_1473672_2 (pick__number INTEGER) | SELECT MIN(pick__number) FROM table_1473672_2 |
30,313 | <question>: Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team? <context>: CREATE TABLE table_1473672_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR) | SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = "Oshawa Generals (OMJHL)" |
30,314 | <question>: Which colle/junior/club team did Michel Boudreau play for? <context>: CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1473672_3 WHERE player = "Michel Boudreau" |
30,315 | <question>: Which players played right wing? <context>: CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR) | SELECT player FROM table_1473672_3 WHERE position = "Right Wing" |
30,316 | <question>: Which nationality is the player from the Philadelphia Flyers? <context>: CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR) | SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers" |
30,317 | <question>: Which position did the player hold that played for the Philadelphia Flyers in NHL? <context>: CREATE TABLE table_1473672_3 (position VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers" |
30,318 | <question>: Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL? <context>: CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_1473672_3 WHERE nhl_team = "Buffalo Sabres" |
30,319 | <question>: Name the number of teams for college/junior club for philadelphia flyers <context>: CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT COUNT(college_junior_club_team) FROM table_1473672_4 WHERE nhl_team = "Philadelphia Flyers" |
30,320 | <question>: Name the position for ron lalonde <context>: CREATE TABLE table_1473672_4 (position VARCHAR, player VARCHAR) | SELECT position FROM table_1473672_4 WHERE player = "Ron Lalonde" |
30,321 | <question>: Name the college/junior club team for pick number 63 <context>: CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, pick__number VARCHAR) | SELECT college_junior_club_team FROM table_1473672_4 WHERE pick__number = 63 |
30,322 | <question>: How many positions did 1972 NHL Draft pick Rene Lambert play? <context>: CREATE TABLE table_1473672_10 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_1473672_10 WHERE player = "Rene Lambert" |
30,323 | <question>: what's the college/junior/club team with nhl team being california golden seals <context>: CREATE TABLE table_1473672_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_1473672_9 WHERE nhl_team = "California Golden Seals" |
30,324 | <question>: what's the nhl team with college/junior/club team being brandon wheat kings (wchl) <context>: CREATE TABLE table_1473672_9 (nhl_team VARCHAR, college_junior_club_team VARCHAR) | SELECT nhl_team FROM table_1473672_9 WHERE college_junior_club_team = "Brandon Wheat Kings (WCHL)" |
30,325 | <question>: who is the the player with pick # being 132 <context>: CREATE TABLE table_1473672_9 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_1473672_9 WHERE pick__number = 132 |
30,326 | <question>: how many player with nhl team being vancouver canucks <context>: CREATE TABLE table_1473672_9 (player VARCHAR, nhl_team VARCHAR) | SELECT COUNT(player) FROM table_1473672_9 WHERE nhl_team = "Vancouver Canucks" |
30,327 | <question>: what's the position with player being ray boutin <context>: CREATE TABLE table_1473672_9 (position VARCHAR, player VARCHAR) | SELECT position FROM table_1473672_9 WHERE player = "Ray Boutin" |
30,328 | <question>: what is the name of the borough where station uses is 28702? <context>: CREATE TABLE table_14748457_1 (borough VARCHAR, station_users_2008_9 VARCHAR) | SELECT borough FROM table_14748457_1 WHERE station_users_2008_9 = "28702" |
30,329 | <question>: what are the lines served where station users is 210076? <context>: CREATE TABLE table_14748457_1 (lines_served VARCHAR, station_users_2008_9 VARCHAR) | SELECT lines_served FROM table_14748457_1 WHERE station_users_2008_9 = "210076" |
30,330 | <question>: whatis hte station code where users are 130368? <context>: CREATE TABLE table_14748457_1 (station__and_code_ VARCHAR, station_users_2008_9 VARCHAR) | SELECT station__and_code_ FROM table_14748457_1 WHERE station_users_2008_9 = "130368" |
30,331 | <question>: Which is the class A when Weslaco was the class AAAAA and brownwood was the class AAAA <context>: CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, class_aAAA VARCHAR, Brownwood VARCHAR) | SELECT class_a FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND class_aAAA = Brownwood |
30,332 | <question>: Which is the class A when Marion was the class AA <context>: CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aA VARCHAR, Marion VARCHAR) | SELECT class_a FROM table_14747043_1 WHERE class_aA = Marion |
30,333 | <question>: Which is the class AA when graford was the class A <context>: CREATE TABLE table_14747043_1 (class_aA VARCHAR, class_a VARCHAR) | SELECT class_aA FROM table_14747043_1 WHERE class_a = "Graford" |
30,334 | <question>: How many class AA in the year 2002-03 <context>: CREATE TABLE table_14747043_1 (class_aA VARCHAR, school_year VARCHAR) | SELECT COUNT(class_aA) FROM table_14747043_1 WHERE school_year = "2002-03" |
30,335 | <question>: Who was the class AAAA when class AAAAA was Weslaco in 1994-95 <context>: CREATE TABLE table_14747043_1 (class_aAAA VARCHAR, class_aAAAA VARCHAR, Weslaco VARCHAR, school_year VARCHAR) | SELECT class_aAAA FROM table_14747043_1 WHERE class_aAAAA = Weslaco AND school_year = "1994-95" |
30,336 | <question>: What are the changes from 2009 to 2010 in Tunisia? <context>: CREATE TABLE table_14752049_2 (change__2009_to_2010_ VARCHAR, country VARCHAR) | SELECT change__2009_to_2010_ FROM table_14752049_2 WHERE country = "Tunisia" |
30,337 | <question>: What are the international tourist arrivals in 2010 where change from 2010 to 2011 is +11.2% ? <context>: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR) | SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = "+11.2%" |
30,338 | <question>: What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million? <context>: CREATE TABLE table_14752049_2 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR) | SELECT change__2010_to_2011_ FROM table_14752049_2 WHERE international_tourist_arrivals__2011_ = "1.7 million" |
30,339 | <question>: What are the international tourist arrivals(2010) where change from 2009 to 2010 is +11.1%? <context>: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2009_to_2010_ VARCHAR) | SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2009_to_2010_ = "+11.1%" |
30,340 | <question>: What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15% <context>: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2010_to_2011_ VARCHAR) | SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = "+15%" |
30,341 | <question>: How many international tourist arrivals were in Senegal in 2011? <context>: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR) | SELECT international_tourist_arrivals__2011_ FROM table_14752049_2 WHERE country = "Senegal" |
30,342 | <question>: When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)? <context>: CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, change__2010_to_2011_ VARCHAR) | SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE change__2010_to_2011_ = "+1.0%" |
30,343 | <question>: When the change (2011 to 2012) is -0.1% what is the country? <context>: CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR) | SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "-0.1%" |
30,344 | <question>: When the change (2011 to 2012) is +13.4% what is the country? <context>: CREATE TABLE table_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR) | SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "+13.4%" |
30,345 | <question>: When 24.1 million is international tourist arrivals (2012) what is the change (2010 to 2011) ? <context>: CREATE TABLE table_14752049_6 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR) | SELECT change__2010_to_2011_ FROM table_14752049_6 WHERE international_tourist_arrivals__2012_ = "24.1 million" |
30,346 | <question>: United kingdom is the country what is the change (2011 to 2012)? <context>: CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, country VARCHAR) | SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE country = "United Kingdom" |
30,347 | <question>: When the 1 is the rank what is the overall amount of international tourist arrivals in 2012? <context>: CREATE TABLE table_14752049_6 (international_tourist_arrivals__2012_ VARCHAR, rank VARCHAR) | SELECT COUNT(international_tourist_arrivals__2012_) FROM table_14752049_6 WHERE rank = 1 |
30,348 | <question>: What is the enrollment amount where Hispanic (%) is 3.6? <context>: CREATE TABLE table_14754471_1 (enrollment VARCHAR, hispanic___percentage_ VARCHAR) | SELECT enrollment FROM table_14754471_1 WHERE hispanic___percentage_ = "3.6" |
30,349 | <question>: What percentage of Asians are there in the year 2009? <context>: CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR) | SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2009 |
30,350 | <question>: What percentage of Asians are there in the year 2004? <context>: CREATE TABLE table_14754471_1 (asian___percentage_ VARCHAR, year VARCHAR) | SELECT asian___percentage_ FROM table_14754471_1 WHERE year = 2004 |
30,351 | <question>: What percentage of hispanics are there when the free/reduced lunch percentage is 81.4? <context>: CREATE TABLE table_14754471_1 (hispanic___percentage_ VARCHAR, free_reduced_lunch___percentage_ VARCHAR) | SELECT hispanic___percentage_ FROM table_14754471_1 WHERE free_reduced_lunch___percentage_ = "81.4" |
30,352 | <question>: What percentage of free/reduced lunch are there when the hispanic percentage is 3.7? <context>: CREATE TABLE table_14754471_1 (free_reduced_lunch___percentage_ VARCHAR, hispanic___percentage_ VARCHAR) | SELECT free_reduced_lunch___percentage_ FROM table_14754471_1 WHERE hispanic___percentage_ = "3.7" |
30,353 | <question>: Who was the arranger for the track written by Nizar Francis ? <context>: CREATE TABLE table_14778650_1 (arranger VARCHAR, writer VARCHAR) | SELECT arranger FROM table_14778650_1 WHERE writer = "Nizar Francis" |
30,354 | <question>: Who was the writer for the song 4:29 in length? <context>: CREATE TABLE table_14778650_1 (writer VARCHAR, length VARCHAR) | SELECT writer FROM table_14778650_1 WHERE length = "4:29" |
30,355 | <question>: What track number is 4:29 in length? <context>: CREATE TABLE table_14778650_1 (_number VARCHAR, length VARCHAR) | SELECT _number FROM table_14778650_1 WHERE length = "4:29" |
30,356 | <question>: What is the female rank in Karnataka? <context>: CREATE TABLE table_14785903_1 (females_rank VARCHAR, states VARCHAR) | SELECT females_rank FROM table_14785903_1 WHERE states = "Karnataka" |
30,357 | <question>: What is the English title when the original title is Die Qual Der Wahl? <context>: CREATE TABLE table_1481865_1 (title__english_ VARCHAR, title__original_ VARCHAR) | SELECT title__english_ FROM table_1481865_1 WHERE title__original_ = "Die Qual der Wahl" |
30,358 | <question>: What is the episode number where the English title is Pilot? <context>: CREATE TABLE table_1481865_1 (number_of_episode VARCHAR, title__english_ VARCHAR) | SELECT number_of_episode FROM table_1481865_1 WHERE title__english_ = "Pilot" |
30,359 | <question>: What was the original air date for episode number 6? <context>: CREATE TABLE table_1481865_1 (original_air_date VARCHAR, number_of_episode VARCHAR) | SELECT original_air_date FROM table_1481865_1 WHERE number_of_episode = 6 |
30,360 | <question>: What is the original title of season number 3? <context>: CREATE TABLE table_1481865_1 (title__original_ VARCHAR, number_of_season VARCHAR) | SELECT title__original_ FROM table_1481865_1 WHERE number_of_season = 3 |
30,361 | <question>: What municipality where the human development index in the year 2000 was 0.7827? <context>: CREATE TABLE table_1480455_1 (municipality VARCHAR, human_development_index__2000_ VARCHAR) | SELECT municipality FROM table_1480455_1 WHERE human_development_index__2000_ = "0.7827" |
30,362 | <question>: What is the total number of population in the year 2005 where the population density 35.9 (/km 2)? <context>: CREATE TABLE table_1480455_1 (population__2005_ VARCHAR, population_density___km_2__ VARCHAR) | SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = "35.9" |
30,363 | <question>: What is the human development index for the year 2000 where the ingei code is 10? <context>: CREATE TABLE table_1480455_1 (human_development_index__2000_ VARCHAR, inegi_code VARCHAR) | SELECT human_development_index__2000_ FROM table_1480455_1 WHERE inegi_code = 10 |
30,364 | <question>: What is the area (km 2) where the population density (/mk2) is 84.3? <context>: CREATE TABLE table_1480455_1 (area__km_2__ VARCHAR, population_density___km_2__ VARCHAR) | SELECT area__km_2__ FROM table_1480455_1 WHERE population_density___km_2__ = "84.3" |
30,365 | <question>: Name the mandate for list pct 12.39% <context>: CREATE TABLE table_14834801_1 (mandate VARCHAR, list_pct VARCHAR) | SELECT mandate FROM table_14834801_1 WHERE list_pct = "12.39%" |
30,366 | <question>: Name the total number of list votes for 20.95% <context>: CREATE TABLE table_14834801_1 (list_votes VARCHAR, list_pct VARCHAR) | SELECT COUNT(list_votes) FROM table_14834801_1 WHERE list_pct = "20.95%" |
30,367 | <question>: What was the scoring rank for Angela Stanford in 2009? <context>: CREATE TABLE table_14836185_3 (scoring_rank VARCHAR, year VARCHAR) | SELECT scoring_rank FROM table_14836185_3 WHERE year = 2009 |
30,368 | <question>: What was the highest number on money list rank for Angela Stanford's career? <context>: CREATE TABLE table_14836185_3 (money_list_rank INTEGER) | SELECT MAX(money_list_rank) FROM table_14836185_3 |
30,369 | <question>: In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place? <context>: CREATE TABLE table_14836185_3 (scoring_average VARCHAR) | SELECT COUNT(2 AS nd) FROM table_14836185_3 WHERE scoring_average = "71.62" |
30,370 | <question>: Namw the minimum production code for 16.04 million viewers <context>: CREATE TABLE table_14845640_1 (production_code INTEGER, us_viewers__millions_ VARCHAR) | SELECT MIN(production_code) FROM table_14845640_1 WHERE us_viewers__millions_ = "16.04" |
30,371 | <question>: Name the written by for 16.32 million viewers <context>: CREATE TABLE table_14845640_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT written_by FROM table_14845640_1 WHERE us_viewers__millions_ = "16.32" |
30,372 | <question>: What is the highest number of cuts made when her best finish is t4? <context>: CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR) | SELECT MAX(cuts_made) FROM table_14853156_2 WHERE best_finish = "T4" |
30,373 | <question>: How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average? <context>: CREATE TABLE table_14853156_2 (earnings___ VARCHAR, best_finish VARCHAR, scoring_average VARCHAR) | SELECT COUNT(earnings___) AS $__ FROM table_14853156_2 WHERE best_finish = "T2" AND scoring_average = "71.25" |
30,374 | <question>: What is the lowest number of cuts made when her best finish is t4? <context>: CREATE TABLE table_14853156_2 (cuts_made INTEGER, best_finish VARCHAR) | SELECT MIN(cuts_made) FROM table_14853156_2 WHERE best_finish = "T4" |
30,375 | <question>: How many years has she ranked 56 on the money list? <context>: CREATE TABLE table_14853156_2 (year VARCHAR, money_list_rank VARCHAR) | SELECT COUNT(year) FROM table_14853156_2 WHERE money_list_rank = "56" |
30,376 | <question>: What is the lowest number of wins? <context>: CREATE TABLE table_14853156_2 (wins INTEGER) | SELECT MIN(wins) FROM table_14853156_2 |
30,377 | <question>: When steve gomer is the director who is the writer? <context>: CREATE TABLE table_14847258_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_14847258_1 WHERE directed_by = "Steve Gomer" |
30,378 | <question>: 15.03 million u.s viewers seen what episode? <context>: CREATE TABLE table_14847258_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_14847258_1 WHERE us_viewers__millions_ = "15.03" |
30,379 | <question>: Name the most 3 credits <context>: CREATE TABLE table_148535_2 (Id VARCHAR) | SELECT MIN(3 AS _credits) FROM table_148535_2 |
30,380 | <question>: Name the least 2 credits for straight hand <context>: CREATE TABLE table_148535_2 (hand VARCHAR) | SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = "Straight" |
30,381 | <question>: Name the least 2 credits for flush <context>: CREATE TABLE table_148535_2 (hand VARCHAR) | SELECT MIN(2 AS _credits) FROM table_148535_2 WHERE hand = "Flush" |
30,382 | <question>: Name the most 1 credit for three of a kind <context>: CREATE TABLE table_148535_2 (hand VARCHAR) | SELECT MAX(1 AS _credit) FROM table_148535_2 WHERE hand = "Three of a Kind" |
30,383 | <question>: Name the points classification for mark renshaw and team csc <context>: CREATE TABLE table_14856023_18 (points_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | SELECT points_classification FROM table_14856023_18 WHERE general_classification = "Mark Renshaw" AND team_classification = "Team CSC" |
30,384 | <question>: How many episodes were released on DVD in the US on October 13, 2009? <context>: CREATE TABLE table_14855908_3 (episodes VARCHAR, region_1__us_ VARCHAR) | SELECT episodes FROM table_14855908_3 WHERE region_1__us_ = "October 13, 2009" |
30,385 | <question>: How many episodes were put out in Region 4 on March 4, 2010? <context>: CREATE TABLE table_14855908_3 (episodes INTEGER, region_4 VARCHAR) | SELECT MAX(episodes) FROM table_14855908_3 WHERE region_4 = "March 4, 2010" |
30,386 | <question>: How many episodes were released in the season 1 DVD? <context>: CREATE TABLE table_14855908_3 (episodes INTEGER, dvd_name VARCHAR) | SELECT MIN(episodes) FROM table_14855908_3 WHERE dvd_name = "Season 1" |
30,387 | <question>: What was the altitude of the explosion Hardtack Teak? <context>: CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, explosion VARCHAR) | SELECT altitude__km_ FROM table_148578_1 WHERE explosion = "Hardtack Teak" |
30,388 | <question>: What was the altitude of the event on 1962-07-09? <context>: CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, date VARCHAR) | SELECT altitude__km_ FROM table_148578_1 WHERE date = "1962-07-09" |
30,389 | <question>: What was the altitude of the yield of 1.4 megatons? <context>: CREATE TABLE table_148578_1 (altitude__km_ VARCHAR, yield__approximate_ VARCHAR) | SELECT altitude__km_ FROM table_148578_1 WHERE yield__approximate_ = "1.4 megatons" |
30,390 | <question>: What was the yield of the K-4 explosion? <context>: CREATE TABLE table_148578_1 (yield__approximate_ VARCHAR, explosion VARCHAR) | SELECT yield__approximate_ FROM table_148578_1 WHERE explosion = "K-4" |
30,391 | <question>: What explosion had an altitude of 539 km? <context>: CREATE TABLE table_148578_1 (explosion VARCHAR, altitude__km_ VARCHAR) | SELECT explosion FROM table_148578_1 WHERE altitude__km_ = "539" |
30,392 | <question>: List all opponents in the September 23, 1984 game? <context>: CREATE TABLE table_14863869_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_14863869_1 WHERE date = "September 23, 1984" |
30,393 | <question>: What was the score in the game played on December 2, 1984? <context>: CREATE TABLE table_14863869_1 (record VARCHAR, date VARCHAR) | SELECT record FROM table_14863869_1 WHERE date = "December 2, 1984" |
30,394 | <question>: How many scores were there in week 11? <context>: CREATE TABLE table_14863869_1 (record VARCHAR, week VARCHAR) | SELECT COUNT(record) FROM table_14863869_1 WHERE week = 11 |
30,395 | <question>: What is the highest win for the team Nacional? <context>: CREATE TABLE table_14871601_1 (wins INTEGER, team VARCHAR) | SELECT MAX(wins) FROM table_14871601_1 WHERE team = "Nacional" |
30,396 | <question>: What is the smallest conceded value for the team 12 De Octubre? <context>: CREATE TABLE table_14871601_1 (conceded INTEGER, team VARCHAR) | SELECT MIN(conceded) FROM table_14871601_1 WHERE team = "12 de Octubre" |
30,397 | <question>: What is the smallest draws value with 21 points? <context>: CREATE TABLE table_14871601_1 (draws INTEGER, points VARCHAR) | SELECT MIN(draws) FROM table_14871601_1 WHERE points = 21 |
30,398 | <question>: What is the largest loss for the Tacuary team? <context>: CREATE TABLE table_14871601_1 (losses INTEGER, team VARCHAR) | SELECT MAX(losses) FROM table_14871601_1 WHERE team = "Tacuary" |
30,399 | <question>: What is the name of the venue where the opponent scored 51? <context>: CREATE TABLE table_14877831_2 (venue VARCHAR, opponents VARCHAR) | SELECT venue FROM table_14877831_2 WHERE opponents = 51 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.