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