combined_text
stringlengths
106
1.05k
###question:What is the name in the UK, with a release date of December 1966?###answer:SELECT name FROM table_name_24 WHERE location = "uk" AND release_date = "december 1966"###context:CREATE TABLE table_name_24 (name VARCHAR, location VARCHAR, release_date VARCHAR)
###question:What away team scored 107-104?###answer:SELECT away_team FROM table_name_84 WHERE score = "107-104"###context:CREATE TABLE table_name_84 (away_team VARCHAR, score VARCHAR)
###question:What was the away team for the New Zealand breakers?###answer:SELECT report FROM table_name_59 WHERE away_team = "new zealand breakers"###context:CREATE TABLE table_name_59 (report VARCHAR, away_team VARCHAR)
###question:What was the away team that scored 63-69?###answer:SELECT away_team FROM table_name_73 WHERE score = "63-69"###context:CREATE TABLE table_name_73 (away_team VARCHAR, score VARCHAR)
###question:Where is the player Davis Love III?###answer:SELECT place FROM table_name_82 WHERE player = "davis love iii"###context:CREATE TABLE table_name_82 (place VARCHAR, player VARCHAR)
###question:What is the second qualifying time for the dale coyne racing team with a first qualifying time of 1:00.081?###answer:SELECT qual_2 FROM table_name_31 WHERE team = "dale coyne racing" AND qual_1 = "1:00.081"###context:CREATE TABLE table_name_31 (qual_2 VARCHAR, team VARCHAR, qual_1 VARCHAR)
###question:Which team had a second qualifying time of 58.539?###answer:SELECT team FROM table_name_71 WHERE qual_2 = "58.539"###context:CREATE TABLE table_name_71 (team VARCHAR, qual_2 VARCHAR)
###question:What is the best time from patrick carpentier from the forsythe racing team?###answer:SELECT best FROM table_name_33 WHERE team = "forsythe racing" AND name = "patrick carpentier"###context:CREATE TABLE table_name_33 (best VARCHAR, team VARCHAR, name VARCHAR)
###question:What is the best time for a team with a first-qualifying time of 59.448?###answer:SELECT best FROM table_name_6 WHERE qual_1 = "59.448"###context:CREATE TABLE table_name_6 (best VARCHAR, qual_1 VARCHAR)
###question:What is the name of the racer with a best time of 57.546?###answer:SELECT name FROM table_name_34 WHERE best = "57.546"###context:CREATE TABLE table_name_34 (name VARCHAR, best VARCHAR)
###question:What is the name of the racer with a first-qualifying time of 58.991?###answer:SELECT name FROM table_name_76 WHERE qual_1 = "58.991"###context:CREATE TABLE table_name_76 (name VARCHAR, qual_1 VARCHAR)
###question:What is the average Points, when Played is greater than 126?###answer:SELECT AVG(points) FROM table_name_3 WHERE played > 126###context:CREATE TABLE table_name_3 (points INTEGER, played INTEGER)
###question:What is the sum of Average, when 2006 is "36/40", and when Played is greater than 126?###answer:SELECT SUM(average) FROM table_name_64 WHERE 2006 = "36/40" AND played > 126###context:CREATE TABLE table_name_64 (average INTEGER, played VARCHAR)
###question:What is 2006, when Team is "Tacuary"?###answer:SELECT 2006 FROM table_name_13 WHERE team = "tacuary"###context:CREATE TABLE table_name_13 (team VARCHAR)
###question:Which Rank has a Bronze of 3?###answer:SELECT rank FROM table_name_94 WHERE bronze = 3###context:CREATE TABLE table_name_94 (rank VARCHAR, bronze VARCHAR)
###question:What are the Runner(s)-up of the 1956 Championship?###answer:SELECT runner_s__up FROM table_name_52 WHERE year = "1956"###context:CREATE TABLE table_name_52 (runner_s__up VARCHAR, year VARCHAR)
###question:What are the Runner(s)-up of the 1972 Championship?###answer:SELECT runner_s__up FROM table_name_41 WHERE year = "1972"###context:CREATE TABLE table_name_41 (runner_s__up VARCHAR, year VARCHAR)
###question:What is the Country of the Championship with a Score of 293?###answer:SELECT country FROM table_name_12 WHERE score = "293"###context:CREATE TABLE table_name_12 (country VARCHAR, score VARCHAR)
###question:What is the total enrollment at the school that has the nickname of the Fightin' Blue Hens?###answer:SELECT COUNT(enrollment) FROM table_name_52 WHERE nickname = "fightin' blue hens"###context:CREATE TABLE table_name_52 (enrollment VARCHAR, nickname VARCHAR)
###question:What was the score for set 3 when set 1 was 14–25?###answer:SELECT set_3 FROM table_name_1 WHERE set_1 = "14–25"###context:CREATE TABLE table_name_1 (set_3 VARCHAR, set_1 VARCHAR)
###question:What is the time when the set 3 score is 31–29?###answer:SELECT time FROM table_name_23 WHERE set_3 = "31–29"###context:CREATE TABLE table_name_23 (time VARCHAR, set_3 VARCHAR)
###question:What is the total when the score for set 1 is 14–25?###answer:SELECT total FROM table_name_75 WHERE set_1 = "14–25"###context:CREATE TABLE table_name_75 (total VARCHAR, set_1 VARCHAR)
###question:What is the total when the score for set 2 is 20–25?###answer:SELECT total FROM table_name_21 WHERE set_2 = "20–25"###context:CREATE TABLE table_name_21 (total VARCHAR, set_2 VARCHAR)
###question:What is the total when the score for set 2 is 25–22?###answer:SELECT total FROM table_name_86 WHERE set_2 = "25–22"###context:CREATE TABLE table_name_86 (total VARCHAR, set_2 VARCHAR)
###question:What is the price of 150 mbps downstread?###answer:SELECT price FROM table_name_20 WHERE downstream = "150 mbps"###context:CREATE TABLE table_name_20 (price VARCHAR, downstream VARCHAR)
###question:What is the upstream with the price 65 chf?###answer:SELECT upstream FROM table_name_1 WHERE price = "65 chf"###context:CREATE TABLE table_name_1 (upstream VARCHAR, price VARCHAR)
###question:What is the price of the internet 150 plans?###answer:SELECT price FROM table_name_63 WHERE internet_plan = "internet 150"###context:CREATE TABLE table_name_63 (price VARCHAR, internet_plan VARCHAR)
###question:What is the upstream for the 100 mbps downstream?###answer:SELECT upstream FROM table_name_82 WHERE downstream = "100 mbps"###context:CREATE TABLE table_name_82 (upstream VARCHAR, downstream VARCHAR)
###question:What is the price of 60 mbps downstream?###answer:SELECT price FROM table_name_22 WHERE downstream = "60 mbps"###context:CREATE TABLE table_name_22 (price VARCHAR, downstream VARCHAR)
###question:What is the upstream for the internet 100 plans?###answer:SELECT upstream FROM table_name_42 WHERE internet_plan = "internet 100"###context:CREATE TABLE table_name_42 (upstream VARCHAR, internet_plan VARCHAR)
###question:Which club team was the player from who was selected in a round under 4?###answer:SELECT club_team FROM table_name_12 WHERE round < 4###context:CREATE TABLE table_name_12 (club_team VARCHAR, round INTEGER)
###question:What was the club team for Kyle de Coste?###answer:SELECT club_team FROM table_name_98 WHERE player = "kyle de coste"###context:CREATE TABLE table_name_98 (club_team VARCHAR, player VARCHAR)
###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?###answer: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###context:CREATE TABLE table_name_99 (w_plyf...
###question:What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?###answer:SELECT SUM(yr_plyf) FROM table_name_6 WHERE g_plyf = 0 AND coach = "ed robinson"###context:CREATE TABLE table_name_6 (yr_plyf INTEGER, g_plyf VARCHAR, coach VARCHAR)
###question:What is the total number of yr plyf with a G plyf less than 0?###answer:SELECT COUNT(yr_plyf) FROM table_name_56 WHERE g_plyf < 0###context:CREATE TABLE table_name_56 (yr_plyf VARCHAR, g_plyf INTEGER)
###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?###answer:SELECT coach FROM table_name_51 WHERE w_l_percentage > 0.516 AND first_yr < 1925 AND yr_plyf > 2 AND last_yr = 1967###context:CREATE TABLE table_name_51 (coach VARCHAR, last_yr ...
###question:What is the average last yr with an l plyf less than 0?###answer:SELECT AVG(last_yr) FROM table_name_98 WHERE l_plyf < 0###context:CREATE TABLE table_name_98 (last_yr INTEGER, l_plyf INTEGER)
###question:What is the earliest last year with a yr plyf less than 0?###answer:SELECT MIN(last_yr) FROM table_name_97 WHERE yr_plyf < 0###context:CREATE TABLE table_name_97 (last_yr INTEGER, yr_plyf INTEGER)
###question:What is the To par of the Player with a Score of 69-70=139?###answer:SELECT to_par FROM table_name_59 WHERE score = 69 - 70 = 139###context:CREATE TABLE table_name_59 (to_par VARCHAR, score VARCHAR)
###question:What is Bob Gilder in Place T3's To par?###answer:SELECT to_par FROM table_name_43 WHERE place = "t3" AND player = "bob gilder"###context:CREATE TABLE table_name_43 (to_par VARCHAR, place VARCHAR, player VARCHAR)
###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)"?###answer:SELECT high_points FROM table_name_19 WHERE game < 82 AND location_attendance = "quicken loans arena 20,562" AND high_rebounds = "žydrūnas i...
###question:What is the lowest Game, when High Assists is "Maurice Williams (8)"?###answer:SELECT MIN(game) FROM table_name_11 WHERE high_assists = "maurice williams (8)"###context:CREATE TABLE table_name_11 (game INTEGER, high_assists VARCHAR)
###question:What is the lowest Game, when Date is "April 12"?###answer:SELECT MIN(game) FROM table_name_95 WHERE date = "april 12"###context:CREATE TABLE table_name_95 (game INTEGER, date VARCHAR)
###question:What is Winner, when Date is 5 Sep?###answer:SELECT winner FROM table_name_43 WHERE date = "5 sep"###context:CREATE TABLE table_name_43 (winner VARCHAR, date VARCHAR)
###question:What is Team, when Circuit is Queensland Raceway, and when Winner is Garth Tander?###answer:SELECT team FROM table_name_96 WHERE circuit = "queensland raceway" AND winner = "garth tander"###context:CREATE TABLE table_name_96 (team VARCHAR, circuit VARCHAR, winner VARCHAR)
###question:What is Date, when Team is Holden Racing Team, and when Circuit is Eastern Creek Raceway?###answer:SELECT date FROM table_name_40 WHERE team = "holden racing team" AND circuit = "eastern creek raceway"###context:CREATE TABLE table_name_40 (date VARCHAR, team VARCHAR, circuit VARCHAR)
###question:What is Team, when Circuit is Phillip Island Grand Prix Circuit?###answer:SELECT team FROM table_name_1 WHERE circuit = "phillip island grand prix circuit"###context:CREATE TABLE table_name_1 (team VARCHAR, circuit VARCHAR)
###question:What is Circuit, when Series is ASTC Round 4?###answer:SELECT circuit FROM table_name_26 WHERE series = "astc round 4"###context:CREATE TABLE table_name_26 (circuit VARCHAR, series VARCHAR)
###question:What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2?###answer:SELECT COUNT(react) FROM table_name_78 WHERE name = "sean wroe" AND lane > 2###context:CREATE TABLE table_name_78 (react VARCHAR, name VARCHAR, lane VARCHAR)
###question:What is the highest Lane, when Mark is 46.65, and when React is greater than 0.251?###answer:SELECT MAX(lane) FROM table_name_44 WHERE mark = "46.65" AND react > 0.251###context:CREATE TABLE table_name_44 (lane INTEGER, mark VARCHAR, react VARCHAR)
###question:What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6?###answer:SELECT MIN(react) FROM table_name_61 WHERE mark = "46.26 sb" AND lane > 6###context:CREATE TABLE table_name_61 (react INTEGER, mark VARCHAR, lane VARCHAR)
###question:What is Mark, when Lane is greater than 2, and when Country is Bahamas?###answer:SELECT mark FROM table_name_44 WHERE lane > 2 AND country = "bahamas"###context:CREATE TABLE table_name_44 (mark VARCHAR, lane VARCHAR, country VARCHAR)
###question:What is the number of the belarusian language?###answer:SELECT number FROM table_name_11 WHERE language = "belarusian"###context:CREATE TABLE table_name_11 (number VARCHAR, language VARCHAR)
###question:What is the number with an 80.62 percentage?###answer:SELECT number FROM table_name_91 WHERE percentage___percentage_ = "80.62"###context:CREATE TABLE table_name_91 (number VARCHAR, percentage___percentage_ VARCHAR)
###question:How many males have a percentage of 80.62?###answer:SELECT males FROM table_name_82 WHERE percentage___percentage_ = "80.62"###context:CREATE TABLE table_name_82 (males VARCHAR, percentage___percentage_ VARCHAR)
###question:What is Name, when Team is New York Knicks, and when WSU Year(s) is 1965-68?###answer:SELECT name FROM table_name_8 WHERE team = "new york knicks" AND wsu_year_s_ = "1965-68"###context:CREATE TABLE table_name_8 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)
###question:What is Name, when WSU Year(s) is 1981-82?###answer:SELECT name FROM table_name_89 WHERE wsu_year_s_ = "1981-82"###context:CREATE TABLE table_name_89 (name VARCHAR, wsu_year_s_ VARCHAR)
###question:What is WSU Year(s), when Pro Year(s) is 1974-77?###answer:SELECT wsu_year_s_ FROM table_name_88 WHERE pro_year_s_ = "1974-77"###context:CREATE TABLE table_name_88 (wsu_year_s_ VARCHAR, pro_year_s_ VARCHAR)
###question:What is Pro Year(s), when Team is Cincinnati Royals?###answer:SELECT pro_year_s_ FROM table_name_79 WHERE team = "cincinnati royals"###context:CREATE TABLE table_name_79 (pro_year_s_ VARCHAR, team VARCHAR)
###question:What is Position, when Team is Cincinnati Royals?###answer:SELECT position FROM table_name_77 WHERE team = "cincinnati royals"###context:CREATE TABLE table_name_77 (position VARCHAR, team VARCHAR)
###question:What is Name, when Team is Detroit Pistons, and when WSU Year(s) is 1979-82?###answer:SELECT name FROM table_name_3 WHERE team = "detroit pistons" AND wsu_year_s_ = "1979-82"###context:CREATE TABLE table_name_3 (name VARCHAR, team VARCHAR, wsu_year_s_ VARCHAR)
###question:What is Position, when Overallis less than 314, and when Pick is less than 8?###answer:SELECT position FROM table_name_84 WHERE overall < 314 AND pick < 8###context:CREATE TABLE table_name_84 (position VARCHAR, overall VARCHAR, pick VARCHAR)
###question:What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10?###answer:SELECT AVG(overall) FROM table_name_8 WHERE round > 11 AND pick > 10###context:CREATE TABLE table_name_8 (overall INTEGER, round VARCHAR, pick VARCHAR)
###question:What is Name, when Overall is greater than 132, and when Round is 12?###answer:SELECT name FROM table_name_59 WHERE overall > 132 AND round = 12###context:CREATE TABLE table_name_59 (name VARCHAR, overall VARCHAR, round VARCHAR)
###question:What is College, when Pick is 20?###answer:SELECT college FROM table_name_18 WHERE pick = 20###context:CREATE TABLE table_name_18 (college VARCHAR, pick VARCHAR)
###question:What is average Overall, when Pick is 19?###answer:SELECT AVG(overall) FROM table_name_80 WHERE pick = 19###context:CREATE TABLE table_name_80 (overall INTEGER, pick VARCHAR)
###question:What is the average pick for Princeton after round 3?###answer:SELECT AVG(pick) FROM table_name_29 WHERE round > 3 AND college = "princeton"###context:CREATE TABLE table_name_29 (pick INTEGER, round VARCHAR, college VARCHAR)
###question:What is the earliest round Clark was in?###answer:SELECT MIN(round) FROM table_name_86 WHERE college = "clark"###context:CREATE TABLE table_name_86 (round INTEGER, college VARCHAR)
###question:What is the tie number when the home team was gillingham?###answer:SELECT tie_no FROM table_name_12 WHERE home_team = "gillingham"###context:CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR)
###question:What was the score when the home team was goole town?###answer:SELECT score FROM table_name_84 WHERE home_team = "goole town"###context:CREATE TABLE table_name_84 (score VARCHAR, home_team VARCHAR)
###question:What date had the home team as brentford?###answer:SELECT date FROM table_name_30 WHERE home_team = "brentford"###context:CREATE TABLE table_name_30 (date VARCHAR, home_team VARCHAR)
###question:What was the tie number when bradford park avenue was the away team?###answer:SELECT tie_no FROM table_name_96 WHERE away_team = "bradford park avenue"###context:CREATE TABLE table_name_96 (tie_no VARCHAR, away_team VARCHAR)
###question:What shows for House 1950 when the Governors 1950 show governors 1995?###answer:SELECT house_1950 FROM table_name_39 WHERE governors_1950 = "governors 1995"###context:CREATE TABLE table_name_39 (house_1950 VARCHAR, governors_1950 VARCHAR)
###question:What shows for House 1950 when the General 1950 is general 1986?###answer:SELECT house_1950 FROM table_name_19 WHERE general_1950 = "general 1986"###context:CREATE TABLE table_name_19 (house_1950 VARCHAR, general_1950 VARCHAR)
###question:What is the Governors 1950 when the General 1950 is general 1979?###answer:SELECT governors_1950 FROM table_name_46 WHERE general_1950 = "general 1979"###context:CREATE TABLE table_name_46 (governors_1950 VARCHAR, general_1950 VARCHAR)
###question:What shows for House 1950 with a 1950 less than 1980, and Governors 1950 of governors 1970?###answer:SELECT house_1950 FROM table_name_17 WHERE 1950 < 1980 AND governors_1950 = "governors 1970"###context:CREATE TABLE table_name_17 (house_1950 VARCHAR, governors_1950 VARCHAR)
###question:What month before 1973 is listed for the album united we stand?###answer:SELECT month FROM table_name_83 WHERE year < 1973 AND album = "united we stand"###context:CREATE TABLE table_name_83 (month VARCHAR, year VARCHAR, album VARCHAR)
###question:What is the name of the river found in Madhya Pradesh, India?###answer:SELECT name_of_the_river FROM table_name_31 WHERE name_of_the_state_where_found_in_india = "madhya pradesh"###context:CREATE TABLE table_name_31 (name_of_the_river VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
###question:What is the name of the deity that the state of Bihar was named after?###answer:SELECT name_of_deity FROM table_name_29 WHERE name_of_the_state_where_found_in_india = "bihar"###context:CREATE TABLE table_name_29 (name_of_deity VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
###question:What is the name of the diety for the river of sone?###answer:SELECT name_of_deity FROM table_name_16 WHERE name_of_the_river = "sone"###context:CREATE TABLE table_name_16 (name_of_deity VARCHAR, name_of_the_river VARCHAR)
###question:What is the name of the stone found in Andhra Pradesh, India?###answer:SELECT name_of_the_stone__sila_ FROM table_name_13 WHERE name_of_the_state_where_found_in_india = "andhra pradesh"###context:CREATE TABLE table_name_13 (name_of_the_stone__sila_ VARCHAR, name_of_the_state_where_found_in_india VARCHAR)
###question:What date was the game score 103-94?###answer:SELECT date FROM table_name_26 WHERE score = "103-94"###context:CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR)
###question:Who is the away team that played home team of Perth Wildcats?###answer:SELECT away_team FROM table_name_12 WHERE home_team = "perth wildcats"###context:CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR)
###question:What is the score of the game that was played on 29 November at State Sports Centre?###answer:SELECT score FROM table_name_29 WHERE date = "29 november" AND venue = "state sports centre"###context:CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR, venue VARCHAR)
###question:What date did home team Gold Coast Blaze play?###answer:SELECT date FROM table_name_14 WHERE home_team = "gold coast blaze"###context:CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR)
###question:What kind of report was for the game played on 29 November with Melbourne Tigers being the away team?###answer:SELECT report FROM table_name_89 WHERE date = "29 november" AND away_team = "melbourne tigers"###context:CREATE TABLE table_name_89 (report VARCHAR, date VARCHAR, away_team VARCHAR)
###question:Who is the away team that played home team Perth Wildcats?###answer:SELECT away_team FROM table_name_82 WHERE home_team = "perth wildcats"###context:CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR)
###question:Who did they play in week 11?###answer:SELECT opponent FROM table_name_79 WHERE week = 11###context:CREATE TABLE table_name_79 (opponent VARCHAR, week VARCHAR)
###question:What day did they play in week 6?###answer:SELECT date FROM table_name_36 WHERE week = 6###context:CREATE TABLE table_name_36 (date VARCHAR, week VARCHAR)
###question:Name the Date which has a Score of 3-1 and Attendances of 32 590?###answer:SELECT date FROM table_name_52 WHERE score = "3-1" AND attendance = "32 590"###context:CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR, attendance VARCHAR)
###question:Which Venue is on 2004-07-24?###answer:SELECT venue FROM table_name_68 WHERE date = "2004-07-24"###context:CREATE TABLE table_name_68 (venue VARCHAR, date VARCHAR)
###question:Which Score has a Venue of idrottsparken?###answer:SELECT score FROM table_name_31 WHERE venue = "idrottsparken"###context:CREATE TABLE table_name_31 (score VARCHAR, venue VARCHAR)
###question:Which Comp is on 2004-10-17?###answer:SELECT comp FROM table_name_84 WHERE date = "2004-10-17"###context:CREATE TABLE table_name_84 (comp VARCHAR, date VARCHAR)
###question:Which Venue has a Opponents of halmstad and a Score of 1-1?###answer:SELECT venue FROM table_name_84 WHERE opponents = "halmstad" AND score = "1-1"###context:CREATE TABLE table_name_84 (venue VARCHAR, opponents VARCHAR, score VARCHAR)
###question:Which Attendance that has a Venue of ryavallen?###answer:SELECT attendance FROM table_name_66 WHERE venue = "ryavallen"###context:CREATE TABLE table_name_66 (attendance VARCHAR, venue VARCHAR)
###question:What is Tournament, when Outcome is Winner, and when Date is 13 July 2013?###answer:SELECT tournament FROM table_name_63 WHERE outcome = "winner" AND date = "13 july 2013"###context:CREATE TABLE table_name_63 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)
###question:What is Date, when Outcome is Winner, and when Opponent is An-Sophie Mestach?###answer:SELECT date FROM table_name_68 WHERE outcome = "winner" AND opponent = "an-sophie mestach"###context:CREATE TABLE table_name_68 (date VARCHAR, outcome VARCHAR, opponent VARCHAR)
###question:What is Score, when Date is 10 July 2011?###answer:SELECT score FROM table_name_65 WHERE date = "10 july 2011"###context:CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
###question:What network has a Play-by-play by Jack Edwards in 2000?###answer:SELECT network FROM table_name_3 WHERE play_by_play = "jack edwards" AND year = 2000###context:CREATE TABLE table_name_3 (network VARCHAR, play_by_play VARCHAR, year VARCHAR)
###question:What is the name of the pregame host when Bold was the network?###answer:SELECT pregame_host FROM table_name_98 WHERE network = "bold"###context:CREATE TABLE table_name_98 (pregame_host VARCHAR, network VARCHAR)