instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Which Chest is Supplied by Gilbert?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (chest VARCHAR, supplier VARCHAR)
SELECT chest FROM table_name_28 WHERE supplier = "gilbert"
Write a SQL query that answers the following question: Which website was started in 2008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (website VARCHAR, year_started VARCHAR)
SELECT website FROM table_name_25 WHERE year_started = 2008
Write a SQL query that answers the following question: Which Year started is the highest one that has a Current car of arctic sun, and a Number of cars smaller than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (year_started INTEGER, current_car VARCHAR, number_of_cars VARCHAR)
SELECT MAX(year_started) FROM table_name_38 WHERE current_car = "arctic sun" AND number_of_cars < 1
Write a SQL query that answers the following question: Which Current car has a Number of cars of 1, and a Year started of 1999?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (current_car VARCHAR, number_of_cars VARCHAR, year_started VARCHAR)
SELECT current_car FROM table_name_54 WHERE number_of_cars = 1 AND year_started = 1999
Write a SQL query that answers the following question: Which Year started is the lowest one that has a Number of cars larger than 7, and a Car # of 100?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (year_started INTEGER, number_of_cars VARCHAR, car__number VARCHAR)
SELECT MIN(year_started) FROM table_name_30 WHERE number_of_cars > 7 AND car__number = "100"
Write a SQL query that answers the following question: What is the total number of Round, when Position is "D", and when Player is "Andrew Campbell"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (round VARCHAR, position VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_94 WHERE position = "d" AND player = "andrew campbell"
Write a SQL query that answers the following question: What is Nationality, when College/Junior/Club Team (League) is "Guelph Storm ( OHL )"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT nationality FROM table_name_73 WHERE college_junior_club_team__league_ = "guelph storm ( ohl )"
Write a SQL query that answers the following question: What is Nationality, when Player is "Andrew Campbell"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_41 WHERE player = "andrew campbell"
Write a SQL query that answers the following question: Which Power has a Name of 9 nc?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (power VARCHAR, name VARCHAR)
SELECT power FROM table_name_21 WHERE name = "9 nc"
Write a SQL query that answers the following question: Which Weight has a Power of kw (hp) at 1,800rpm, and a Name of 9 nc?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (weight VARCHAR, power VARCHAR, name VARCHAR)
SELECT weight FROM table_name_98 WHERE power = "kw (hp) at 1,800rpm" AND name = "9 nc"
Write a SQL query that answers the following question: Which Bore has a Name of 9 adr?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (bore VARCHAR, name VARCHAR)
SELECT bore FROM table_name_94 WHERE name = "9 adr"
Write a SQL query that answers the following question: Which Power has a Name of 9 ad?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (power VARCHAR, name VARCHAR)
SELECT power FROM table_name_25 WHERE name = "9 ad"
Write a SQL query that answers the following question: When the pick was below 42 and the player was Chris Horton, what's the highest Overall pick found?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (overall INTEGER, name VARCHAR, pick VARCHAR)
SELECT MAX(overall) FROM table_name_15 WHERE name = "chris horton" AND pick < 42
Write a SQL query that answers the following question: When Kansas State had a pick of over 35, what's the highest Overall pick found?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (overall INTEGER, college VARCHAR, pick VARCHAR)
SELECT MAX(overall) FROM table_name_71 WHERE college = "kansas state" AND pick > 35
Write a SQL query that answers the following question: Total points with 114 played and average of 0.982?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (points INTEGER, played VARCHAR, average VARCHAR)
SELECT SUM(points) FROM table_name_57 WHERE played = 114 AND average = 0.982
Write a SQL query that answers the following question: Team with average of 1.035?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (team VARCHAR, average VARCHAR)
SELECT team FROM table_name_79 WHERE average = 1.035
Write a SQL query that answers the following question: What was Chris Hanburger's position?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (position VARCHAR, name VARCHAR)
SELECT position FROM table_name_93 WHERE name = "chris hanburger"
Write a SQL query that answers the following question: What was John Strohmeyer's average pick before round 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (pick INTEGER, name VARCHAR, round VARCHAR)
SELECT AVG(pick) FROM table_name_9 WHERE name = "john strohmeyer" AND round < 12
Write a SQL query that answers the following question: what is the average points when position is more than 5 and played is less than 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, played VARCHAR)
SELECT AVG(points) FROM table_name_55 WHERE position > 5 AND played < 10
Write a SQL query that answers the following question: what is the average points when drawn is 0, lost is 5 and played is more than 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (points INTEGER, played VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT AVG(points) FROM table_name_60 WHERE drawn = 0 AND lost = 5 AND played > 10
Write a SQL query that answers the following question: what is the average number lost when points is 14 and position is more than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (lost INTEGER, points VARCHAR, position VARCHAR)
SELECT AVG(lost) FROM table_name_64 WHERE points = 14 AND position > 1
Write a SQL query that answers the following question: what is the average points when played is 9, name is ev pegnitz and position is larger than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (points INTEGER, position VARCHAR, played VARCHAR, name VARCHAR)
SELECT AVG(points) FROM table_name_36 WHERE played = 9 AND name = "ev pegnitz" AND position > 1
Write a SQL query that answers the following question: What is Place, when Score is 72-72=144, when Country is United States, and when Player is Scott McCarron?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR)
SELECT place FROM table_name_14 WHERE score = 72 - 72 = 144 AND country = "united states" AND player = "scott mccarron"
Write a SQL query that answers the following question: What is Country, when Score is 70-73=143?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_50 WHERE score = 70 - 73 = 143
Write a SQL query that answers the following question: What is Player, when Place is 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (player VARCHAR, place VARCHAR)
SELECT player FROM table_name_93 WHERE place = "2"
Write a SQL query that answers the following question: What is Country, when Player is Billy Mayfair?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_50 WHERE player = "billy mayfair"
Write a SQL query that answers the following question: What is To Par, when Player is K. J. Choi?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_58 WHERE player = "k. j. choi"
Write a SQL query that answers the following question: What is Score, when Player is Billy Mayfair?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_48 WHERE player = "billy mayfair"
Write a SQL query that answers the following question: What place did Don Whitt finish?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_79 WHERE player = "don whitt"
Write a SQL query that answers the following question: What did Phil Rodgers score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_6 WHERE player = "phil rodgers"
Write a SQL query that answers the following question: What place was Gary Player after two rounds?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_27 WHERE player = "gary player"
Write a SQL query that answers the following question: What is 1993, when Tournament is "Cincinnati"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (tournament VARCHAR)
SELECT 1993 FROM table_name_35 WHERE tournament = "cincinnati"
Write a SQL query that answers the following question: What is 1994, when 1996 is "Grand Slams"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (Id VARCHAR)
SELECT 1994 FROM table_name_65 WHERE 1996 = "grand slams"
Write a SQL query that answers the following question: What is Tournament, when 1996 is "1R", and when 1990 is "SF"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (tournament VARCHAR)
SELECT tournament FROM table_name_92 WHERE 1996 = "1r" AND 1990 = "sf"
Write a SQL query that answers the following question: What is 1993, when 1992 is "SF", and when Tournament is "Paris"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (tournament VARCHAR)
SELECT 1993 FROM table_name_7 WHERE 1992 = "sf" AND tournament = "paris"
Write a SQL query that answers the following question: What country has a 70-73-70=213 score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_62 WHERE score = 70 - 73 - 70 = 213
Write a SQL query that answers the following question: What place is player johnny miller, who has a to par of +2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (place VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT place FROM table_name_28 WHERE to_par = "+2" AND player = "johnny miller"
Write a SQL query that answers the following question: What country is player mike sullivan from?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_89 WHERE player = "mike sullivan"
Write a SQL query that answers the following question: What is the place with a 71-72-70=213 score?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_28 WHERE score = 71 - 72 - 70 = 213
Write a SQL query that answers the following question: What was the record after the game on May 1, 2004?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_62 WHERE date = "may 1, 2004"
Write a SQL query that answers the following question: What was the record after the game with the Manchester Wolves on July 30, 2004?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (record VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT record FROM table_name_18 WHERE opponent = "manchester wolves" AND date = "july 30, 2004"
Write a SQL query that answers the following question: Which game site hosted a match on April 10, 2004?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (game_site VARCHAR, date VARCHAR)
SELECT game_site FROM table_name_87 WHERE date = "april 10, 2004"
Write a SQL query that answers the following question: Does Green Bay have a golf team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (golf VARCHAR, school VARCHAR)
SELECT golf FROM table_name_66 WHERE school = "green bay"
Write a SQL query that answers the following question: Does Detroit have a soccer team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (soccer VARCHAR, school VARCHAR)
SELECT soccer FROM table_name_34 WHERE school = "detroit"
Write a SQL query that answers the following question: What is Democrat: Carl Levin, when Lead Margin is 22?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (democrat VARCHAR, lead_margin VARCHAR)
SELECT democrat AS :_carl_levin FROM table_name_88 WHERE lead_margin = 22
Write a SQL query that answers the following question: What is Win %, when Conference Titles is 0, and when Win-Loss is 20-10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (win__percentage VARCHAR, conference_titles VARCHAR, win_loss VARCHAR)
SELECT win__percentage FROM table_name_68 WHERE conference_titles = "0" AND win_loss = "20-10"
Write a SQL query that answers the following question: What is Conference Titles, when Win % is .667?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (conference_titles VARCHAR, win__percentage VARCHAR)
SELECT conference_titles FROM table_name_23 WHERE win__percentage = ".667"
Write a SQL query that answers the following question: What is Coach, when Win % is .352?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (coach VARCHAR, win__percentage VARCHAR)
SELECT coach FROM table_name_99 WHERE win__percentage = ".352"
Write a SQL query that answers the following question: What is Win-Loss, when Win % is .456?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (win_loss VARCHAR, win__percentage VARCHAR)
SELECT win_loss FROM table_name_60 WHERE win__percentage = ".456"
Write a SQL query that answers the following question: What is Years, when Win-Loss is 11-60?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (years VARCHAR, win_loss VARCHAR)
SELECT years FROM table_name_55 WHERE win_loss = "11-60"
Write a SQL query that answers the following question: What is the Date that has a Record of 33.952?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_48 WHERE record = "33.952"
Write a SQL query that answers the following question: What is the Place that has a Date of 4 august 2012?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (place VARCHAR, date VARCHAR)
SELECT place FROM table_name_13 WHERE date = "4 august 2012"
Write a SQL query that answers the following question: What is the Place that has a Date of 22 august 2004?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (place VARCHAR, date VARCHAR)
SELECT place FROM table_name_92 WHERE date = "22 august 2004"
Write a SQL query that answers the following question: What is the Record that has a Nationality of new zealand?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (record VARCHAR, nationality VARCHAR)
SELECT record FROM table_name_35 WHERE nationality = "new zealand"
Write a SQL query that answers the following question: WHAT IS THE SKIP WITH A THIRD OF DEANNA DOIG?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (skip VARCHAR, third VARCHAR)
SELECT skip FROM table_name_62 WHERE third = "deanna doig"
Write a SQL query that answers the following question: WHAT IS THE THIRD WITH LEAD CINDY SIMMONS?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (third VARCHAR, lead VARCHAR)
SELECT third FROM table_name_76 WHERE lead = "cindy simmons"
Write a SQL query that answers the following question: WHAT IS THE LEAD WITH THIRD AS JEANNA SCHRAEDER?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (lead VARCHAR, third VARCHAR)
SELECT lead FROM table_name_83 WHERE third = "jeanna schraeder"
Write a SQL query that answers the following question: WHAT IS THE LEAD WITH THIRD AS TARA GEORGE?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (lead VARCHAR, third VARCHAR)
SELECT lead FROM table_name_79 WHERE third = "tara george"
Write a SQL query that answers the following question: WHAT IS TEH SECOND WITH REGINA AS CITY AND SKIP OF MICHELLE ENGLOT?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (second VARCHAR, city VARCHAR, skip VARCHAR)
SELECT second FROM table_name_59 WHERE city = "regina" AND skip = "michelle englot"
Write a SQL query that answers the following question: WHAT IS THE CITY WITH THIRD AS LORI OLSON-JOHNS?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (city VARCHAR, third VARCHAR)
SELECT city FROM table_name_6 WHERE third = "lori olson-johns"
Write a SQL query that answers the following question: What event has a 0:49 time?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (event VARCHAR, time VARCHAR)
SELECT event FROM table_name_13 WHERE time = "0:49"
Write a SQL query that answers the following question: What is the record with a 3:56 time?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_63 WHERE time = "3:56"
Write a SQL query that answers the following question: Which Champion has a Third of blaho blahoyeve, and a Season of 1995-96?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (champion VARCHAR, third VARCHAR, season VARCHAR)
SELECT champion FROM table_name_64 WHERE third = "blaho blahoyeve" AND season = "1995-96"
Write a SQL query that answers the following question: Which Zone has a Champion of surozh sudak?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (zone INTEGER, champion VARCHAR)
SELECT SUM(zone) FROM table_name_30 WHERE champion = "surozh sudak"
Write a SQL query that answers the following question: Which Third has a Champion of metalurh novomoskovsk?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (third VARCHAR, champion VARCHAR)
SELECT third FROM table_name_20 WHERE champion = "metalurh novomoskovsk"
Write a SQL query that answers the following question: What is the census ranking for the parish with an area larger than 243.31 square km?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (census_ranking VARCHAR, area_km_2 INTEGER)
SELECT census_ranking FROM table_name_79 WHERE area_km_2 > 243.31
Write a SQL query that answers the following question: What is the verb meaning for Saugen in part 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (verb_meaning VARCHAR, part_1 VARCHAR)
SELECT verb_meaning FROM table_name_78 WHERE part_1 = "saugen"
Write a SQL query that answers the following question: What is the verb meaning for Gaben in part 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (verb_meaning VARCHAR, part_3 VARCHAR)
SELECT verb_meaning FROM table_name_89 WHERE part_3 = "gaben"
Write a SQL query that answers the following question: What is the class for Geholfen Gedroschen in part 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (class VARCHAR, part_4 VARCHAR)
SELECT class FROM table_name_26 WHERE part_4 = "geholfen gedroschen"
Write a SQL query that answers the following question: What is the class for trafen in part 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (class VARCHAR, part_3 VARCHAR)
SELECT class FROM table_name_49 WHERE part_3 = "trafen"
Write a SQL query that answers the following question: What is the verb meaning for class 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (verb_meaning VARCHAR, class VARCHAR)
SELECT verb_meaning FROM table_name_64 WHERE class = "4"
Write a SQL query that answers the following question: Who is the prime minister that had a term that ended on 5 March 1930?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (name VARCHAR, term_end VARCHAR)
SELECT name FROM table_name_53 WHERE term_end = "5 march 1930"
Write a SQL query that answers the following question: What are the Poles for Season 2006
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (poles VARCHAR, season VARCHAR)
SELECT poles FROM table_name_91 WHERE season = 2006
Write a SQL query that answers the following question: If Podiums is 2 and F/Laps are 2, what are the wins?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (wins VARCHAR, podiums VARCHAR, f_laps VARCHAR)
SELECT wins FROM table_name_80 WHERE podiums = "2" AND f_laps = "2"
Write a SQL query that answers the following question: If the Races is Test Driver what is the Position?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (position VARCHAR, races VARCHAR)
SELECT position FROM table_name_40 WHERE races = "test driver"
Write a SQL query that answers the following question: Can you tell me the lowest Races that has the Team Name of piquet gp, and the Points larger than 24?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (races INTEGER, team_name VARCHAR, points VARCHAR)
SELECT MIN(races) FROM table_name_16 WHERE team_name = "piquet gp" AND points > 24
Write a SQL query that answers the following question: Can you tell me the sum of Poles that has the Season of 2005, and the Series of formula three sudamericana?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (poles INTEGER, season VARCHAR, series VARCHAR)
SELECT SUM(poles) FROM table_name_53 WHERE season = "2005" AND series = "formula three sudamericana"
Write a SQL query that answers the following question: Can you tell me the Series that has the Wins of 0, and the Season of a 2002?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (series VARCHAR, wins VARCHAR, season VARCHAR)
SELECT series FROM table_name_63 WHERE wins = 0 AND season = "2002"
Write a SQL query that answers the following question: What is Venue, when Game is greater than 18, and when Opponent is Morecambe?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (venue VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_41 WHERE game > 18 AND opponent = "morecambe"
Write a SQL query that answers the following question: What is the sum of Game, when Date is 29 January 2008?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (game INTEGER, date VARCHAR)
SELECT SUM(game) FROM table_name_59 WHERE date = "29 january 2008"
Write a SQL query that answers the following question: What date had a catalog of kicp-1321?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (date VARCHAR, catalog VARCHAR)
SELECT date FROM table_name_61 WHERE catalog = "kicp-1321"
Write a SQL query that answers the following question: What was the catalog when the label was frontiers records?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (catalog VARCHAR, label VARCHAR)
SELECT catalog FROM table_name_61 WHERE label = "frontiers records"
Write a SQL query that answers the following question: What was the format for the region of europe?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (format VARCHAR, region VARCHAR)
SELECT format FROM table_name_81 WHERE region = "europe"
Write a SQL query that answers the following question: What was the region when the label was the universal music group?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (region VARCHAR, label VARCHAR)
SELECT region FROM table_name_92 WHERE label = "universal music group"
Write a SQL query that answers the following question: What was the format when the label was loen entertainment?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (format VARCHAR, label VARCHAR)
SELECT format FROM table_name_20 WHERE label = "loen entertainment"
Write a SQL query that answers the following question: With a works number of 40864 for the builder of Baldwin Locomotive Works, the number listed is?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (number VARCHAR, builder VARCHAR, works_number VARCHAR)
SELECT number FROM table_name_15 WHERE builder = "baldwin locomotive works" AND works_number = 40864
Write a SQL query that answers the following question: Builder H. K. Porter, inc who had a type of 0-4-4 Forney locomotive, has what works number?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (works_number VARCHAR, type VARCHAR, builder VARCHAR)
SELECT works_number FROM table_name_88 WHERE type = "0-4-4 forney locomotive" AND builder = "h. k. porter, inc"
Write a SQL query that answers the following question: Baldwin Locomotive Works, also with works number 40864, is listed as what number?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (number VARCHAR, builder VARCHAR, works_number VARCHAR)
SELECT number FROM table_name_2 WHERE builder = "baldwin locomotive works" AND works_number = 40864
Write a SQL query that answers the following question: Hinkley Locomotive Works is listed as what number as it has a works number smaller than 1563?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (number VARCHAR, works_number VARCHAR, builder VARCHAR)
SELECT number FROM table_name_7 WHERE works_number < 1563 AND builder = "hinkley locomotive works"
Write a SQL query that answers the following question: What is Score, when Outcome is Winner, and when Opponent is Angela Haynes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_69 WHERE outcome = "winner" AND opponent = "angela haynes"
Write a SQL query that answers the following question: What is Date, when Championship is Mackay?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (date VARCHAR, championship VARCHAR)
SELECT date FROM table_name_72 WHERE championship = "mackay"
Write a SQL query that answers the following question: What is Opponent, when Championship is Pétange?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (opponent VARCHAR, championship VARCHAR)
SELECT opponent FROM table_name_69 WHERE championship = "pétange"
Write a SQL query that answers the following question: What is Outcome, when Score is 1-6, 3-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_5 WHERE score = "1-6, 3-6"
Write a SQL query that answers the following question: What is Date, when Score is 6-3, 4-6, 0-6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_88 WHERE score = "6-3, 4-6, 0-6"
Write a SQL query that answers the following question: What is Score, when Opponent is Natalia Rizhonkova?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_62 WHERE opponent = "natalia rizhonkova"
Write a SQL query that answers the following question: Which Game has a Nugget points of 89?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (game INTEGER, nuggets_points VARCHAR)
SELECT MIN(game) FROM table_name_99 WHERE nuggets_points = 89
Write a SQL query that answers the following question: Which Record has a Result of win, and a Streak of won 1, and a Game of 47?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (record VARCHAR, game VARCHAR, result VARCHAR, streak VARCHAR)
SELECT record FROM table_name_47 WHERE result = "win" AND streak = "won 1" AND game = 47
Write a SQL query that answers the following question: How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (opponents INTEGER, opponent VARCHAR, result VARCHAR, nuggets_points VARCHAR)
SELECT SUM(opponents) FROM table_name_62 WHERE result = "win" AND nuggets_points < 115 AND opponent = "washington"
Write a SQL query that answers the following question: How many Opponents have a Result of loss, and a Game smaller than 49, and Nuggets points of 108?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (opponents VARCHAR, nuggets_points VARCHAR, result VARCHAR, game VARCHAR)
SELECT COUNT(opponents) FROM table_name_34 WHERE result = "loss" AND game < 49 AND nuggets_points = 108
Write a SQL query that answers the following question: Which Result has a Game smaller than 37, and a Streak of lost 1, and a Record of 4-9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (result VARCHAR, record VARCHAR, game VARCHAR, streak VARCHAR)
SELECT result FROM table_name_40 WHERE game < 37 AND streak = "lost 1" AND record = "4-9"