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