instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: what is the song when the points is more than 64, the national final is 4th and draw is more than 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (song VARCHAR, draw VARCHAR, points VARCHAR, national_final VARCHAR)
SELECT song FROM table_name_50 WHERE points > 64 AND national_final = "4th" AND draw > 3
Write a SQL query that answers the following question: What is Category, when Result is "Nominated", when Award is "Drama Desk Award", and when Nominee is "Nathan Lane"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (category VARCHAR, nominee VARCHAR, result VARCHAR, award VARCHAR)
SELECT category FROM table_name_95 WHERE result = "nominated" AND award = "drama desk award" AND nominee = "nathan lane"
Write a SQL query that answers the following question: What is Category, when Result is "Won", and when Nominee is "Bebe Neuwirth"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (category VARCHAR, result VARCHAR, nominee VARCHAR)
SELECT category FROM table_name_95 WHERE result = "won" AND nominee = "bebe neuwirth"
Write a SQL query that answers the following question: What is the total number of Year, when Result is "Nominated", when Category is "Outstanding Actor in a Musical", and when Award is "Drama Desk Award"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (year VARCHAR, award VARCHAR, result VARCHAR, category VARCHAR)
SELECT COUNT(year) FROM table_name_68 WHERE result = "nominated" AND category = "outstanding actor in a musical" AND award = "drama desk award"
Write a SQL query that answers the following question: What is the sum of Year, when Award is "Outer Critics Circle Award", and when Nominee is "Nathan Lane"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (year INTEGER, award VARCHAR, nominee VARCHAR)
SELECT SUM(year) FROM table_name_84 WHERE award = "outer critics circle award" AND nominee = "nathan lane"
Write a SQL query that answers the following question: What is Name, when Builder is "Kerr Stuart"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (name VARCHAR, builder VARCHAR)
SELECT name FROM table_name_54 WHERE builder = "kerr stuart"
Write a SQL query that answers the following question: What is Built, when Works Number is "717"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (built VARCHAR, works_number VARCHAR)
SELECT built FROM table_name_42 WHERE works_number = "717"
Write a SQL query that answers the following question: What is Type, when Works Number is "unknown"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (type VARCHAR, works_number VARCHAR)
SELECT type FROM table_name_50 WHERE works_number = "unknown"
Write a SQL query that answers the following question: What is the circuit for the ADAC großer preis der tourenwagen race?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (circuit VARCHAR, race VARCHAR)
SELECT circuit FROM table_name_27 WHERE race = "adac großer preis der tourenwagen"
Write a SQL query that answers the following question: What is the date that Fabrizio Giovanardi Christian Abt won?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (date VARCHAR, winning_driver VARCHAR)
SELECT date FROM table_name_12 WHERE winning_driver = "fabrizio giovanardi christian abt"
Write a SQL query that answers the following question: What home team has 16 as the tie no.?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_83 WHERE tie_no = "16"
Write a SQL query that answers the following question: What score has hull city as the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_9 WHERE away_team = "hull city"
Write a SQL query that answers the following question: What away team has 12 as the tie no.?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_89 WHERE tie_no = "12"
Write a SQL query that answers the following question: What date has 11 as the tie no.?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (date VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_48 WHERE tie_no = "11"
Write a SQL query that answers the following question: What home team has blackpool as the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_80 WHERE away_team = "blackpool"
Write a SQL query that answers the following question: What was the surface when the opponent was sergiy stakhovsky mikhail youzhny?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (surface VARCHAR, opponents VARCHAR)
SELECT surface FROM table_name_24 WHERE opponents = "sergiy stakhovsky mikhail youzhny"
Write a SQL query that answers the following question: What was the score for the opponent lukáš dlouhý leander paes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (score VARCHAR, opponents VARCHAR)
SELECT score FROM table_name_75 WHERE opponents = "lukáš dlouhý leander paes"
Write a SQL query that answers the following question: What day was there a hard surface when the partner was Marc Gicquel?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (date VARCHAR, surface VARCHAR, partner VARCHAR)
SELECT date FROM table_name_64 WHERE surface = "hard" AND partner = "marc gicquel"
Write a SQL query that answers the following question: What is the total (kg) when the snatch was 84, and bodyweight was less than 57.35?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (total__kg_ INTEGER, snatch VARCHAR, bodyweight VARCHAR)
SELECT AVG(total__kg_) FROM table_name_3 WHERE snatch = 84 AND bodyweight < 57.35
Write a SQL query that answers the following question: What is the clean & jerk when the total (kg) is more than 204, and snatch is more than 98?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (_jerk VARCHAR, clean_ INTEGER, total__kg_ VARCHAR, snatch VARCHAR)
SELECT AVG(clean_) & _jerk FROM table_name_8 WHERE total__kg_ > 204 AND snatch > 98
Write a SQL query that answers the following question: What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (total__kg_ INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT SUM(total__kg_) FROM table_name_94 WHERE bodyweight > 57.8 AND clean_ & _jerk < 103
Write a SQL query that answers the following question: What is the Overall of the pick less than 20?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (overall VARCHAR, pick__number INTEGER)
SELECT overall FROM table_name_16 WHERE pick__number < 20
Write a SQL query that answers the following question: What is the name of the cornerback from Wisconsin college?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (name VARCHAR, position VARCHAR, college VARCHAR)
SELECT name FROM table_name_45 WHERE position = "cornerback" AND college = "wisconsin"
Write a SQL query that answers the following question: What college is Pat Thomas from?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (college VARCHAR, name VARCHAR)
SELECT college FROM table_name_77 WHERE name = "pat thomas"
Write a SQL query that answers the following question: What is the best top-10 result when events are fewer than 39, top-5 is 1 and more than 5 cuts are made?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR)
SELECT MAX(top_10) FROM table_name_89 WHERE events < 39 AND top_5 = 1 AND cuts_made > 5
Write a SQL query that answers the following question: How many cuts made when the top-5 is greater than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (cuts_made INTEGER, top_5 INTEGER)
SELECT AVG(cuts_made) FROM table_name_31 WHERE top_5 > 1
Write a SQL query that answers the following question: What is the best top-5 when top-10 is 1 and there are more than 0 wins?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (top_5 INTEGER, top_10 VARCHAR, wins VARCHAR)
SELECT MAX(top_5) FROM table_name_93 WHERE top_10 = 1 AND wins > 0
Write a SQL query that answers the following question: What is the number of cuts made when the top-5 is 0, top-10 is 1 and events are fewer than 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (cuts_made INTEGER, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR)
SELECT AVG(cuts_made) FROM table_name_33 WHERE top_5 = 0 AND top_10 = 1 AND events < 12
Write a SQL query that answers the following question: What was the 1st leg for Team 2, Leeds United?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (team_2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_14 WHERE team_2 = "leeds united"
Write a SQL query that answers the following question: What was the 1st leg for Team 2, Slovan Liberec?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (team_2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_79 WHERE team_2 = "slovan liberec"
Write a SQL query that answers the following question: Which Team 1, has Team 2, Slovan Liberec?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_13 WHERE team_2 = "slovan liberec"
Write a SQL query that answers the following question: What is the date of the match with west bromwich albion as the home team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_90 WHERE home_team = "west bromwich albion"
Write a SQL query that answers the following question: What is the highest Apps of kairat after 2008 and a Level smaller than 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (apps INTEGER, level VARCHAR, season VARCHAR, team VARCHAR)
SELECT MAX(apps) FROM table_name_35 WHERE season > 2008 AND team = "kairat" AND level < 1
Write a SQL query that answers the following question: What is the total Level with 27 Apps after 2006?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (level INTEGER, apps VARCHAR, season VARCHAR)
SELECT SUM(level) FROM table_name_90 WHERE apps = 27 AND season > 2006
Write a SQL query that answers the following question: What is the lowest Apps with more than 1 level?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (apps INTEGER, level INTEGER)
SELECT MIN(apps) FROM table_name_22 WHERE level > 1
Write a SQL query that answers the following question: what is the total levels in 2007?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (level INTEGER, season VARCHAR)
SELECT SUM(level) FROM table_name_7 WHERE season = 2007
Write a SQL query that answers the following question: How many times is the award ceremony laurence olivier award, result is won and the nominee is imelda staunton?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (year VARCHAR, nominee VARCHAR, award_ceremony VARCHAR, result VARCHAR)
SELECT COUNT(year) FROM table_name_3 WHERE award_ceremony = "laurence olivier award" AND result = "won" AND nominee = "imelda staunton"
Write a SQL query that answers the following question: what is the result when the category is best sound design?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (result VARCHAR, category VARCHAR)
SELECT result FROM table_name_28 WHERE category = "best sound design"
Write a SQL query that answers the following question: What's the total byes for more than 1 draw?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (byes VARCHAR, draws INTEGER)
SELECT COUNT(byes) FROM table_name_74 WHERE draws > 1
Write a SQL query that answers the following question: What Hometown/School had a pick above 30, position of OF and team of Cleveland Indians?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (hometown_school VARCHAR, team VARCHAR, pick VARCHAR, position VARCHAR)
SELECT hometown_school FROM table_name_79 WHERE pick > 30 AND position = "of" AND team = "cleveland indians"
Write a SQL query that answers the following question: What's the highest pick for SS position?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (pick INTEGER, position VARCHAR)
SELECT MAX(pick) FROM table_name_76 WHERE position = "ss"
Write a SQL query that answers the following question: What pick did the Minnesota Twins have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (pick INTEGER, team VARCHAR)
SELECT AVG(pick) FROM table_name_68 WHERE team = "minnesota twins"
Write a SQL query that answers the following question: What is the average Draws, when Losses is less than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (draws INTEGER, losses INTEGER)
SELECT AVG(draws) FROM table_name_97 WHERE losses < 2
Write a SQL query that answers the following question: What is the average Wins, when Against is less than 1786, when Losses is less than 4, and when Byes is less than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (wins INTEGER, byes VARCHAR, against VARCHAR, losses VARCHAR)
SELECT AVG(wins) FROM table_name_51 WHERE against < 1786 AND losses < 4 AND byes < 2
Write a SQL query that answers the following question: What is Country, when Class / Type is "Three masted full rigged ship"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (country VARCHAR, class___type VARCHAR)
SELECT country FROM table_name_2 WHERE class___type = "three masted full rigged ship"
Write a SQL query that answers the following question: What is Builder, when Country is "United Kingdom", and when Location is "Chatham, Kent"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (builder VARCHAR, country VARCHAR, location VARCHAR)
SELECT builder FROM table_name_35 WHERE country = "united kingdom" AND location = "chatham, kent"
Write a SQL query that answers the following question: What is Builder, when Ship is "Arizona"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (builder VARCHAR, ship VARCHAR)
SELECT builder FROM table_name_67 WHERE ship = "arizona"
Write a SQL query that answers the following question: What is Location, when Class / Type is "Sloop"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (location VARCHAR, class___type VARCHAR)
SELECT location FROM table_name_33 WHERE class___type = "sloop"
Write a SQL query that answers the following question: What is Country, when Builder is "Sheerness Dockyard"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (country VARCHAR, builder VARCHAR)
SELECT country FROM table_name_38 WHERE builder = "sheerness dockyard"
Write a SQL query that answers the following question: What is Builder, when Location is "Govan , Scotland"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (builder VARCHAR, location VARCHAR)
SELECT builder FROM table_name_80 WHERE location = "govan , scotland"
Write a SQL query that answers the following question: What was Britain's (2013) birthstone when the U.S (2013) birthstone was ruby?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (britain__2013_ VARCHAR, us__2013_ VARCHAR)
SELECT britain__2013_ FROM table_name_1 WHERE us__2013_ = "ruby"
Write a SQL query that answers the following question: What was the U.S birthstone in 1912 when in 2013 the birthstone was amethyst?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (us__1912_ VARCHAR, us__2013_ VARCHAR)
SELECT us__1912_ FROM table_name_34 WHERE us__2013_ = "amethyst"
Write a SQL query that answers the following question: What was the U.S birthstone in the 15th-20th century when in 2013 it was amethyst?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (us__2013_ VARCHAR)
SELECT 15 AS th__20th_century FROM table_name_34 WHERE us__2013_ = "amethyst"
Write a SQL query that answers the following question: Which month in 2013 did the U.S. use the ruby birthstone?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (month VARCHAR, us__2013_ VARCHAR)
SELECT month FROM table_name_76 WHERE us__2013_ = "ruby"
Write a SQL query that answers the following question: In 1912 when the U.S used sapphire, what was the Hindu birthstone?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (hindu VARCHAR, us__1912_ VARCHAR)
SELECT hindu FROM table_name_77 WHERE us__1912_ = "sapphire"
Write a SQL query that answers the following question: What's the hometown of rachel muyot soriano?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (hometown VARCHAR, delegate VARCHAR)
SELECT hometown FROM table_name_67 WHERE delegate = "rachel muyot soriano"
Write a SQL query that answers the following question: What's the latest year the miss internet www pageant had a result of second runner-up?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (year INTEGER, pageant VARCHAR, result VARCHAR)
SELECT MAX(year) FROM table_name_80 WHERE pageant = "miss internet www" AND result = "second runner-up"
Write a SQL query that answers the following question: On what Date is Tie no 19?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (date VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_36 WHERE tie_no = "19"
Write a SQL query that answers the following question: What is the Ti no of the Walsall Home game?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_38 WHERE home_team = "walsall"
Write a SQL query that answers the following question: What is the Date of Tie no 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (date VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_13 WHERE tie_no = "21"
Write a SQL query that answers the following question: Which race happened in 1948?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (race_title VARCHAR, year VARCHAR)
SELECT race_title FROM table_name_26 WHERE year = 1948
Write a SQL query that answers the following question: Was the Grand Prix Watkins GLen that Miles Collier raced in before 1952 a championship?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (championship VARCHAR, drivers VARCHAR, year VARCHAR, race_title VARCHAR)
SELECT championship FROM table_name_77 WHERE year < 1952 AND race_title = "grand prix watkins glen" AND drivers = "miles collier"
Write a SQL query that answers the following question: Who drove in races in 1949?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (drivers VARCHAR, year VARCHAR)
SELECT drivers FROM table_name_21 WHERE year = 1949
Write a SQL query that answers the following question: What is the lowest Total, when Silver is greater than 7, and when Gold is greater than 73?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT MIN(total) FROM table_name_99 WHERE silver > 7 AND gold > 73
Write a SQL query that answers the following question: What is Total, when Silver is less than 65, when Bronze is greater than 4, and when Rank is "4"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (total VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT total FROM table_name_81 WHERE silver < 65 AND bronze > "4" AND rank = "4"
Write a SQL query that answers the following question: What is the average Silver, when Gold is less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (silver INTEGER, gold INTEGER)
SELECT AVG(silver) FROM table_name_47 WHERE gold < 0
Write a SQL query that answers the following question: What is Height, when Name is "Manuela Zanchi"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (height VARCHAR, name VARCHAR)
SELECT height FROM table_name_95 WHERE name = "manuela zanchi"
Write a SQL query that answers the following question: What is Pos., when Height is "m (ft 6in)", and when Name is "Martina Miceli"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (pos VARCHAR, height VARCHAR, name VARCHAR)
SELECT pos FROM table_name_53 WHERE height = "m (ft 6in)" AND name = "martina miceli"
Write a SQL query that answers the following question: How many kills did basobas, florentino have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (killed INTEGER, perpetrator VARCHAR)
SELECT MAX(killed) FROM table_name_34 WHERE perpetrator = "basobas, florentino"
Write a SQL query that answers the following question: What is the average number of people killed with a Perpetrator of wirjo, 42?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (killed INTEGER, perpetrator VARCHAR)
SELECT AVG(killed) FROM table_name_54 WHERE perpetrator = "wirjo, 42"
Write a SQL query that answers the following question: How many are injured in Borneo?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (injured VARCHAR, location VARCHAR)
SELECT injured FROM table_name_68 WHERE location = "borneo"
Write a SQL query that answers the following question: How many points were scored by the player with 79 goals and who played 38 games?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (points VARCHAR, goals VARCHAR, games VARCHAR)
SELECT points FROM table_name_32 WHERE goals = "79" AND games = "38"
Write a SQL query that answers the following question: How many games were played by the player with 127 assists?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (games VARCHAR, assists VARCHAR)
SELECT games FROM table_name_61 WHERE assists = "127"
Write a SQL query that answers the following question: How many games were played by the player who had 22 penalty minutes?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (games VARCHAR, pen_min VARCHAR)
SELECT games FROM table_name_52 WHERE pen_min = "22"
Write a SQL query that answers the following question: How many assists did the player with 54 penalty minutes have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (assists VARCHAR, pen_min VARCHAR)
SELECT assists FROM table_name_45 WHERE pen_min = "54"
Write a SQL query that answers the following question: What is John Davis's home town?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (hometown VARCHAR, name VARCHAR)
SELECT hometown FROM table_name_95 WHERE name = "john davis"
Write a SQL query that answers the following question: What is the date of the 1500m freestyle event?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (date VARCHAR, event VARCHAR)
SELECT date FROM table_name_91 WHERE event = "1500m freestyle"
Write a SQL query that answers the following question: What is the nationality of the event with a 1:51.51 time?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (nationality VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_66 WHERE time = "1:51.51"
Write a SQL query that answers the following question: What is the time of the 100m freestyle event?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_54 WHERE event = "100m freestyle"
Write a SQL query that answers the following question: What is the date of the event with a 1:54.00 time?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_25 WHERE time = "1:54.00"
Write a SQL query that answers the following question: What event is on 18 December 2009?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (event VARCHAR, date VARCHAR)
SELECT event FROM table_name_59 WHERE date = "18 december 2009"
Write a SQL query that answers the following question: Jimmie Lee Sloas was the composer for what album?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (album VARCHAR, composer_s_ VARCHAR)
SELECT album FROM table_name_44 WHERE composer_s_ = "jimmie lee sloas"
Write a SQL query that answers the following question: Which composer had a CHR chart peak at #2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_93 (composer_s_ VARCHAR, chr_chart_peak VARCHAR)
SELECT composer_s_ FROM table_name_93 WHERE chr_chart_peak = 2
Write a SQL query that answers the following question: What was the date for Westport?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_33 WHERE venue = "westport"
Write a SQL query that answers the following question: What is the home team in week 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (home_team VARCHAR, week VARCHAR)
SELECT home_team FROM table_name_61 WHERE week = "1"
Write a SQL query that answers the following question: In what week was the away team Auckland?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_92 (week VARCHAR, away_team VARCHAR)
SELECT week FROM table_name_92 WHERE away_team = "auckland"
Write a SQL query that answers the following question: What is the venue for week 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (venue VARCHAR, week VARCHAR)
SELECT venue FROM table_name_58 WHERE week = "1"
Write a SQL query that answers the following question: What is the title in 1991?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (title VARCHAR, year VARCHAR)
SELECT title FROM table_name_79 WHERE year = "1991"
Write a SQL query that answers the following question: In what City/State did the ATCC Round 4 series take place?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (city___state VARCHAR, series VARCHAR)
SELECT city___state FROM table_name_42 WHERE series = "atcc round 4"
Write a SQL query that answers the following question: In what City/State did the ATCC Round 4 series take place?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (city___state VARCHAR, series VARCHAR)
SELECT city___state FROM table_name_62 WHERE series = "atcc round 4"
Write a SQL query that answers the following question: Which series was won by Paul Morris?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (series VARCHAR, winner VARCHAR)
SELECT series FROM table_name_16 WHERE winner = "paul morris"
Write a SQL query that answers the following question: On which date did the Winfield Triple Challenge series take place?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (date VARCHAR, series VARCHAR)
SELECT date FROM table_name_61 WHERE series = "winfield triple challenge"
Write a SQL query that answers the following question: What was the circuit for Team Peter Jackson Racing in the ATCC Round 4 series?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (circuit VARCHAR, team VARCHAR, series VARCHAR)
SELECT circuit FROM table_name_64 WHERE team = "peter jackson racing" AND series = "atcc round 4"
Write a SQL query that answers the following question: Which Player has a Team from of south shore kings?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (player VARCHAR, team_from VARCHAR)
SELECT player FROM table_name_11 WHERE team_from = "south shore kings"
Write a SQL query that answers the following question: Which NHL team has a League from of western hockey league and a Pick # smaller than 23 and a Team from of prince george cougars?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (nhl_team VARCHAR, team_from VARCHAR, league_from VARCHAR, pick__number VARCHAR)
SELECT nhl_team FROM table_name_97 WHERE league_from = "western hockey league" AND pick__number < 23 AND team_from = "prince george cougars"
Write a SQL query that answers the following question: Which Position has a Pick # smaller than 26 and a Player of jack campbell?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (position VARCHAR, pick__number VARCHAR, player VARCHAR)
SELECT position FROM table_name_61 WHERE pick__number < 26 AND player = "jack campbell"
Write a SQL query that answers the following question: How much money did Willie Klein take home from the game in which he had a to par score larger than 13?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (money___ INTEGER, player VARCHAR, to_par VARCHAR)
SELECT SUM(money___) AS $__ FROM table_name_5 WHERE player = "willie klein" AND to_par > 13
Write a SQL query that answers the following question: What was the attendance on September 11, 1988?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_21 WHERE date = "september 11, 1988"
Write a SQL query that answers the following question: What was the attendance on week 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_41 WHERE week = 1
Write a SQL query that answers the following question: What was the lowest win when there were 34 points and more than 13 draws?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (wins INTEGER, points VARCHAR, draws VARCHAR)
SELECT MIN(wins) FROM table_name_2 WHERE points = 34 AND draws > 13