Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
52,000
<question>: What is the High rebounds with a Game that is 62? <context>: CREATE TABLE table_name_71 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_name_71 WHERE game = 62
52,001
<question>: What is the Team with a Score that is l 79–92 (ot)? <context>: CREATE TABLE table_name_35 (team VARCHAR, score VARCHAR)
SELECT team FROM table_name_35 WHERE score = "l 79–92 (ot)"
52,002
<question>: Who is the coach of the 2012 Gold Coast Titans season? <context>: CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR)
SELECT coach FROM table_name_4 WHERE details = "2012 gold coast titans season"
52,003
<question>: Who is the coach of the 2010 Gold Coast Titans season? <context>: CREATE TABLE table_name_8 (coach VARCHAR, details VARCHAR)
SELECT coach FROM table_name_8 WHERE details = "2010 gold coast titans season"
52,004
<question>: Who is the captain of the 2012 NRL season competition? <context>: CREATE TABLE table_name_75 (captain_s_ VARCHAR, competition VARCHAR)
SELECT captain_s_ FROM table_name_75 WHERE competition = "2012 nrl season"
52,005
<question>: How many wins were in the PGA Championship when there were more than 10 events? <context>: CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR)
SELECT COUNT(wins) FROM table_name_55 WHERE tournament = "pga championship" AND events > 10
52,006
<question>: What is the smallest number of cuts when there were more than 0 wins? <context>: CREATE TABLE table_name_59 (cuts_made INTEGER, wins INTEGER)
SELECT MIN(cuts_made) FROM table_name_59 WHERE wins > 0
52,007
<question>: What is the total number of Rank for 1996–2007, when there are more than 108 goals? <context>: CREATE TABLE table_name_51 (rank VARCHAR, years VARCHAR, goals VARCHAR)
SELECT COUNT(rank) FROM table_name_51 WHERE years = "1996–2007" AND goals > 108
52,008
<question>: What is the lowest Rank when the goals are less than 124 for Jeff Cunningham? <context>: CREATE TABLE table_name_50 (rank INTEGER, goals VARCHAR, name VARCHAR)
SELECT MIN(rank) FROM table_name_50 WHERE goals > 124 AND name = "jeff cunningham"
52,009
<question>: What is the total number of Rank with 100 goals, and less than 300 matches? <context>: CREATE TABLE table_name_3 (rank VARCHAR, goals VARCHAR, matches VARCHAR)
SELECT COUNT(rank) FROM table_name_3 WHERE goals = 100 AND matches < 300
52,010
<question>: What is the highest Rank for Jason Kreis, with less than 305 matches? <context>: CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR, matches VARCHAR)
SELECT MAX(rank) FROM table_name_67 WHERE name = "jason kreis" AND matches < 305
52,011
<question>: What is the least number of wins when the top 10 is more than 8? <context>: CREATE TABLE table_name_41 (wins INTEGER, top_10 INTEGER)
SELECT MIN(wins) FROM table_name_41 WHERE top_10 > 8
52,012
<question>: What is the sum of cuts made when the top-5 is 2, and there are 12 events? <context>: CREATE TABLE table_name_45 (cuts_made VARCHAR, top_5 VARCHAR, events VARCHAR)
SELECT COUNT(cuts_made) FROM table_name_45 WHERE top_5 = 2 AND events = 12
52,013
<question>: What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins? <context>: CREATE TABLE table_name_61 (top_5 INTEGER, top_25 VARCHAR, wins VARCHAR)
SELECT AVG(top_5) FROM table_name_61 WHERE top_25 = 1 AND wins < 0
52,014
<question>: What is the mean number of events when top-5 is 1? <context>: CREATE TABLE table_name_51 (events INTEGER, top_5 VARCHAR)
SELECT AVG(events) FROM table_name_51 WHERE top_5 = 1
52,015
<question>: How many top-25s are associated with more than 91 events? <context>: CREATE TABLE table_name_24 (top_25 INTEGER, events INTEGER)
SELECT SUM(top_25) FROM table_name_24 WHERE events > 91
52,016
<question>: What is the lowest Wins with a Top-10 that is larger than 9? <context>: CREATE TABLE table_name_40 (wins INTEGER, top_10 INTEGER)
SELECT MIN(wins) FROM table_name_40 WHERE top_10 > 9
52,017
<question>: What is the average Cuts that were made with a Top-10 that is larger than 9? <context>: CREATE TABLE table_name_15 (cuts_made INTEGER, top_10 INTEGER)
SELECT AVG(cuts_made) FROM table_name_15 WHERE top_10 > 9
52,018
<question>: Which record has 64,053 as the attendance? <context>: CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_51 WHERE attendance = "64,053"
52,019
<question>: Which date has rich stadium as the game site for week 1? <context>: CREATE TABLE table_name_13 (date VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT date FROM table_name_13 WHERE game_site = "rich stadium" AND week = 1
52,020
<question>: Which date has 1 as the week? <context>: CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_22 WHERE week = 1
52,021
<question>: Which Title was awarded the gold RIAA Sales Certification? <context>: CREATE TABLE table_name_5 (title VARCHAR, riaa_sales_certification VARCHAR)
SELECT title FROM table_name_5 WHERE riaa_sales_certification = "gold"
52,022
<question>: For how many years did the song "Lost Without Your Love" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26? <context>: CREATE TABLE table_name_80 (year INTEGER, billboard_200_peak VARCHAR, riaa_sales_certification VARCHAR, title VARCHAR)
SELECT SUM(year) FROM table_name_80 WHERE riaa_sales_certification = "gold" AND title = "lost without your love" AND billboard_200_peak > 26
52,023
<question>: Before the Year 1972, what RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak less than 18? <context>: CREATE TABLE table_name_50 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR, year VARCHAR)
SELECT riaa_sales_certification FROM table_name_50 WHERE billboard_200_peak < 18 AND year < 1972
52,024
<question>: What RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak of 21? <context>: CREATE TABLE table_name_1 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR)
SELECT riaa_sales_certification FROM table_name_1 WHERE billboard_200_peak = 21
52,025
<question>: What is the sum of the Billboard 200 Peak scores after the Year 1971? <context>: CREATE TABLE table_name_38 (billboard_200_peak INTEGER, year INTEGER)
SELECT SUM(billboard_200_peak) FROM table_name_38 WHERE year > 1971
52,026
<question>: What is the sum of the Billboard 200 Peak scores given to the song with the Title Bread? <context>: CREATE TABLE table_name_70 (billboard_200_peak INTEGER, title VARCHAR)
SELECT SUM(billboard_200_peak) FROM table_name_70 WHERE title = "bread"
52,027
<question>: What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria? <context>: CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = "austria"
52,028
<question>: What nation has 2 bronze and a rank of 9? <context>: CREATE TABLE table_name_54 (nation VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT nation FROM table_name_54 WHERE bronze = 2 AND rank = 9
52,029
<question>: What is the highest gold when bronze is 1, and rank is 5? <context>: CREATE TABLE table_name_93 (gold INTEGER, bronze VARCHAR, rank VARCHAR)
SELECT MAX(gold) FROM table_name_93 WHERE bronze = 1 AND rank = 5
52,030
<question>: What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0? <context>: CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0
52,031
<question>: What is the sum of rank when total is 3 and the nation is Australia? <context>: CREATE TABLE table_name_12 (rank INTEGER, total VARCHAR, nation VARCHAR)
SELECT SUM(rank) FROM table_name_12 WHERE total = 3 AND nation = "australia"
52,032
<question>: What is the Rank with a Goal number smaller than 66? <context>: CREATE TABLE table_name_29 (rank VARCHAR, goals INTEGER)
SELECT rank FROM table_name_29 WHERE goals < 66
52,033
<question>: What is the spoofed title for Parks and Recreation with an issue larger than 509? <context>: CREATE TABLE table_name_43 (spoofed_title VARCHAR, issue VARCHAR, actual_title VARCHAR)
SELECT spoofed_title FROM table_name_43 WHERE issue > 509 AND actual_title = "parks and recreation"
52,034
<question>: What was the actual title of the show that had an issue number less than 508, was written by Desmond Devlin, and for which Tom Richmond was the artist? <context>: CREATE TABLE table_name_15 (actual_title VARCHAR, writer VARCHAR, artist VARCHAR, issue VARCHAR)
SELECT actual_title FROM table_name_15 WHERE artist = "tom richmond" AND issue < 508 AND writer = "desmond devlin"
52,035
<question>: What issue was the spoofed title Ho-Hum land? <context>: CREATE TABLE table_name_75 (issue INTEGER, spoofed_title VARCHAR)
SELECT SUM(issue) FROM table_name_75 WHERE spoofed_title = "ho-hum land"
52,036
<question>: Game of Thrones was done by which artist? <context>: CREATE TABLE table_name_82 (artist VARCHAR, actual_title VARCHAR)
SELECT artist FROM table_name_82 WHERE actual_title = "game of thrones"
52,037
<question>: What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997? <context>: CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT surface FROM table_name_77 WHERE outcome = "runner-up" AND date = "24 february 1997"
52,038
<question>: What is the Opponent when Todd Woodbridge was the runner-up, and a Date of 26 august 1996? <context>: CREATE TABLE table_name_52 (opponent VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_52 WHERE outcome = "runner-up" AND date = "26 august 1996"
52,039
<question>: What is the Surface when the score was 4–6, 6–3, 6–7 (5–7)? <context>: CREATE TABLE table_name_75 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_75 WHERE score = "4–6, 6–3, 6–7 (5–7)"
52,040
<question>: What is the Score when there was a hard surface and the Championship is new haven , usa? <context>: CREATE TABLE table_name_93 (score VARCHAR, surface VARCHAR, championship VARCHAR)
SELECT score FROM table_name_93 WHERE surface = "hard" AND championship = "new haven , usa"
52,041
<question>: Which Position player was born June 30, 1981? <context>: CREATE TABLE table_name_90 (position VARCHAR, birthdate VARCHAR)
SELECT position FROM table_name_90 WHERE birthdate = "june 30, 1981"
52,042
<question>: What is the 2005-2006 team for player Phil Kessel? <context>: CREATE TABLE table_name_89 (name VARCHAR)
SELECT 2005 AS _2006_team FROM table_name_89 WHERE name = "phil kessel"
52,043
<question>: What is the total sum of the goals at competitions with more than 10 draws? <context>: CREATE TABLE table_name_84 (goals_for INTEGER, drawn INTEGER)
SELECT SUM(goals_for) FROM table_name_84 WHERE drawn > 10
52,044
<question>: For the teams that had more than 2 Byes, what was the highest number of Wins? <context>: CREATE TABLE table_name_14 (wins INTEGER, byes INTEGER)
SELECT MAX(wins) FROM table_name_14 WHERE byes > 2
52,045
<question>: For the teams that had fewer than 4 Losses, and less than 16 Wins, what was the total number of Draws? <context>: CREATE TABLE table_name_21 (draws VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT COUNT(draws) FROM table_name_21 WHERE losses < 4 AND wins < 16
52,046
<question>: For the teams that had less than 1 loss, what was the average number of Wins? <context>: CREATE TABLE table_name_51 (wins INTEGER, losses INTEGER)
SELECT AVG(wins) FROM table_name_51 WHERE losses < 1
52,047
<question>: For the teams that had fewer than 1 Byes, what was the lowest number of Draws? <context>: CREATE TABLE table_name_38 (draws INTEGER, byes INTEGER)
SELECT MIN(draws) FROM table_name_38 WHERE byes < 1
52,048
<question>: What was the highest number of Draws scored by Sebastapol when the value for Against was less than 1802? <context>: CREATE TABLE table_name_24 (draws INTEGER, ballarat_fl VARCHAR, against VARCHAR)
SELECT MAX(draws) FROM table_name_24 WHERE ballarat_fl = "sebastapol" AND against < 1802
52,049
<question>: What is the Season when the Opponent was zenit st. petersburg? <context>: CREATE TABLE table_name_68 (season VARCHAR, opponent VARCHAR)
SELECT season FROM table_name_68 WHERE opponent = "zenit st. petersburg"
52,050
<question>: What is the Opponent with a Round of q2, in the 2005–06 season? <context>: CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, season VARCHAR)
SELECT opponent FROM table_name_75 WHERE round = "q2" AND season = "2005–06"
52,051
<question>: What is the Competition for Season 2002–03, and the Opponent was zenit st. petersburg? <context>: CREATE TABLE table_name_86 (competition VARCHAR, season VARCHAR, opponent VARCHAR)
SELECT competition FROM table_name_86 WHERE season = "2002–03" AND opponent = "zenit st. petersburg"
52,052
<question>: What is the Round when the series shows 5th place, and a Season of 2006–07? <context>: CREATE TABLE table_name_86 (round VARCHAR, series VARCHAR, season VARCHAR)
SELECT round FROM table_name_86 WHERE series = "5th place" AND season = "2006–07"
52,053
<question>: What is the Series for the uefa cup, in the 2006–07 season, and a Round of group, and an opponent of az? <context>: CREATE TABLE table_name_35 (series VARCHAR, opponent VARCHAR, round VARCHAR, competition VARCHAR, season VARCHAR)
SELECT series FROM table_name_35 WHERE competition = "uefa cup" AND season = "2006–07" AND round = "group" AND opponent = "az"
52,054
<question>: Which Flag did the Ship Aidavita have? <context>: CREATE TABLE table_name_66 (flag VARCHAR, ship VARCHAR)
SELECT flag FROM table_name_66 WHERE ship = "aidavita"
52,055
<question>: What shows for Set 5 when the Total was 77 - 65? <context>: CREATE TABLE table_name_85 (set_5 VARCHAR, total VARCHAR)
SELECT set_5 FROM table_name_85 WHERE total = "77 - 65"
52,056
<question>: What is the Set 3 when the Total was 98 - 92? <context>: CREATE TABLE table_name_27 (set_3 VARCHAR, total VARCHAR)
SELECT set_3 FROM table_name_27 WHERE total = "98 - 92"
52,057
<question>: What is the Total when the Set 3 was 25-15? <context>: CREATE TABLE table_name_68 (total VARCHAR, set_3 VARCHAR)
SELECT total FROM table_name_68 WHERE set_3 = "25-15"
52,058
<question>: What is the Set 3 when the Total was 62 - 75? <context>: CREATE TABLE table_name_72 (set_3 VARCHAR, total VARCHAR)
SELECT set_3 FROM table_name_72 WHERE total = "62 - 75"
52,059
<question>: What is the Score when Set 2 shows 25-20, and a Total of 75 - 49? <context>: CREATE TABLE table_name_27 (score VARCHAR, set_2 VARCHAR, total VARCHAR)
SELECT score FROM table_name_27 WHERE set_2 = "25-20" AND total = "75 - 49"
52,060
<question>: What is the ethernet ports of the m1500 appliance? <context>: CREATE TABLE table_name_5 (ethernet_ports VARCHAR, name VARCHAR)
SELECT ethernet_ports FROM table_name_5 WHERE name = "m1500"
52,061
<question>: What is the ethernet ports of the u150 appliance? <context>: CREATE TABLE table_name_86 (ethernet_ports VARCHAR, name VARCHAR)
SELECT ethernet_ports FROM table_name_86 WHERE name = "u150"
52,062
<question>: What is the dimensions of the u50 appliance? <context>: CREATE TABLE table_name_27 (dimensions VARCHAR, name VARCHAR)
SELECT dimensions FROM table_name_27 WHERE name = "u50"
52,063
<question>: What is the ethernet ports of the u10 appliance? <context>: CREATE TABLE table_name_51 (ethernet_ports VARCHAR, name VARCHAR)
SELECT ethernet_ports FROM table_name_51 WHERE name = "u10"
52,064
<question>: What is the total number of Silver medals for the Nation with less than 1 Bronze? <context>: CREATE TABLE table_name_84 (silver VARCHAR, bronze INTEGER)
SELECT COUNT(silver) FROM table_name_84 WHERE bronze < 1
52,065
<question>: What is the total number of Gold medals for the Nation with more than 1 Bronze and more the 4 Total medals? <context>: CREATE TABLE table_name_70 (gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT COUNT(gold) FROM table_name_70 WHERE bronze > 1 AND total > 4
52,066
<question>: What is the total number of Gold medals for the Nation with more than 3 Bronze? <context>: CREATE TABLE table_name_15 (gold VARCHAR, bronze INTEGER)
SELECT COUNT(gold) FROM table_name_15 WHERE bronze > 3
52,067
<question>: How many Gold medals did Great Britain with a Total of more than 2 medals receive? <context>: CREATE TABLE table_name_83 (gold INTEGER, nation VARCHAR, total VARCHAR)
SELECT MIN(gold) FROM table_name_83 WHERE nation = "great britain" AND total > 2
52,068
<question>: How many Silver medals did the Nation with a Rank of less than 1 receive? <context>: CREATE TABLE table_name_37 (silver INTEGER, rank INTEGER)
SELECT AVG(silver) FROM table_name_37 WHERE rank < 1
52,069
<question>: What is the average total with 1 FA cup and more than 0 FA trophies? <context>: CREATE TABLE table_name_61 (total INTEGER, fa_cup VARCHAR, fa_trophy VARCHAR)
SELECT AVG(total) FROM table_name_61 WHERE fa_cup = 1 AND fa_trophy > 0
52,070
<question>: Which club had more than 2 FA trophies and more than 2 FA cups? <context>: CREATE TABLE table_name_34 (club VARCHAR, fa_trophy VARCHAR, fa_cup VARCHAR)
SELECT club FROM table_name_34 WHERE fa_trophy > 2 AND fa_cup > 2
52,071
<question>: Who was the opponent when the Maroons record was 11–4–1? <context>: CREATE TABLE table_name_37 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_37 WHERE record = "11–4–1"
52,072
<question>: What was the result of the game on January 5, 1926? <context>: CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_79 WHERE date = "january 5, 1926"
52,073
<question>: What date had a margin victory of 2 strokes? <context>: CREATE TABLE table_name_91 (date VARCHAR, margin_of_victory VARCHAR)
SELECT date FROM table_name_91 WHERE margin_of_victory = "2 strokes"
52,074
<question>: What is the margin of victory in a semgroup championship? <context>: CREATE TABLE table_name_39 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_39 WHERE tournament = "semgroup championship"
52,075
<question>: What was the winning score with a margin victory of 2 strokes? <context>: CREATE TABLE table_name_81 (winning_score VARCHAR, margin_of_victory VARCHAR)
SELECT winning_score FROM table_name_81 WHERE margin_of_victory = "2 strokes"
52,076
<question>: What is the highest Pct %, when Goals Against is less than 229? <context>: CREATE TABLE table_name_60 (pct__percentage INTEGER, goals_against INTEGER)
SELECT MAX(pct__percentage) FROM table_name_60 WHERE goals_against < 229
52,077
<question>: What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81? <context>: CREATE TABLE table_name_37 (goals_for INTEGER, playoffs VARCHAR, games VARCHAR)
SELECT AVG(goals_for) FROM table_name_37 WHERE playoffs = "lost in round 2" AND games < 81
52,078
<question>: What is the sum of Goals Against, when Lost is 45, and when Points is greater than 68? <context>: CREATE TABLE table_name_33 (goals_against INTEGER, lost VARCHAR, points VARCHAR)
SELECT SUM(goals_against) FROM table_name_33 WHERE lost = 45 AND points > 68
52,079
<question>: What is the average Lost, when Games is less than 82, when Points is less than 95, and when Pct % is less than 0.506? <context>: CREATE TABLE table_name_14 (lost INTEGER, pct__percentage VARCHAR, games VARCHAR, points VARCHAR)
SELECT AVG(lost) FROM table_name_14 WHERE games < 82 AND points < 95 AND pct__percentage < 0.506
52,080
<question>: What is the Class when Wessex Trains Pink is the Livery? <context>: CREATE TABLE table_name_90 (class VARCHAR, livery VARCHAR)
SELECT class FROM table_name_90 WHERE livery = "wessex trains pink"
52,081
<question>: What is the Livery when the Number is 31468? <context>: CREATE TABLE table_name_57 (livery VARCHAR, number VARCHAR)
SELECT livery FROM table_name_57 WHERE number = 31468
52,082
<question>: What was the Skip for Germany? <context>: CREATE TABLE table_name_6 (skip VARCHAR, nation VARCHAR)
SELECT skip FROM table_name_6 WHERE nation = "germany"
52,083
<question>: What was the club for Great Britain? <context>: CREATE TABLE table_name_58 (club VARCHAR, nation VARCHAR)
SELECT club FROM table_name_58 WHERE nation = "great britain"
52,084
<question>: Who is the alternate for Magnus Swartling as Second? <context>: CREATE TABLE table_name_38 (alternate VARCHAR, second VARCHAR)
SELECT alternate FROM table_name_38 WHERE second = "magnus swartling"
52,085
<question>: Which club has Jamie Korab as Lead? <context>: CREATE TABLE table_name_69 (club VARCHAR, lead VARCHAR)
SELECT club FROM table_name_69 WHERE lead = "jamie korab"
52,086
<question>: Which Lead has Hans Frauenlob as a Third? <context>: CREATE TABLE table_name_62 (lead VARCHAR, third VARCHAR)
SELECT lead FROM table_name_62 WHERE third = "hans frauenlob"
52,087
<question>: Who was the Home captain when the Result was Aus by 218 runs? <context>: CREATE TABLE table_name_22 (home_captain VARCHAR, result VARCHAR)
SELECT home_captain FROM table_name_22 WHERE result = "aus by 218 runs"
52,088
<question>: What is the Film title used in nomination of the Film with a Serbian title of бело оГело? <context>: CREATE TABLE table_name_49 (film_title_used_in_nomination VARCHAR, serbian_title VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_49 WHERE serbian_title = "бело оГело"
52,089
<question>: In what Year was Labyrinth nominated? <context>: CREATE TABLE table_name_46 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT year__ceremony_ FROM table_name_46 WHERE film_title_used_in_nomination = "labyrinth"
52,090
<question>: What is the High assists for march 25? <context>: CREATE TABLE table_name_69 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_name_69 WHERE date = "march 25"
52,091
<question>: What is the Score when Donyell Marshall (26) had the high points? <context>: CREATE TABLE table_name_20 (score VARCHAR, high_points VARCHAR)
SELECT score FROM table_name_20 WHERE high_points = "donyell marshall (26)"
52,092
<question>: What is the highest Game when Morris Peterson (8) had the high assists? <context>: CREATE TABLE table_name_81 (game INTEGER, high_assists VARCHAR)
SELECT MAX(game) FROM table_name_81 WHERE high_assists = "morris peterson (8)"
52,093
<question>: What is the High assists when jalen rose (22) had the high points? <context>: CREATE TABLE table_name_35 (high_assists VARCHAR, high_points VARCHAR)
SELECT high_assists FROM table_name_35 WHERE high_points = "jalen rose (22)"
52,094
<question>: What is the High assists when the record was 28–40? <context>: CREATE TABLE table_name_64 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_name_64 WHERE record = "28–40"
52,095
<question>: Who were the Brazil scorers who scored 3-3? <context>: CREATE TABLE table_name_11 (brazil_scorers VARCHAR, score VARCHAR)
SELECT brazil_scorers FROM table_name_11 WHERE score = "3-3"
52,096
<question>: Who is the Brazil scorer who scored 6-0? <context>: CREATE TABLE table_name_41 (brazil_scorers VARCHAR, score VARCHAR)
SELECT brazil_scorers FROM table_name_41 WHERE score = "6-0"
52,097
<question>: With a score of 2-2, what was the Result? <context>: CREATE TABLE table_name_30 (result VARCHAR, score VARCHAR)
SELECT result FROM table_name_30 WHERE score = "2-2"
52,098
<question>: Which Original Team has a Hometown of Brooklyn, New York and a Background of Comedienne? <context>: CREATE TABLE table_name_22 (original_team VARCHAR, hometown VARCHAR, background VARCHAR)
SELECT original_team FROM table_name_22 WHERE hometown = "brooklyn, new york" AND background = "comedienne"
52,099
<question>: What is the Background of the contestant with a Hometown listed as Los Angeles, California? <context>: CREATE TABLE table_name_71 (background VARCHAR, hometown VARCHAR)
SELECT background FROM table_name_71 WHERE hometown = "los angeles, california"