answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT type_of_record FROM table_21436373_8 WHERE date_year = "Tue 11/02/75" | CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR) | What record was set on Tue 11/02/75? |
SELECT type_of_record FROM table_21436373_8 WHERE result_games = "9 games (28,595 avg.)" | CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR) | What record was set when the result/game was equal to 9 games (28,595 avg.) |
SELECT type_of_record FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10" | CREATE TABLE table_21436373_8 (type_of_record VARCHAR, result_games VARCHAR) | What record was set when the result/game was montreal 20 @ ottawa 10? |
SELECT stadium FROM table_21436373_8 WHERE result_games = "Montreal 20 @ Ottawa 10" | CREATE TABLE table_21436373_8 (stadium VARCHAR, result_games VARCHAR) | Which stadium had the result/game montreal 20 @ ottawa 10? |
SELECT date_year FROM table_21436373_5 WHERE type_of_record = "Total attendance-Regular season" | CREATE TABLE table_21436373_5 (date_year VARCHAR, type_of_record VARCHAR) | For what year is the type of record 'total attendance-regular season? |
SELECT type_of_record FROM table_21436373_5 WHERE result_games = "Montreal 31 @ Calgary 32" | CREATE TABLE table_21436373_5 (type_of_record VARCHAR, result_games VARCHAR) | What type of record is the result of the game Montreal 31 @ Calgary 32? |
SELECT date_year FROM table_21436373_5 WHERE attendance = 45010 | CREATE TABLE table_21436373_5 (date_year VARCHAR, attendance VARCHAR) | On what date/s has attendance been 45010? |
SELECT COUNT(attendance) FROM table_21436373_6 WHERE type_of_record = "Pre-season game" | CREATE TABLE table_21436373_6 (attendance VARCHAR, type_of_record VARCHAR) | What is the number of attendance with the pre-season game as the type of record? |
SELECT type_of_record FROM table_21436373_6 WHERE result_games = "9 games (57,144 avg.)" | CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR) | Which type of record has result/games of 9 games (57,144 avg.) |
SELECT result_games FROM table_21436373_6 WHERE date_year = "Sun 11/28/10" | CREATE TABLE table_21436373_6 (result_games VARCHAR, date_year VARCHAR) | What is the result/games of Sun 11/28/10 as the date/year? |
SELECT stadium FROM table_21436373_6 WHERE date_year = "Fri 06/25/82" | CREATE TABLE table_21436373_6 (stadium VARCHAR, date_year VARCHAR) | Which stadium has the date/year of Fri 06/25/82? |
SELECT type_of_record FROM table_21436373_6 WHERE result_games = "B.C. 16 @ Edmonton 22" | CREATE TABLE table_21436373_6 (type_of_record VARCHAR, result_games VARCHAR) | Which type of record has result/games of b.c. 16 @ edmonton 22? |
SELECT MIN(population__2000_) FROM table_2144436_1 WHERE barangay = "Panlicsian" | CREATE TABLE table_2144436_1 (population__2000_ INTEGER, barangay VARCHAR) | What was the populati in 2000 for Panlicsian? |
SELECT MAX(population__2010_) FROM table_2144436_1 WHERE barangay = "Minane" | CREATE TABLE table_2144436_1 (population__2010_ INTEGER, barangay VARCHAR) | What was the population in 2010 for Minane |
SELECT population__2007_ FROM table_2144436_1 WHERE barangay = "Corazon De Jesus" | CREATE TABLE table_2144436_1 (population__2007_ VARCHAR, barangay VARCHAR) | What is the 2007 population for Corazon de Jesus? |
SELECT MAX(population__2010_) FROM table_2144436_1 WHERE population__2000_ = 5720 | CREATE TABLE table_2144436_1 (population__2010_ INTEGER, population__2000_ VARCHAR) | What is the 2010 population when the 2000 population is 5720? |
SELECT rōmaji FROM table_2144389_8 WHERE japanese_translation = "By Your Side ~Hikari's Theme~ (PopUp.Version)" | CREATE TABLE table_2144389_8 (rōmaji VARCHAR, japanese_translation VARCHAR) | Name the romaji by your side ~hikari's theme~ (popup.version) |
SELECT vocalist FROM table_2144389_8 WHERE rōmaji = "Kaze no Messēji (PokaPoka-Version)" | CREATE TABLE table_2144389_8 (vocalist VARCHAR, rōmaji VARCHAR) | Name the vocalist for kaze no messēji (pokapoka-version) |
SELECT MIN(_number) FROM table_2144389_8 WHERE japanese_title = "君のそばで~ヒカリのテーマ~(PopUp.Version)" | CREATE TABLE table_2144389_8 (_number INTEGER, japanese_title VARCHAR) | Name the least number for 君のそばで~ヒカリのテーマ~(popup.version) |
SELECT COUNT(vocalist) FROM table_2144389_8 WHERE japanese_translation = "Which One ~ Is It?" | CREATE TABLE table_2144389_8 (vocalist VARCHAR, japanese_translation VARCHAR) | Name the number of vocalists for which one ~ is it? |
SELECT to_par FROM table_21469545_2 WHERE date = "20 Feb 2005" | CREATE TABLE table_21469545_2 (to_par VARCHAR, date VARCHAR) | Name the to par for 20 feb 2005 |
SELECT COUNT(no) FROM table_21469545_2 WHERE margin_of_victory = "3 strokes" | CREATE TABLE table_21469545_2 (no VARCHAR, margin_of_victory VARCHAR) | Name the number for margin of victory being 3 strokes |
SELECT COUNT(winning_score) FROM table_21469545_2 WHERE date = "8 Feb 2009" | CREATE TABLE table_21469545_2 (winning_score VARCHAR, date VARCHAR) | Name the winning score for 8 feb 2009 |
SELECT publisher FROM table_21458142_1 WHERE genre = "Pet-raising simulator" | CREATE TABLE table_21458142_1 (publisher VARCHAR, genre VARCHAR) | Who published the title in the pet-raising simulator genre? |
SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND title = "Mario Kart DS" | CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, title VARCHAR) | What's the sales breakdown for Nintendo's Mario Kart DS? |
SELECT total_copies_sold FROM table_21458142_1 WHERE release_date = "October 23, 2008" | CREATE TABLE table_21458142_1 (total_copies_sold VARCHAR, release_date VARCHAR) | How many copies were sold of the game released on october 23, 2008? |
SELECT sales_breakdown FROM table_21458142_1 WHERE publisher = "Nintendo" AND release_date = "May 15, 2006" | CREATE TABLE table_21458142_1 (sales_breakdown VARCHAR, publisher VARCHAR, release_date VARCHAR) | What's the sales breakdown of the Nintendo game released on May 15, 2006? |
SELECT MAX(races) FROM table_21457754_2 | CREATE TABLE table_21457754_2 (races INTEGER) | Name the most races |
SELECT MAX(rr1_pts) FROM table_21457754_2 | CREATE TABLE table_21457754_2 (rr1_pts INTEGER) | Name the most rr 1 pts |
SELECT COUNT(total_pts) FROM table_21457754_2 WHERE team_name = "GBR Challenge" | CREATE TABLE table_21457754_2 (total_pts VARCHAR, team_name VARCHAR) | Name the number of total pts for gbr challenge |
SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = "Chicago, USA" | CREATE TABLE table_2146364_2 (second_place VARCHAR, city_ VARCHAR, _nation VARCHAR) | What is the total number of second place finishes when the city & nation was Chicago, USA? |
SELECT MIN(third_place) FROM table_2146364_2 WHERE city_ & _nation = "Vancouver, Canada" | CREATE TABLE table_2146364_2 (third_place INTEGER, city_ VARCHAR, _nation VARCHAR) | What is the total number of third place finishes when the city & nation was Vancouver, Canada? |
SELECT MIN(third_place) FROM table_2146364_2 | CREATE TABLE table_2146364_2 (third_place INTEGER) | What is the smallest third place finish? |
SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 9, 1865" | CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR) | What change caused a change of staff in March 9, 1865? |
SELECT successor FROM table_2147588_3 WHERE vacator = "New seat" | CREATE TABLE table_2147588_3 (successor VARCHAR, vacator VARCHAR) | Who was the successor for the new seat? |
SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 15, 1865" | CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR) | What was the reason for change in staff in formal installations on March 15, 1865? |
SELECT vacator FROM table_2147588_4 WHERE successor = "Nathaniel G. Taylor (U)" | CREATE TABLE table_2147588_4 (vacator VARCHAR, successor VARCHAR) | When nathaniel g. taylor (u) is the successor what is the vacator? |
SELECT district FROM table_2147588_4 WHERE successor = "William B. Campbell (U)" | CREATE TABLE table_2147588_4 (district VARCHAR, successor VARCHAR) | When william b. campbell (u) is the successor what is the district? |
SELECT date_successor_seated FROM table_2147588_4 WHERE vacator = "James Brooks (D)" | CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, vacator VARCHAR) | When james brooks (d) is the vacator what is the date the successor was seated? |
SELECT date_successor_seated FROM table_2147588_4 WHERE successor = "John W. Leftwich (UU)" | CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, successor VARCHAR) | When john w. leftwich (uu) is the successor what is the date the successor was seated? |
SELECT successor FROM table_2147588_4 WHERE district = "New York 8th" | CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR) | When new york 8th is teh district who is the successor? |
SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = "20" | CREATE TABLE table_21489362_2 (rr3_pts INTEGER, rr4_pts VARCHAR) | When 20 is the rr4 points what is the lowest rr3 points? |
SELECT rr4_pts FROM table_21489362_2 WHERE total_pts = 70 | CREATE TABLE table_21489362_2 (rr4_pts VARCHAR, total_pts VARCHAR) | When 70 is the total points what is the rr4 points? |
SELECT won FROM table_21489362_2 WHERE rr1_pts = 3 | CREATE TABLE table_21489362_2 (won VARCHAR, rr1_pts VARCHAR) | When 3 is the rr1 points what is won score? |
SELECT rr1_pts FROM table_21489362_2 WHERE team_name = "Spanish Challenge" | CREATE TABLE table_21489362_2 (rr1_pts VARCHAR, team_name VARCHAR) | When spanish challenge is the team name what are the rr1 points? |
SELECT COUNT(innings) FROM table_21486890_1 WHERE runs_scored = 5088 | CREATE TABLE table_21486890_1 (innings VARCHAR, runs_scored VARCHAR) | Name the innings for 5088 runs scored |
SELECT MAX(matches) FROM table_21486890_1 WHERE name = "Mark Taylor Category:Articles with hCards" | CREATE TABLE table_21486890_1 (matches INTEGER, name VARCHAR) | Name the matches for mark taylor category:articles with hcards |
SELECT MAX(runs_scored) FROM table_21486890_1 | CREATE TABLE table_21486890_1 (runs_scored INTEGER) | Name the most runs scored |
SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44 | CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR) | Name the least matches for not out being 44 |
SELECT nation FROM table_2150068_1 WHERE satellite = "PAGEOS 1" | CREATE TABLE table_2150068_1 (nation VARCHAR, satellite VARCHAR) | What nation was Pageos 1 from? |
SELECT launch_date__utc_ FROM table_2150068_1 WHERE usage = "ado" AND mass_kg_ = "4" AND diameter_m_ = "3" | CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, diameter_m_ VARCHAR, usage VARCHAR, mass_kg_ VARCHAR) | What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter? |
SELECT decay FROM table_2150068_1 WHERE mass_kg_ = "180" | CREATE TABLE table_2150068_1 (decay VARCHAR, mass_kg_ VARCHAR) | What was the decay for the sattelite that was 180 kg? |
SELECT nssdc_id FROM table_2150068_1 WHERE satellite = "Echo 1" | CREATE TABLE table_2150068_1 (nssdc_id VARCHAR, satellite VARCHAR) | What is the nssdc id for Echo 1? |
SELECT launch_date__utc_ FROM table_2150068_1 WHERE nssdc_id = "1960-009A" | CREATE TABLE table_2150068_1 (launch_date__utc_ VARCHAR, nssdc_id VARCHAR) | What is the launch date for the sattelite with a nssdc id of 1960-009a? |
SELECT decay FROM table_2150068_1 WHERE nssdc_id = "1990-081C" | CREATE TABLE table_2150068_1 (decay VARCHAR, nssdc_id VARCHAR) | What is the decay for the sattelite with an id that is 1990-081c? |
SELECT COUNT(song_title) FROM table_21500850_1 WHERE artist = "Ratt" | CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR) | How many song titles belong to the artist Ratt? |
SELECT original_game FROM table_21500850_1 WHERE artist = "Lynyrd Skynyrd" | CREATE TABLE table_21500850_1 (original_game VARCHAR, artist VARCHAR) | What is every original game for the artist Lynyrd Skynyrd? |
SELECT song_title FROM table_21500850_1 WHERE genre = "Rock" AND original_game = "Guitar Hero" AND artist = "Queens of the Stone Age" | CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR, genre VARCHAR, original_game VARCHAR) | What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age? |
SELECT song_title FROM table_21500850_1 WHERE year = 2007 | CREATE TABLE table_21500850_1 (song_title VARCHAR, year VARCHAR) | What is every song title for 2007? |
SELECT song_choice FROM table_21501511_1 WHERE week__number = "Top 13" | CREATE TABLE table_21501511_1 (song_choice VARCHAR, week__number VARCHAR) | What was Lambert's song choice in the top 13? |
SELECT order__number FROM table_21501511_1 WHERE week__number = "Top 11" | CREATE TABLE table_21501511_1 (order__number VARCHAR, week__number VARCHAR) | What order did Lambert perform in the top 11? |
SELECT week__number FROM table_21501511_1 WHERE theme = "Disco" | CREATE TABLE table_21501511_1 (week__number VARCHAR, theme VARCHAR) | What week was themed disco? |
SELECT week__number FROM table_21501564_1 WHERE original_artist = "Sara Bareilles" | CREATE TABLE table_21501564_1 (week__number VARCHAR, original_artist VARCHAR) | What week #(s featured sara bareilles as the original artist? |
SELECT week__number FROM table_21501564_1 WHERE theme = "First Solo" | CREATE TABLE table_21501564_1 (week__number VARCHAR, theme VARCHAR) | What week # featured first solo as the theme? |
SELECT COUNT(theme) FROM table_21501564_1 WHERE original_artist = "Duffy" | CREATE TABLE table_21501564_1 (theme VARCHAR, original_artist VARCHAR) | How many weeks featured duffy as the original artist? |
SELECT original_artist FROM table_21501564_1 WHERE result = "Selected" | CREATE TABLE table_21501564_1 (original_artist VARCHAR, result VARCHAR) | Who was the originally artist when Jasmine Murray was selected? |
SELECT song_choice FROM table_21501565_1 WHERE theme = "Year They Were Born" | CREATE TABLE table_21501565_1 (song_choice VARCHAR, theme VARCHAR) | With theme the Year They Were Born, what is the song of choice? |
SELECT original_artist FROM table_21501565_1 WHERE order__number = "7" AND theme = "Motown" | CREATE TABLE table_21501565_1 (original_artist VARCHAR, order__number VARCHAR, theme VARCHAR) | With order number 7 and the theme is Motown, who were the original artists? |
SELECT COUNT(order__number) FROM table_21501565_1 WHERE original_artist = "Bette Midler" | CREATE TABLE table_21501565_1 (order__number VARCHAR, original_artist VARCHAR) | With an original artist names Bette Midler, what is the order number? |
SELECT week__number FROM table_21501565_1 WHERE original_artist = "Tina Turner" | CREATE TABLE table_21501565_1 (week__number VARCHAR, original_artist VARCHAR) | With original artist of Tina Turner, what is the week number? |
SELECT original_artist FROM table_21501565_1 WHERE theme = "N/A" | CREATE TABLE table_21501565_1 (original_artist VARCHAR, theme VARCHAR) | Who is the original artist with a theme of N/A? |
SELECT team FROM table_2150776_1 WHERE date = "June 16" AND driver = "Jeff Gordon" | CREATE TABLE table_2150776_1 (team VARCHAR, date VARCHAR, driver VARCHAR) | Name the team for june 16 jeff gordon |
SELECT driver FROM table_2150776_1 WHERE laps = "200" AND year = "1997" | CREATE TABLE table_2150776_1 (driver VARCHAR, laps VARCHAR, year VARCHAR) | Name the driver for 200 laps 1997 |
SELECT team FROM table_2150776_1 WHERE driver = "Ricky Rudd" | CREATE TABLE table_2150776_1 (team VARCHAR, driver VARCHAR) | Name the team for ricky rudd |
SELECT ranking FROM table_21515673_2 WHERE rr2_pts = 4 | CREATE TABLE table_21515673_2 (ranking VARCHAR, rr2_pts VARCHAR) | What is the rank when RR2 has 4 points? |
SELECT COUNT(rr1_pts) FROM table_21515673_2 WHERE team_name = "Swedish America's Cup Challenge" | CREATE TABLE table_21515673_2 (rr1_pts VARCHAR, team_name VARCHAR) | How many points does Swedish America's Cup Challenge have for rr1? |
SELECT senior_us_senator FROM table_21531764_2 WHERE governor = "D. Patrick" | CREATE TABLE table_21531764_2 (senior_us_senator VARCHAR, governor VARCHAR) | Who was the senior US senator in the state whose governor was D. Patrick? |
SELECT lower_house_majority FROM table_21531764_2 WHERE senior_us_senator = "J. Shaheen" | CREATE TABLE table_21531764_2 (lower_house_majority VARCHAR, senior_us_senator VARCHAR) | What's the lower house majority in the state whose Senior senator is J. Shaheen? |
SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:58" | CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR) | Who is every name for time(cet) of 09:58? |
SELECT time__cet_ FROM table_21536557_2 WHERE name = "Lillehammer 2" | CREATE TABLE table_21536557_2 (time__cet_ VARCHAR, name VARCHAR) | What is every time(cet) for the name of Lillehammer 2? |
SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:03" | CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR) | Who is every name for time(cet) of 09:03? |
SELECT day FROM table_21536557_2 WHERE stage = "SS11" | CREATE TABLE table_21536557_2 (day VARCHAR, stage VARCHAR) | Which days have a stage of ss11? |
SELECT time__cet_ FROM table_21536557_2 WHERE time = "5:04.8" | CREATE TABLE table_21536557_2 (time__cet_ VARCHAR, time VARCHAR) | What is every time(cet) for a time of 5:04.8? |
SELECT COUNT(caliber) FROM table_21538523_1 WHERE type = "LB/RN" | CREATE TABLE table_21538523_1 (caliber VARCHAR, type VARCHAR) | How many calibers require the type LB/RN? |
SELECT class FROM table_21538523_1 WHERE type = "FJ/RN/SC" | CREATE TABLE table_21538523_1 (class VARCHAR, type VARCHAR) | Type FJ/RN/SC is associated with what class? |
SELECT type FROM table_21538523_1 WHERE caliber = ".44 Magnum" | CREATE TABLE table_21538523_1 (type VARCHAR, caliber VARCHAR) | What type of glazing will stop a .44 magnum? |
SELECT MIN(shots) FROM table_21538523_1 | CREATE TABLE table_21538523_1 (shots INTEGER) | What is the fewest shots a glazing can handle? |
SELECT range__m_ FROM table_21538523_1 WHERE type = "FJ/PB/SCP" | CREATE TABLE table_21538523_1 (range__m_ VARCHAR, type VARCHAR) | What range does type FJ/PB/SCP work at? |
SELECT drivetrain FROM table_21530474_1 WHERE engine_code = "2UR-FSE" | CREATE TABLE table_21530474_1 (drivetrain VARCHAR, engine_code VARCHAR) | Name the drivetrain for 2ur-fse |
SELECT region_s_ FROM table_21530474_1 WHERE chassis_code = "USF45" | CREATE TABLE table_21530474_1 (region_s_ VARCHAR, chassis_code VARCHAR) | Name the regions for usf45 |
SELECT model_no FROM table_21530474_1 WHERE chassis_code = "USF46" | CREATE TABLE table_21530474_1 (model_no VARCHAR, chassis_code VARCHAR) | Name the model number for usf46 |
SELECT drivetrain FROM table_21530474_1 WHERE engine_code = "1UR-FSE" AND chassis_code = "USF41" | CREATE TABLE table_21530474_1 (drivetrain VARCHAR, engine_code VARCHAR, chassis_code VARCHAR) | Name the drivetrain for 1ur-fse for usf41 |
SELECT october_2012 FROM table_21531764_1 WHERE october_2010 = "9.1" | CREATE TABLE table_21531764_1 (october_2012 VARCHAR, october_2010 VARCHAR) | For the area which was 9.1 in October 2010, what is the figure for October 2012? |
SELECT employment_area FROM table_21531764_1 WHERE october_2010 = "5.7" | CREATE TABLE table_21531764_1 (employment_area VARCHAR, october_2010 VARCHAR) | Where is the rate 5.7 in October 2010? |
SELECT original_air_date FROM table_21550870_1 WHERE us_viewers__million_ = "9.16" | CREATE TABLE table_21550870_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) | Name the original air date for 9.16 viewers |
SELECT COUNT(production_code) FROM table_21550870_1 WHERE written_by = "Steve Cohen & Andrew Dettman" | CREATE TABLE table_21550870_1 (production_code VARCHAR, written_by VARCHAR) | Name the total number of production code for episode by steve cohen & andrew dettman |
SELECT population__millions, _2011_ FROM table_2155836_1 WHERE hdi__2011_ = "0.453 (low)" | CREATE TABLE table_2155836_1 (population__millions VARCHAR, _2011_ VARCHAR, hdi__2011_ VARCHAR) | What is the population in millions for 2011 where the HDI for 2011 is 0.453 (low)? |
SELECT population__millions, _2011_ FROM table_2155836_1 WHERE gdp__nominal___billions_usd_ = "4" | CREATE TABLE table_2155836_1 (population__millions VARCHAR, _2011_ VARCHAR, gdp__nominal___billions_usd_ VARCHAR) | What is the population in millions for 2011 where the GDP (nominal) (billions USD) is 4? |
SELECT hdi__2011_ FROM table_2155836_1 WHERE country = "Tunisia" | CREATE TABLE table_2155836_1 (hdi__2011_ VARCHAR, country VARCHAR) | What is the HDI for 2011 in Tunisia? |
SELECT MIN(gdp__ppp___usd), _per_capita_ FROM table_2155836_1 WHERE country = "Algeria" | CREATE TABLE table_2155836_1 (_per_capita_ VARCHAR, gdp__ppp___usd INTEGER, country VARCHAR) | What is the GDP (PPP) (USD, per capita) for Algeria? |
Subsets and Splits