instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the total when the score for set 1 is 14–25?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (total VARCHAR, set_1 VARCHAR)
SELECT total FROM table_name_75 WHERE set_1 = "14–25"
Write a SQL query that answers the following question: What is the total when the score for set 2 is 20–25?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (total VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_21 WHERE set_2 = "20–25"
Write a SQL query that answers the following question: What is the total when the score for set 2 is 25–22?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR)
SELECT total FROM table_name_86 WHERE set_2 = "25–22"
Write a SQL query that answers the following question: What is the price of 150 mbps downstread?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_20 (price VARCHAR, downstream VARCHAR)
SELECT price FROM table_name_20 WHERE downstream = "150 mbps"
Write a SQL query that answers the following question: What is the upstream with the price 65 chf?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (upstream VARCHAR, price VARCHAR)
SELECT upstream FROM table_name_1 WHERE price = "65 chf"
Write a SQL query that answers the following question: What is the price of the internet 150 plans?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (price VARCHAR, internet_plan VARCHAR)
SELECT price FROM table_name_63 WHERE internet_plan = "internet 150"
Write a SQL query that answers the following question: What is the upstream for the 100 mbps downstream?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (upstream VARCHAR, downstream VARCHAR)
SELECT upstream FROM table_name_82 WHERE downstream = "100 mbps"
Write a SQL query that answers the following question: What is the price of 60 mbps downstream?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (price VARCHAR, downstream VARCHAR)
SELECT price FROM table_name_22 WHERE downstream = "60 mbps"
Write a SQL query that answers the following question: What is the upstream for the internet 100 plans?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (upstream VARCHAR, internet_plan VARCHAR)
SELECT upstream FROM table_name_42 WHERE internet_plan = "internet 100"
Write a SQL query that answers the following question: Which club team was the player from who was selected in a round under 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (club_team VARCHAR, round INTEGER)
SELECT club_team FROM table_name_12 WHERE round < 4
Write a SQL query that answers the following question: What was the club team for Kyle de Coste?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (club_team VARCHAR, player VARCHAR)
SELECT club_team FROM table_name_98 WHERE player = "kyle de coste"
Write a SQL query that answers the following question: What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (w_plyf INTEGER, w_l_percentage VARCHAR, first_yr VARCHAR, g_plyf VARCHAR, g_ VARCHAR, _500 VARCHAR)
SELECT MAX(w_plyf) FROM table_name_99 WHERE first_yr < 1960 AND g_plyf > 0 AND g_ > _500 < 43 AND w_l_percentage < 0.578
Write a SQL query that answers the following question: What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (yr_plyf INTEGER, g_plyf VARCHAR, coach VARCHAR)
SELECT SUM(yr_plyf) FROM table_name_6 WHERE g_plyf = 0 AND coach = "ed robinson"
Write a SQL query that answers the following question: What is the total number of yr plyf with a G plyf less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (yr_plyf VARCHAR, g_plyf INTEGER)
SELECT COUNT(yr_plyf) FROM table_name_56 WHERE g_plyf < 0
Write a SQL query that answers the following question: Who is the coach with a w-l% greater than 0.516, a first yr before 1925, a yr plyf greater than 2, and a last yr in 1967?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (coach VARCHAR, last_yr VARCHAR, yr_plyf VARCHAR, w_l_percentage VARCHAR, first_yr VARCHAR)
SELECT coach FROM table_name_51 WHERE w_l_percentage > 0.516 AND first_yr < 1925 AND yr_plyf > 2 AND last_yr = 1967
Write a SQL query that answers the following question: What is the average last yr with an l plyf less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (last_yr INTEGER, l_plyf INTEGER)
SELECT AVG(last_yr) FROM table_name_98 WHERE l_plyf < 0
Write a SQL query that answers the following question: What is the earliest last year with a yr plyf less than 0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (last_yr INTEGER, yr_plyf INTEGER)
SELECT MIN(last_yr) FROM table_name_97 WHERE yr_plyf < 0
Write a SQL query that answers the following question: What is the To par of the Player with a Score of 69-70=139?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_59 WHERE score = 69 - 70 = 139
Write a SQL query that answers the following question: What is Bob Gilder in Place T3's To par?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_43 WHERE place = "t3" AND player = "bob gilder"
Write a SQL query that answers the following question: What is High Points, when Game is less than 82, when Location Attendance is "Quicken Loans Arena 20,562", and when High Rebounds is "Žydrūnas Ilgauskas (13)"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (high_points VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_name_19 WHERE game < 82 AND location_attendance = "quicken loans arena 20,562" AND high_rebounds = "žydrūnas ilgauskas (13)"
Write a SQL query that answers the following question: What is the lowest Game, when High Assists is "Maurice Williams (8)"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (game INTEGER, high_assists VARCHAR)
SELECT MIN(game) FROM table_name_11 WHERE high_assists = "maurice williams (8)"
Write a SQL query that answers the following question: What is the lowest Game, when Date is "April 12"?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_95 (game INTEGER, date VARCHAR)
SELECT MIN(game) FROM table_name_95 WHERE date = "april 12"
Write a SQL query that answers the following question: What is Winner, when Date is 5 Sep?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (winner VARCHAR, date VARCHAR)
SELECT winner FROM table_name_43 WHERE date = "5 sep"
Write a SQL query that answers the following question: What is Team, when Circuit is Queensland Raceway, and when Winner is Garth Tander?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (team VARCHAR, circuit VARCHAR, winner VARCHAR)
SELECT team FROM table_name_96 WHERE circuit = "queensland raceway" AND winner = "garth tander"
Write a SQL query that answers the following question: What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (date VARCHAR, team VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_40 WHERE team = "holden racing team" AND circuit = "eastern creek raceway"
Write a SQL query that answers the following question: What is Team, when Circuit is Phillip Island Grand Prix Circuit?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (team VARCHAR, circuit VARCHAR)
SELECT team FROM table_name_1 WHERE circuit = "phillip island grand prix circuit"
Write a SQL query that answers the following question: What is Circuit, when Series is ASTC Round 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (circuit VARCHAR, series VARCHAR)
SELECT circuit FROM table_name_26 WHERE series = "astc round 4"
Write a SQL query that answers the following question: What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (react VARCHAR, name VARCHAR, lane VARCHAR)
SELECT COUNT(react) FROM table_name_78 WHERE name = "sean wroe" AND lane > 2
Write a SQL query that answers the following question: What is the highest Lane, when Mark is 46.65, and when React is greater than 0.251?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (lane INTEGER, mark VARCHAR, react VARCHAR)
SELECT MAX(lane) FROM table_name_44 WHERE mark = "46.65" AND react > 0.251
Write a SQL query that answers the following question: What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (react INTEGER, mark VARCHAR, lane VARCHAR)
SELECT MIN(react) FROM table_name_61 WHERE mark = "46.26 sb" AND lane > 6
Write a SQL query that answers the following question: What is Mark, when Lane is greater than 2, and when Country is Bahamas?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_44 (mark VARCHAR, lane VARCHAR, country VARCHAR)
SELECT mark FROM table_name_44 WHERE lane > 2 AND country = "bahamas"
Write a SQL query that answers the following question: What is the number of the belarusian language?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (number VARCHAR, language VARCHAR)
SELECT number FROM table_name_11 WHERE language = "belarusian"
Write a SQL query that answers the following question: What is the number with an 80.62 percentage?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (number VARCHAR, percentage___percentage_ VARCHAR)
SELECT number FROM table_name_91 WHERE percentage___percentage_ = "80.62"
Write a SQL query that answers the following question: How many males have a percentage of 80.62?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (males VARCHAR, percentage___percentage_ VARCHAR)
SELECT males FROM table_name_82 WHERE percentage___percentage_ = "80.62"
Write a SQL query that answers the following question: What is Name, when Team is New York Knicks, and when WSU Year(s) is 1965-68?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)
SELECT name FROM table_name_8 WHERE team = "new york knicks" AND wsu_year_s_ = "1965-68"
Write a SQL query that answers the following question: What is Name, when WSU Year(s) is 1981-82?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (name VARCHAR, wsu_year_s_ VARCHAR)
SELECT name FROM table_name_89 WHERE wsu_year_s_ = "1981-82"
Write a SQL query that answers the following question: What is WSU Year(s), when Pro Year(s) is 1974-77?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (wsu_year_s_ VARCHAR, pro_year_s_ VARCHAR)
SELECT wsu_year_s_ FROM table_name_88 WHERE pro_year_s_ = "1974-77"
Write a SQL query that answers the following question: What is Pro Year(s), when Team is Cincinnati Royals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (pro_year_s_ VARCHAR, team VARCHAR)
SELECT pro_year_s_ FROM table_name_79 WHERE team = "cincinnati royals"
Write a SQL query that answers the following question: What is Position, when Team is Cincinnati Royals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (position VARCHAR, team VARCHAR)
SELECT position FROM table_name_77 WHERE team = "cincinnati royals"
Write a SQL query that answers the following question: What is Name, when Team is Detroit Pistons, and when WSU Year(s) is 1979-82?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)
SELECT name FROM table_name_3 WHERE team = "detroit pistons" AND wsu_year_s_ = "1979-82"
Write a SQL query that answers the following question: What is Position, when Overallis less than 314, and when Pick is less than 8?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (position VARCHAR, overall VARCHAR, pick VARCHAR)
SELECT position FROM table_name_84 WHERE overall < 314 AND pick < 8
Write a SQL query that answers the following question: What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (overall INTEGER, round VARCHAR, pick VARCHAR)
SELECT AVG(overall) FROM table_name_8 WHERE round > 11 AND pick > 10
Write a SQL query that answers the following question: What is Name, when Overall is greater than 132, and when Round is 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (name VARCHAR, overall VARCHAR, round VARCHAR)
SELECT name FROM table_name_59 WHERE overall > 132 AND round = 12
Write a SQL query that answers the following question: What is College, when Pick is 20?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (college VARCHAR, pick VARCHAR)
SELECT college FROM table_name_18 WHERE pick = 20
Write a SQL query that answers the following question: What is average Overall, when Pick is 19?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (overall INTEGER, pick VARCHAR)
SELECT AVG(overall) FROM table_name_80 WHERE pick = 19
Write a SQL query that answers the following question: What is the average pick for Princeton after round 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (pick INTEGER, round VARCHAR, college VARCHAR)
SELECT AVG(pick) FROM table_name_29 WHERE round > 3 AND college = "princeton"
Write a SQL query that answers the following question: What is the earliest round Clark was in?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (round INTEGER, college VARCHAR)
SELECT MIN(round) FROM table_name_86 WHERE college = "clark"
Write a SQL query that answers the following question: What is the tie number when the home team was gillingham?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_12 WHERE home_team = "gillingham"
Write a SQL query that answers the following question: What was the score when the home team was goole town?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_84 WHERE home_team = "goole town"
Write a SQL query that answers the following question: What date had the home team as brentford?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_30 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_30 WHERE home_team = "brentford"
Write a SQL query that answers the following question: What was the tie number when bradford park avenue was the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_96 WHERE away_team = "bradford park avenue"
Write a SQL query that answers the following question: What shows for House 1950 when the Governors 1950 show governors 1995?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (house_1950 VARCHAR, governors_1950 VARCHAR)
SELECT house_1950 FROM table_name_39 WHERE governors_1950 = "governors 1995"
Write a SQL query that answers the following question: What shows for House 1950 when the General 1950 is general 1986?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (house_1950 VARCHAR, general_1950 VARCHAR)
SELECT house_1950 FROM table_name_19 WHERE general_1950 = "general 1986"
Write a SQL query that answers the following question: What is the Governors 1950 when the General 1950 is general 1979?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (governors_1950 VARCHAR, general_1950 VARCHAR)
SELECT governors_1950 FROM table_name_46 WHERE general_1950 = "general 1979"
Write a SQL query that answers the following question: What shows for House 1950 with a 1950 less than 1980, and Governors 1950 of governors 1970?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (house_1950 VARCHAR, governors_1950 VARCHAR)
SELECT house_1950 FROM table_name_17 WHERE 1950 < 1980 AND governors_1950 = "governors 1970"
Write a SQL query that answers the following question: What month before 1973 is listed for the album united we stand?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (month VARCHAR, year VARCHAR, album VARCHAR)
SELECT month FROM table_name_83 WHERE year < 1973 AND album = "united we stand"
Write a SQL query that answers the following question: What is the name of the river found in Madhya Pradesh, India?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (name_of_the_river VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
SELECT name_of_the_river FROM table_name_31 WHERE name_of_the_state_where_found_in_india = "madhya pradesh"
Write a SQL query that answers the following question: What is the name of the deity that the state of Bihar was named after?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (name_of_deity VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
SELECT name_of_deity FROM table_name_29 WHERE name_of_the_state_where_found_in_india = "bihar"
Write a SQL query that answers the following question: What is the name of the diety for the river of sone?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (name_of_deity VARCHAR, name_of_the_river VARCHAR)
SELECT name_of_deity FROM table_name_16 WHERE name_of_the_river = "sone"
Write a SQL query that answers the following question: What is the name of the stone found in Andhra Pradesh, India?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (name_of_the_stone__sila_ VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
SELECT name_of_the_stone__sila_ FROM table_name_13 WHERE name_of_the_state_where_found_in_india = "andhra pradesh"
Write a SQL query that answers the following question: What date was the game score 103-94?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_26 WHERE score = "103-94"
Write a SQL query that answers the following question: Who is the away team that played home team of Perth Wildcats?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_12 WHERE home_team = "perth wildcats"
Write a SQL query that answers the following question: What is the score of the game that was played on 29 November at State Sports Centre?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR, venue VARCHAR)
SELECT score FROM table_name_29 WHERE date = "29 november" AND venue = "state sports centre"
Write a SQL query that answers the following question: What date did home team Gold Coast Blaze play?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_14 WHERE home_team = "gold coast blaze"
Write a SQL query that answers the following question: What kind of report was for the game played on 29 November with Melbourne Tigers being the away team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (report VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT report FROM table_name_89 WHERE date = "29 november" AND away_team = "melbourne tigers"
Write a SQL query that answers the following question: Who is the away team that played home team Perth Wildcats?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_82 WHERE home_team = "perth wildcats"
Write a SQL query that answers the following question: Who did they play in week 11?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_79 WHERE week = 11
Write a SQL query that answers the following question: What day did they play in week 6?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_36 WHERE week = 6
Write a SQL query that answers the following question: Name the Date which has a Score of 3-1 and Attendances of 32 590?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_52 WHERE score = "3-1" AND attendance = "32 590"
Write a SQL query that answers the following question: Which Venue is on 2004-07-24?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_68 WHERE date = "2004-07-24"
Write a SQL query that answers the following question: Which Score has a Venue of idrottsparken?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_31 WHERE venue = "idrottsparken"
Write a SQL query that answers the following question: Which Comp is on 2004-10-17?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (comp VARCHAR, date VARCHAR)
SELECT comp FROM table_name_84 WHERE date = "2004-10-17"
Write a SQL query that answers the following question: Which Venue has a Opponents of halmstad and a Score of 1-1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (venue VARCHAR, opponents VARCHAR, score VARCHAR)
SELECT venue FROM table_name_84 WHERE opponents = "halmstad" AND score = "1-1"
Write a SQL query that answers the following question: Which Attendance that has a Venue of ryavallen?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (attendance VARCHAR, venue VARCHAR)
SELECT attendance FROM table_name_66 WHERE venue = "ryavallen"
Write a SQL query that answers the following question: What is Tournament, when Outcome is Winner, and when Date is 13 July 2013?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_63 WHERE outcome = "winner" AND date = "13 july 2013"
Write a SQL query that answers the following question: What is Date, when Outcome is Winner, and when Opponent is An-Sophie Mestach?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_68 WHERE outcome = "winner" AND opponent = "an-sophie mestach"
Write a SQL query that answers the following question: What is Score, when Date is 10 July 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_65 WHERE date = "10 july 2011"
Write a SQL query that answers the following question: What network has a Play-by-play by Jack Edwards in 2000?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_3 (network VARCHAR, play_by_play VARCHAR, year VARCHAR)
SELECT network FROM table_name_3 WHERE play_by_play = "jack edwards" AND year = 2000
Write a SQL query that answers the following question: What is the name of the pregame host when Bold was the network?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (pregame_host VARCHAR, network VARCHAR)
SELECT pregame_host FROM table_name_98 WHERE network = "bold"
Write a SQL query that answers the following question: What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (play_by_play VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)
SELECT play_by_play FROM table_name_11 WHERE color_commentator_s_ = "eric wynalda" AND year < 2005
Write a SQL query that answers the following question: What is the name of the pregame host when the Play-by-play was by JP Dellacamera, earlier than 2009, and Color commentator(s) was Ty Keough?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (pregame_host VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR)
SELECT pregame_host FROM table_name_67 WHERE play_by_play = "jp dellacamera" AND year < 2009 AND color_commentator_s_ = "ty keough"
Write a SQL query that answers the following question: What date was the score 3–0, and set 1 was 25–22?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, set_1 VARCHAR)
SELECT date FROM table_name_88 WHERE score = "3–0" AND set_1 = "25–22"
Write a SQL query that answers the following question: What date was the total 56–75?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (date VARCHAR, total VARCHAR)
SELECT date FROM table_name_31 WHERE total = "56–75"
Write a SQL query that answers the following question: What is the Set 1 when Set 3 was 25–15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_34 (set_1 VARCHAR, set_3 VARCHAR)
SELECT set_1 FROM table_name_34 WHERE set_3 = "25–15"
Write a SQL query that answers the following question: What date was the total 75–45?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR)
SELECT date FROM table_name_42 WHERE total = "75–45"
Write a SQL query that answers the following question: What is the sum of the dates in december that were against the atlanta flames before game 40?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (december INTEGER, opponent VARCHAR, game VARCHAR)
SELECT SUM(december) FROM table_name_88 WHERE opponent = "atlanta flames" AND game < 40
Write a SQL query that answers the following question: What was the score of the game against montreal canadiens after game 26?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (score VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_59 WHERE game > 26 AND opponent = "montreal canadiens"
Write a SQL query that answers the following question: In what Round was Grant Long Drafted?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (round INTEGER, player VARCHAR)
SELECT MIN(round) FROM table_name_6 WHERE player = "grant long"
Write a SQL query that answers the following question: What is the Player from Memphis?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_70 WHERE school_club_team = "memphis"
Write a SQL query that answers the following question: What Player was picked after Round 2 with a Pick number larger than 33?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR, round VARCHAR)
SELECT player FROM table_name_58 WHERE pick > 33 AND round > 2
Write a SQL query that answers the following question: In what Round was the Memphis Player drafted?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (round INTEGER, school_club_team VARCHAR)
SELECT AVG(round) FROM table_name_75 WHERE school_club_team = "memphis"
Write a SQL query that answers the following question: Which School/Club Team holds the 2006-2009 Years of Grizzlies ?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (school_club_team VARCHAR, years_for_grizzlies VARCHAR)
SELECT school_club_team FROM table_name_22 WHERE years_for_grizzlies = "2006-2009"
Write a SQL query that answers the following question: Who was the Player in the 1998-2000 Year of Grizzlies?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (player VARCHAR, years_for_grizzlies VARCHAR)
SELECT player FROM table_name_14 WHERE years_for_grizzlies = "1998-2000"
Write a SQL query that answers the following question: What is the Nationality of the 1998-2000 Years for Grizzlies?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (nationality VARCHAR, years_for_grizzlies VARCHAR)
SELECT nationality FROM table_name_54 WHERE years_for_grizzlies = "1998-2000"
Write a SQL query that answers the following question: Who was the 1999-2002 Years for Grizzlies small forward Player who was from the United States?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (player VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR)
SELECT player FROM table_name_71 WHERE nationality = "united states" AND position = "small forward" AND years_for_grizzlies = "1999-2002"
Write a SQL query that answers the following question: Which Player is the shooting guard?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_69 WHERE position = "shooting guard"
Write a SQL query that answers the following question: What is the location and attendance of game 44?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_name_65 WHERE game = 44
Write a SQL query that answers the following question: What is the record of game 42, which had a clemmensen decision?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_76 (record VARCHAR, decision VARCHAR, game VARCHAR)
SELECT record FROM table_name_76 WHERE decision = "clemmensen" AND game = 42
Write a SQL query that answers the following question: What country parred E and scored 71-73-70-74=288?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT country FROM table_name_19 WHERE to_par = "e" AND score = 71 - 73 - 70 - 74 = 288
Write a SQL query that answers the following question: How much money was scored for 73-71-70-73=287?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (money___$__ VARCHAR, score VARCHAR)
SELECT money___$__ FROM table_name_13 WHERE score = 73 - 71 - 70 - 73 = 287