instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: Who wrote the episode "The Dream Lover", which was viewed by 3.96 million viewers? | The relevant table was constructed using the following SQL : CREATE TABLE table_17467578_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_17467578_1 WHERE us_viewers__million_ = "3.96" |
Write a SQL query that answers the following question: What is the original air date of episode 8? Answer: Dec. 21, 2006 | The relevant table was constructed using the following SQL : CREATE TABLE table_17467578_1 (original_airdate VARCHAR, episode__number VARCHAR) | SELECT COUNT(original_airdate) FROM table_17467578_1 WHERE episode__number = 8 |
Write a SQL query that answers the following question: Who wrote the episode "The Cold Turkey", which was viewed by 3.73 million viewers? | The relevant table was constructed using the following SQL : CREATE TABLE table_17467578_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_17467578_1 WHERE us_viewers__million_ = "3.73" |
Write a SQL query that answers the following question: Who wrote episode 11? | The relevant table was constructed using the following SQL : CREATE TABLE table_17467578_1 (written_by VARCHAR, episode__number VARCHAR) | SELECT written_by FROM table_17467578_1 WHERE episode__number = 11 |
Write a SQL query that answers the following question: What was the original airdate of the episode "The Cold Turkey", which was viewed by 3.73 million viewers? | The relevant table was constructed using the following SQL : CREATE TABLE table_17467578_1 (original_airdate VARCHAR, us_viewers__million_ VARCHAR) | SELECT original_airdate FROM table_17467578_1 WHERE us_viewers__million_ = "3.73" |
Write a SQL query that answers the following question: Name the class for boten | The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_9 (class VARCHAR, part_3 VARCHAR) | SELECT class FROM table_1745843_9 WHERE part_3 = "boten" |
Write a SQL query that answers the following question: Name the part 3 for treffen | The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_9 (part_3 VARCHAR, part_1 VARCHAR) | SELECT part_3 FROM table_1745843_9 WHERE part_1 = "treffen" |
Write a SQL query that answers the following question: Name the part one for to give | The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_9 (part_1 VARCHAR, verb_meaning VARCHAR) | SELECT part_1 FROM table_1745843_9 WHERE verb_meaning = "to give" |
Write a SQL query that answers the following question: Name the class for schliefen | The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_9 (class VARCHAR, part_3 VARCHAR) | SELECT class FROM table_1745843_9 WHERE part_3 = "schliefen" |
Write a SQL query that answers the following question: Name the verb meaning for half drosch | The relevant table was constructed using the following SQL : CREATE TABLE table_1745843_9 (verb_meaning VARCHAR, part_2 VARCHAR) | SELECT verb_meaning FROM table_1745843_9 WHERE part_2 = "half drosch" |
Write a SQL query that answers the following question: If the product code is 2t6267, who was the director? | The relevant table was constructed using the following SQL : CREATE TABLE table_17467447_1 (directed_by VARCHAR, production_code VARCHAR) | SELECT directed_by FROM table_17467447_1 WHERE production_code = "2T6267" |
Write a SQL query that answers the following question: What is the air date when the U.S. viewers was 5.50 million? | The relevant table was constructed using the following SQL : CREATE TABLE table_17467447_1 (original_airdate VARCHAR, us_viewers__million_ VARCHAR) | SELECT original_airdate FROM table_17467447_1 WHERE us_viewers__million_ = "5.50" |
Write a SQL query that answers the following question: Who were the writers for production code 2t6268? | The relevant table was constructed using the following SQL : CREATE TABLE table_17467447_1 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_17467447_1 WHERE production_code = "2T6268" |
Write a SQL query that answers the following question: Name the number of builders for number 96 | The relevant table was constructed using the following SQL : CREATE TABLE table_1748444_1 (builder VARCHAR, number VARCHAR) | SELECT COUNT(builder) FROM table_1748444_1 WHERE number = "96" |
Write a SQL query that answers the following question: Name the builder for date built is january 1910 | The relevant table was constructed using the following SQL : CREATE TABLE table_1748444_1 (builder VARCHAR, date_built VARCHAR) | SELECT builder FROM table_1748444_1 WHERE date_built = "January 1910" |
Write a SQL query that answers the following question: Name the disposition for date built is march 1909 | The relevant table was constructed using the following SQL : CREATE TABLE table_1748444_1 (disposition VARCHAR, date_built VARCHAR) | SELECT disposition FROM table_1748444_1 WHERE date_built = "March 1909" |
Write a SQL query that answers the following question: What is the title of episode number 96 in the series? | The relevant table was constructed using the following SQL : CREATE TABLE table_17482534_1 (title VARCHAR, no_in_series VARCHAR) | SELECT title FROM table_17482534_1 WHERE no_in_series = "96" |
Write a SQL query that answers the following question: What number in season is the episode directed by Gene Stupnitsky? | The relevant table was constructed using the following SQL : CREATE TABLE table_17482534_1 (no_in_season VARCHAR, directed_by VARCHAR) | SELECT no_in_season FROM table_17482534_1 WHERE directed_by = "Gene Stupnitsky" |
Write a SQL query that answers the following question: How many viewers did the episode written by Warren Lieberstein & Halsted Sullivan have? | The relevant table was constructed using the following SQL : CREATE TABLE table_17482534_1 (us_viewers__millions_ VARCHAR, written_by VARCHAR) | SELECT us_viewers__millions_ FROM table_17482534_1 WHERE written_by = "Warren Lieberstein & Halsted Sullivan" |
Write a SQL query that answers the following question: How many writers are listed for the episode with a production code of 5008? | The relevant table was constructed using the following SQL : CREATE TABLE table_17482534_1 (written_by VARCHAR, production_code VARCHAR) | SELECT COUNT(written_by) FROM table_17482534_1 WHERE production_code = "5008" |
Write a SQL query that answers the following question: What number in the series are the episodes with production code 5016/5017? | The relevant table was constructed using the following SQL : CREATE TABLE table_17482534_1 (no_in_series VARCHAR, production_code VARCHAR) | SELECT no_in_series FROM table_17482534_1 WHERE production_code = "5016/5017" |
Write a SQL query that answers the following question: How many locations have the call signs dxjp-fm? | The relevant table was constructed using the following SQL : CREATE TABLE table_17487395_1 (location VARCHAR, callsign VARCHAR) | SELECT COUNT(location) FROM table_17487395_1 WHERE callsign = "DXJP-FM" |
Write a SQL query that answers the following question: What is the call sign of the station with the frequency of 90.3mhz | The relevant table was constructed using the following SQL : CREATE TABLE table_17487395_1 (callsign VARCHAR, frequency VARCHAR) | SELECT callsign FROM table_17487395_1 WHERE frequency = "90.3MHz" |
Write a SQL query that answers the following question: What is the call sign for the station that uses the branding, mom's radio 101.5 tacloban? | The relevant table was constructed using the following SQL : CREATE TABLE table_17487395_1 (callsign VARCHAR, branding VARCHAR) | SELECT callsign FROM table_17487395_1 WHERE branding = "Mom's Radio 101.5 Tacloban" |
Write a SQL query that answers the following question: What is the branding for stations located in Cebu? | The relevant table was constructed using the following SQL : CREATE TABLE table_17487395_1 (branding VARCHAR, location VARCHAR) | SELECT branding FROM table_17487395_1 WHERE location = "Cebu" |
Write a SQL query that answers the following question: Which eagle riders whose ova (harmony gold dub) is dr. kozaburo nambu? | The relevant table was constructed using the following SQL : CREATE TABLE table_17480471_3 (eagle_riders VARCHAR, ova__harmony_gold_dub_ VARCHAR) | SELECT eagle_riders FROM table_17480471_3 WHERE ova__harmony_gold_dub_ = "Dr. Kozaburo Nambu" |
Write a SQL query that answers the following question: Which battle of the planets where ova (harmony gold dub) is solaris? | The relevant table was constructed using the following SQL : CREATE TABLE table_17480471_3 (battle_of_the_planets VARCHAR, ova__harmony_gold_dub_ VARCHAR) | SELECT battle_of_the_planets FROM table_17480471_3 WHERE ova__harmony_gold_dub_ = "Solaris" |
Write a SQL query that answers the following question: Which eagle riders have battle of the planets as zoltar? | The relevant table was constructed using the following SQL : CREATE TABLE table_17480471_3 (eagle_riders VARCHAR, battle_of_the_planets VARCHAR) | SELECT eagle_riders FROM table_17480471_3 WHERE battle_of_the_planets = "Zoltar" |
Write a SQL query that answers the following question: Which gatchaman has eagle riders as lukan? | The relevant table was constructed using the following SQL : CREATE TABLE table_17480471_3 (gatchaman VARCHAR, eagle_riders VARCHAR) | SELECT gatchaman FROM table_17480471_3 WHERE eagle_riders = "Lukan" |
Write a SQL query that answers the following question: What eagle riders where ova (harmony gold dub) is lord zortek? | The relevant table was constructed using the following SQL : CREATE TABLE table_17480471_3 (eagle_riders VARCHAR, ova__harmony_gold_dub_ VARCHAR) | SELECT eagle_riders FROM table_17480471_3 WHERE ova__harmony_gold_dub_ = "Lord Zortek" |
Write a SQL query that answers the following question: What pregame host was on espn and had taylor twellman color commentating? | The relevant table was constructed using the following SQL : CREATE TABLE table_17516922_1 (pregame_host VARCHAR, network VARCHAR, color_commentator VARCHAR) | SELECT pregame_host FROM table_17516922_1 WHERE network = "ESPN" AND color_commentator = "Taylor Twellman" |
Write a SQL query that answers the following question: What pregame analyst(s) had rob stone and monica gonzalez as sideline reporters and were on tsn2? | The relevant table was constructed using the following SQL : CREATE TABLE table_17516922_1 (pregame_analysts VARCHAR, sideline_reporters VARCHAR, network VARCHAR) | SELECT pregame_analysts FROM table_17516922_1 WHERE sideline_reporters = "Rob Stone and Monica Gonzalez" AND network = "TSN2" |
Write a SQL query that answers the following question: What color commentator(s) were in 2010? | The relevant table was constructed using the following SQL : CREATE TABLE table_17516922_1 (color_commentator VARCHAR, year VARCHAR) | SELECT color_commentator FROM table_17516922_1 WHERE year = 2010 |
Write a SQL query that answers the following question: What is the last year that had sideline reporters rob stone and monica gonzalez? | The relevant table was constructed using the following SQL : CREATE TABLE table_17516922_1 (year INTEGER, sideline_reporters VARCHAR) | SELECT MAX(year) FROM table_17516922_1 WHERE sideline_reporters = "Rob Stone and Monica Gonzalez" |
Write a SQL query that answers the following question: Who had the play-by-play on espn with sideline reporter monica gonzalez? | The relevant table was constructed using the following SQL : CREATE TABLE table_17516922_1 (play_by_play VARCHAR, network VARCHAR, sideline_reporters VARCHAR) | SELECT play_by_play FROM table_17516922_1 WHERE network = "ESPN" AND sideline_reporters = "Monica Gonzalez" |
Write a SQL query that answers the following question: What was the name of race #28? | The relevant table was constructed using the following SQL : CREATE TABLE table_1749567_2 (name VARCHAR, number VARCHAR) | SELECT name FROM table_1749567_2 WHERE number = 28 |
Write a SQL query that answers the following question: The Eyserweg race was which race #? | The relevant table was constructed using the following SQL : CREATE TABLE table_1749567_2 (number INTEGER, name VARCHAR) | SELECT MAX(number) FROM table_1749567_2 WHERE name = "Eyserweg" |
Write a SQL query that answers the following question: Which race had an average climb of 40%? | The relevant table was constructed using the following SQL : CREATE TABLE table_1749567_2 (location VARCHAR, average_climb___percentage_ VARCHAR) | SELECT location FROM table_1749567_2 WHERE average_climb___percentage_ = 40 |
Write a SQL query that answers the following question: The Keutenberg race had what race length? | The relevant table was constructed using the following SQL : CREATE TABLE table_1749567_2 (length__in_m_ INTEGER, name VARCHAR) | SELECT MAX(length__in_m_) FROM table_1749567_2 WHERE name = "Keutenberg" |
Write a SQL query that answers the following question: In the Champions league, what is the Minimum | The relevant table was constructed using the following SQL : CREATE TABLE table_17505751_5 (Champions INTEGER) | SELECT MIN(Champions) AS league FROM table_17505751_5 |
Write a SQL query that answers the following question: In the Champions league is the forward position smaller than 6.0 | The relevant table was constructed using the following SQL : CREATE TABLE table_17505751_5 (Champions VARCHAR, position VARCHAR, league VARCHAR) | SELECT COUNT(Champions) AS league FROM table_17505751_5 WHERE position = "Forward" AND league < 6.0 |
Write a SQL query that answers the following question: when the total is 8 and copa del rey is 0 what is the minimum league | The relevant table was constructed using the following SQL : CREATE TABLE table_17505751_5 (league INTEGER, total VARCHAR, copa_del_rey VARCHAR) | SELECT MIN(league) FROM table_17505751_5 WHERE total = 8 AND copa_del_rey = 0 |
Write a SQL query that answers the following question: when the position is forward and the league is 5 what number is the Champion league | The relevant table was constructed using the following SQL : CREATE TABLE table_17505751_5 (Champions VARCHAR, league VARCHAR, position VARCHAR) | SELECT COUNT(Champions) AS league FROM table_17505751_5 WHERE league = 5 AND position = "Forward" |
Write a SQL query that answers the following question: if p is bigger than 4.0 what is total number | The relevant table was constructed using the following SQL : CREATE TABLE table_17505751_5 (total VARCHAR, p INTEGER) | SELECT COUNT(total) FROM table_17505751_5 WHERE p > 4.0 |
Write a SQL query that answers the following question: What was the 2008 election status when glenn nye was the running democrat? | The relevant table was constructed using the following SQL : CREATE TABLE table_17503169_1 (democratic VARCHAR) | SELECT 2008 AS _status FROM table_17503169_1 WHERE democratic = "Glenn Nye" |
Write a SQL query that answers the following question: Who was the republican candidate in the race with incumbent thelma drake? | The relevant table was constructed using the following SQL : CREATE TABLE table_17503169_1 (republican VARCHAR, incumbent VARCHAR) | SELECT republican FROM table_17503169_1 WHERE incumbent = "Thelma Drake" |
Write a SQL query that answers the following question: How many districts had republican Bob Goodlatte as a candidate? | The relevant table was constructed using the following SQL : CREATE TABLE table_17503169_1 (district VARCHAR, republican VARCHAR) | SELECT COUNT(district) FROM table_17503169_1 WHERE republican = "Bob Goodlatte" |
Write a SQL query that answers the following question: Who was the democratic candidate when the republican was frank wolf? | The relevant table was constructed using the following SQL : CREATE TABLE table_17503169_1 (democratic VARCHAR, republican VARCHAR) | SELECT democratic FROM table_17503169_1 WHERE republican = "Frank Wolf" |
Write a SQL query that answers the following question: How many won when points against is 410? | The relevant table was constructed using the following SQL : CREATE TABLE table_17510803_2 (won VARCHAR, points_against VARCHAR) | SELECT COUNT(won) FROM table_17510803_2 WHERE points_against = "410" |
Write a SQL query that answers the following question: How many bonus points are there when points for is 385? | The relevant table was constructed using the following SQL : CREATE TABLE table_17510803_2 (bonus_points VARCHAR, points_for VARCHAR) | SELECT bonus_points FROM table_17510803_2 WHERE points_for = "385" |
Write a SQL query that answers the following question: How many clubs have 62 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_17510803_2 (club VARCHAR, points VARCHAR) | SELECT COUNT(club) FROM table_17510803_2 WHERE points = "62" |
Write a SQL query that answers the following question: How many bonus points were won by 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_17510803_2 (bonus_points VARCHAR, won VARCHAR) | SELECT bonus_points FROM table_17510803_2 WHERE won = "5" |
Write a SQL query that answers the following question: How many have been played for 362 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_17510803_2 (played VARCHAR, points_for VARCHAR) | SELECT played FROM table_17510803_2 WHERE points_for = "362" |
Write a SQL query that answers the following question: How many points against have a lose of 13? | The relevant table was constructed using the following SQL : CREATE TABLE table_17510803_2 (points_against VARCHAR, lost VARCHAR) | SELECT points_against FROM table_17510803_2 WHERE lost = "13" |
Write a SQL query that answers the following question: What is the highest possible level? | The relevant table was constructed using the following SQL : CREATE TABLE table_1751142_2 (level INTEGER) | SELECT MAX(level) FROM table_1751142_2 |
Write a SQL query that answers the following question: What is the shuttle time for the level where the speed is 15.5 km/h? | The relevant table was constructed using the following SQL : CREATE TABLE table_1751142_2 (shuttle_time__seconds_ VARCHAR, speed__km_h_ VARCHAR) | SELECT shuttle_time__seconds_ FROM table_1751142_2 WHERE speed__km_h_ = "15.5" |
Write a SQL query that answers the following question: What is the fewest number of shuttles where the shuttle time is 6.55 seconds? | The relevant table was constructed using the following SQL : CREATE TABLE table_1751142_2 (shuttles INTEGER, shuttle_time__seconds_ VARCHAR) | SELECT MIN(shuttles) FROM table_1751142_2 WHERE shuttle_time__seconds_ = "6.55" |
Write a SQL query that answers the following question: What is the distance (in meters) when the shuttle time is 6.86 seconds? | The relevant table was constructed using the following SQL : CREATE TABLE table_1751142_2 (distance__m_ INTEGER, shuttle_time__seconds_ VARCHAR) | SELECT MIN(distance__m_) FROM table_1751142_2 WHERE shuttle_time__seconds_ = "6.86" |
Write a SQL query that answers the following question: How many 3rd ru does Costa Rica have? | The relevant table was constructed using the following SQL : CREATE TABLE table_17522854_6 (country VARCHAR) | SELECT MAX(3 AS rd_ru) FROM table_17522854_6 WHERE country = "Costa Rica" |
Write a SQL query that answers the following question: How many 3rd ru does Canada have? | The relevant table was constructed using the following SQL : CREATE TABLE table_17522854_6 (country VARCHAR) | SELECT COUNT(3 AS rd_ru) FROM table_17522854_6 WHERE country = "Canada" |
Write a SQL query that answers the following question: What is the least number of miss united continents? | The relevant table was constructed using the following SQL : CREATE TABLE table_17522854_6 (miss_united_continent INTEGER) | SELECT MIN(miss_united_continent) FROM table_17522854_6 |
Write a SQL query that answers the following question: How many different lead margins were stated in the poll administered on September 11, 2008? | The relevant table was constructed using the following SQL : CREATE TABLE table_17538810_10 (lead_margin VARCHAR, dates_administered VARCHAR) | SELECT COUNT(lead_margin) FROM table_17538810_10 WHERE dates_administered = "September 11, 2008" |
Write a SQL query that answers the following question: Name the common name for rhampholeon spectrum | The relevant table was constructed using the following SQL : CREATE TABLE table_175442_1 (common_name VARCHAR, scientific_name VARCHAR) | SELECT common_name FROM table_175442_1 WHERE scientific_name = "Rhampholeon spectrum" |
Write a SQL query that answers the following question: Name the scientific name for veiled chameleon | The relevant table was constructed using the following SQL : CREATE TABLE table_175442_1 (scientific_name VARCHAR, common_name VARCHAR) | SELECT scientific_name FROM table_175442_1 WHERE common_name = "Veiled chameleon" |
Write a SQL query that answers the following question: Name the common name for furcifer pardalis | The relevant table was constructed using the following SQL : CREATE TABLE table_175442_1 (common_name VARCHAR, scientific_name VARCHAR) | SELECT common_name FROM table_175442_1 WHERE scientific_name = "Furcifer pardalis" |
Write a SQL query that answers the following question: Name the number of color for furcifer pardalis | The relevant table was constructed using the following SQL : CREATE TABLE table_175442_1 (color VARCHAR, scientific_name VARCHAR) | SELECT COUNT(color) FROM table_175442_1 WHERE scientific_name = "Furcifer pardalis" |
Write a SQL query that answers the following question: Name the number of international frieghts for domestic mail of 260 | The relevant table was constructed using the following SQL : CREATE TABLE table_1754531_4 (international_freight VARCHAR, domestic_mail VARCHAR) | SELECT COUNT(international_freight) FROM table_1754531_4 WHERE domestic_mail = 260 |
Write a SQL query that answers the following question: Name the total number of domestic mail for 7853 for total frieght and mail | The relevant table was constructed using the following SQL : CREATE TABLE table_1754531_4 (domestic_mail VARCHAR, total_freight_and_mail VARCHAR) | SELECT COUNT(domestic_mail) FROM table_1754531_4 WHERE total_freight_and_mail = 7853 |
Write a SQL query that answers the following question: Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260 | The relevant table was constructed using the following SQL : CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR) | SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260 |
Write a SQL query that answers the following question: What was the highest vote for others? | The relevant table was constructed using the following SQL : CREATE TABLE table_1756284_1 (others_number INTEGER) | SELECT MAX(others_number) FROM table_1756284_1 |
Write a SQL query that answers the following question: When Kerry# was 199060, what was the percentage? | The relevant table was constructed using the following SQL : CREATE TABLE table_1756284_1 (kerry_percentage VARCHAR, kerry_number VARCHAR) | SELECT kerry_percentage FROM table_1756284_1 WHERE kerry_number = 199060 |
Write a SQL query that answers the following question: What was the highest vote number for Bush? | The relevant table was constructed using the following SQL : CREATE TABLE table_1756284_1 (bush_number INTEGER) | SELECT MAX(bush_number) FROM table_1756284_1 |
Write a SQL query that answers the following question: How many transfer windows coming from Crystal Palace? | The relevant table was constructed using the following SQL : CREATE TABLE table_17596418_4 (COUnT VARCHAR, moving_from VARCHAR) | SELECT COUnT AS transfer_window FROM table_17596418_4 WHERE moving_from = "Crystal palace" |
Write a SQL query that answers the following question: What country has a P of GK? | The relevant table was constructed using the following SQL : CREATE TABLE table_17596418_4 (country VARCHAR, p VARCHAR) | SELECT country FROM table_17596418_4 WHERE p = "GK" |
Write a SQL query that answers the following question: What is the P for the player moving from Everton? | The relevant table was constructed using the following SQL : CREATE TABLE table_17596418_4 (p VARCHAR, moving_from VARCHAR) | SELECT p FROM table_17596418_4 WHERE moving_from = "Everton" |
Write a SQL query that answers the following question: Name the competition of panathinaikos | The relevant table was constructed using the following SQL : CREATE TABLE table_17594659_1 (competition VARCHAR, opposition VARCHAR) | SELECT competition FROM table_17594659_1 WHERE opposition = "Panathinaikos" |
Write a SQL query that answers the following question: What is every value for viewers for ranking #51 for the Tuesday 9:00 p.m. timeslot? | The relevant table was constructed using the following SQL : CREATE TABLE table_175980_2 (viewers__in_millions_ VARCHAR, ranking VARCHAR, timeslot VARCHAR) | SELECT viewers__in_millions_ FROM table_175980_2 WHERE ranking = "#51" AND timeslot = "Tuesday 9:00 p.m." |
Write a SQL query that answers the following question: What finales took place in the Tuesday 9:30 p.m. timeslot? | The relevant table was constructed using the following SQL : CREATE TABLE table_175980_2 (finale VARCHAR, timeslot VARCHAR) | SELECT finale FROM table_175980_2 WHERE timeslot = "Tuesday 9:30 p.m." |
Write a SQL query that answers the following question: What premieres had a finale on May 25, 2004? | The relevant table was constructed using the following SQL : CREATE TABLE table_175980_2 (premiere VARCHAR, finale VARCHAR) | SELECT premiere FROM table_175980_2 WHERE finale = "May 25, 2004" |
Write a SQL query that answers the following question: What seasons had a finale on May 25, 2004? | The relevant table was constructed using the following SQL : CREATE TABLE table_175980_2 (season VARCHAR, finale VARCHAR) | SELECT season FROM table_175980_2 WHERE finale = "May 25, 2004" |
Write a SQL query that answers the following question: What seasons had a ranking of #47? | The relevant table was constructed using the following SQL : CREATE TABLE table_175980_2 (season VARCHAR, ranking VARCHAR) | SELECT season FROM table_175980_2 WHERE ranking = "#47" |
Write a SQL query that answers the following question: What are all values for viewers for 1st season? | The relevant table was constructed using the following SQL : CREATE TABLE table_175980_2 (viewers__in_millions_ VARCHAR, season VARCHAR) | SELECT viewers__in_millions_ FROM table_175980_2 WHERE season = "1st" |
Write a SQL query that answers the following question: What is the withdraw date for secr no. 771? | The relevant table was constructed using the following SQL : CREATE TABLE table_17607663_1 (date_withdrawn VARCHAR, secr_no VARCHAR) | SELECT date_withdrawn FROM table_17607663_1 WHERE secr_no = 771 |
Write a SQL query that answers the following question: Who is the builder for br no. 31779? | The relevant table was constructed using the following SQL : CREATE TABLE table_17607663_1 (builder VARCHAR, br_no VARCHAR) | SELECT builder FROM table_17607663_1 WHERE br_no = 31779 |
Write a SQL query that answers the following question: what ist he country where the loan club is fulham? | The relevant table was constructed using the following SQL : CREATE TABLE table_17596418_5 (country VARCHAR, loan_club VARCHAR) | SELECT country FROM table_17596418_5 WHERE loan_club = "Fulham" |
Write a SQL query that answers the following question: what ist he total number of ages where the start date is 6 november? | The relevant table was constructed using the following SQL : CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR) | SELECT COUNT(age) FROM table_17596418_5 WHERE started = "6 November" |
Write a SQL query that answers the following question: What was the name of eipsode 618? | The relevant table was constructed using the following SQL : CREATE TABLE table_17624965_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_17624965_1 WHERE production_code = 618 |
Write a SQL query that answers the following question: How many episodes did Alison Maclean direct? | The relevant table was constructed using the following SQL : CREATE TABLE table_17624965_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT COUNT(written_by) FROM table_17624965_1 WHERE directed_by = "Alison Maclean" |
Write a SQL query that answers the following question: Name the high points for may 29 | The relevant table was constructed using the following SQL : CREATE TABLE table_17622423_12 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_17622423_12 WHERE date = "May 29" |
Write a SQL query that answers the following question: Name the date for series 2-2 | The relevant table was constructed using the following SQL : CREATE TABLE table_17622423_12 (date VARCHAR, series VARCHAR) | SELECT date FROM table_17622423_12 WHERE series = "2-2" |
Write a SQL query that answers the following question: Name the high assists for may 21 | The relevant table was constructed using the following SQL : CREATE TABLE table_17622423_12 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_17622423_12 WHERE date = "May 21" |
Write a SQL query that answers the following question: How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers? | The relevant table was constructed using the following SQL : CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_analysts VARCHAR) | SELECT COUNT(play_by_play) FROM table_17628022_2 WHERE pregame_analysts = "Darren Flutie, Eric Tillman and Greg Frers" |
Write a SQL query that answers the following question: Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving? | The relevant table was constructed using the following SQL : CREATE TABLE table_17628022_2 (play_by_play VARCHAR, pregame_host VARCHAR, sideline_reporters VARCHAR) | SELECT play_by_play FROM table_17628022_2 WHERE pregame_host = "Brian Williams" AND sideline_reporters = "Steve Armitage and Brenda Irving" |
Write a SQL query that answers the following question: Who were the pregame hosts when the sideline reporters were Steve Armitage and Brenda Irving? | The relevant table was constructed using the following SQL : CREATE TABLE table_17628022_2 (pregame_host VARCHAR, sideline_reporters VARCHAR) | SELECT pregame_host FROM table_17628022_2 WHERE sideline_reporters = "Steve Armitage and Brenda Irving" |
Write a SQL query that answers the following question: Who did pregame analysis in 2002? | The relevant table was constructed using the following SQL : CREATE TABLE table_17628022_2 (pregame_analysts VARCHAR, year VARCHAR) | SELECT pregame_analysts FROM table_17628022_2 WHERE year = 2002 |
Write a SQL query that answers the following question: Name the state for lake county | The relevant table was constructed using the following SQL : CREATE TABLE table_1762887_1 (state VARCHAR, county VARCHAR) | SELECT state FROM table_1762887_1 WHERE county = "Lake county" |
Write a SQL query that answers the following question: What is the lowest season? | The relevant table was constructed using the following SQL : CREATE TABLE table_17632217_1 (season INTEGER) | SELECT MIN(season) FROM table_17632217_1 |
Write a SQL query that answers the following question: How many values for number of clubs have Shandong as the runner-up? | The relevant table was constructed using the following SQL : CREATE TABLE table_17632217_1 (number_of_clubs VARCHAR, runners_up VARCHAR) | SELECT COUNT(number_of_clubs) FROM table_17632217_1 WHERE runners_up = "Shandong" |
Write a SQL query that answers the following question: How many total wins with Shanghai as runner-up? | The relevant table was constructed using the following SQL : CREATE TABLE table_17632217_1 (total_wins VARCHAR, runners_up VARCHAR) | SELECT COUNT(total_wins) FROM table_17632217_1 WHERE runners_up = "Shanghai" |
Write a SQL query that answers the following question: Name the club for when tries for is 32 | The relevant table was constructed using the following SQL : CREATE TABLE table_17625749_1 (club VARCHAR, tries_for VARCHAR) | SELECT club FROM table_17625749_1 WHERE tries_for = "32" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.