Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
57,500
<question>: what is the date when the score is 115-93? <context>: CREATE TABLE table_name_68 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_68 WHERE score = "115-93"
57,501
<question>: what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre? <context>: CREATE TABLE table_name_64 (crowd INTEGER, away_team VARCHAR, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_64 WHERE away_team = "new zealand breakers" AND venue = "cairns convention centre"
57,502
<question>: how many times is the home team wollongong hawks? <context>: CREATE TABLE table_name_62 (crowd VARCHAR, home_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_62 WHERE home_team = "wollongong hawks"
57,503
<question>: what is the date when the venue is gold coast convention centre? <context>: CREATE TABLE table_name_70 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_70 WHERE venue = "gold coast convention centre"
57,504
<question>: Which Score has Points smaller than 67, and a Home of calgary flames? <context>: CREATE TABLE table_name_45 (score VARCHAR, points VARCHAR, home VARCHAR)
SELECT score FROM table_name_45 WHERE points < 67 AND home = "calgary flames"
57,505
<question>: Whic Date has a Score of 4–2? <context>: CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_33 WHERE score = "4–2"
57,506
<question>: Which Decision has a Record of 29–18–6? <context>: CREATE TABLE table_name_53 (decision VARCHAR, record VARCHAR)
SELECT decision FROM table_name_53 WHERE record = "29–18–6"
57,507
<question>: Which Date has a Score of 4–2? <context>: CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_14 WHERE score = "4–2"
57,508
<question>: How many losses did the coach who served under 1 season and in 1975 have? <context>: CREATE TABLE table_name_93 (lost VARCHAR, years VARCHAR, seasons VARCHAR)
SELECT COUNT(lost) FROM table_name_93 WHERE years = "1975" AND seasons < 1
57,509
<question>: What is the number of seasons coached by Kathy Graham? <context>: CREATE TABLE table_name_2 (seasons INTEGER, name VARCHAR)
SELECT MIN(seasons) FROM table_name_2 WHERE name = "kathy graham"
57,510
<question>: What is the result on September 25, 1966? <context>: CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_80 WHERE date = "september 25, 1966"
57,511
<question>: What is the attendance of the game on November 20, 1966 after week 10? <context>: CREATE TABLE table_name_54 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_54 WHERE week > 10 AND date = "november 20, 1966"
57,512
<question>: Who is the opponent on week 2? <context>: CREATE TABLE table_name_73 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_73 WHERE week = 2
57,513
<question>: Who is the opponent on November 20, 1966? <context>: CREATE TABLE table_name_88 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_88 WHERE date = "november 20, 1966"
57,514
<question>: What is the attendance of the game with the NY Islanders as home team? <context>: CREATE TABLE table_name_59 (attendance VARCHAR, home VARCHAR)
SELECT COUNT(attendance) FROM table_name_59 WHERE home = "ny islanders"
57,515
<question>: What was the date of the game against seattle? <context>: CREATE TABLE table_name_52 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_52 WHERE opponent = "seattle"
57,516
<question>: Who were the opponents during game 30? <context>: CREATE TABLE table_name_82 (opponent VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_82 WHERE game = 30
57,517
<question>: What was the record during the game with a score of 78-59? <context>: CREATE TABLE table_name_52 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_52 WHERE score = "78-59"
57,518
<question>: Which mlb team is located in maryland? <context>: CREATE TABLE table_name_95 (team VARCHAR, state_province VARCHAR, league VARCHAR)
SELECT team FROM table_name_95 WHERE state_province = "maryland" AND league = "mlb"
57,519
<question>: What team is located in brooklyn? <context>: CREATE TABLE table_name_5 (team VARCHAR, city VARCHAR)
SELECT team FROM table_name_5 WHERE city = "brooklyn"
57,520
<question>: In what year was the cfl team in edmonton, alberta established? <context>: CREATE TABLE table_name_6 (est VARCHAR, city VARCHAR, state_province VARCHAR, league VARCHAR)
SELECT est FROM table_name_6 WHERE state_province = "alberta" AND league = "cfl" AND city = "edmonton"
57,521
<question>: In what year was the NFL team in chicago illinois established? <context>: CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR)
SELECT est FROM table_name_96 WHERE state_province = "illinois" AND city = "chicago" AND league = "nfl"
57,522
<question>: Which team is located in missouri and was established in 1963? <context>: CREATE TABLE table_name_99 (team VARCHAR, state_province VARCHAR, est VARCHAR)
SELECT team FROM table_name_99 WHERE state_province = "missouri" AND est = "1963"
57,523
<question>: Which event was Ye Shiwen in? <context>: CREATE TABLE table_name_23 (event VARCHAR, name VARCHAR)
SELECT event FROM table_name_23 WHERE name = "ye shiwen"
57,524
<question>: Who had a time of 26.11? <context>: CREATE TABLE table_name_39 (name VARCHAR, time VARCHAR)
SELECT name FROM table_name_39 WHERE time = "26.11"
57,525
<question>: What was the date in which the time was 2:16.08? <context>: CREATE TABLE table_name_31 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_31 WHERE time = "2:16.08"
57,526
<question>: Who was in the women's 200m medley? <context>: CREATE TABLE table_name_22 (name VARCHAR, event VARCHAR)
SELECT name FROM table_name_22 WHERE event = "women's 200m medley"
57,527
<question>: What was the nationality of the swimmer in the semifinal with a time of 29.51? <context>: CREATE TABLE table_name_62 (nationality VARCHAR, round VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_62 WHERE round = "semifinal" AND time = "29.51"
57,528
<question>: What country scored 67? <context>: CREATE TABLE table_name_76 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_76 WHERE score = 67
57,529
<question>: What was the to par for Tino Schuster? <context>: CREATE TABLE table_name_7 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_7 WHERE player = "tino schuster"
57,530
<question>: What country has player Scott Verplank? <context>: CREATE TABLE table_name_64 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_64 WHERE player = "scott verplank"
57,531
<question>: What is the type of glycosylase that has an E. coli of Muty? <context>: CREATE TABLE table_name_11 (type VARCHAR, e_coli VARCHAR)
SELECT type FROM table_name_11 WHERE e_coli = "muty"
57,532
<question>: Which E. coli has a human value of HNEIL1? <context>: CREATE TABLE table_name_78 (e_coli VARCHAR, human VARCHAR)
SELECT e_coli FROM table_name_78 WHERE human = "hneil1"
57,533
<question>: Which E. coli has a substrate of uracil? <context>: CREATE TABLE table_name_22 (e_coli VARCHAR, substrates VARCHAR)
SELECT e_coli FROM table_name_22 WHERE substrates = "uracil"
57,534
<question>: The tko (doctor stoppage) method was used in a loss against which opponent? <context>: CREATE TABLE table_name_11 (opponent VARCHAR, method VARCHAR, res VARCHAR)
SELECT opponent FROM table_name_11 WHERE method = "tko (doctor stoppage)" AND res = "loss"
57,535
<question>: How many total rounds used the submission (choke) method? <context>: CREATE TABLE table_name_21 (round INTEGER, method VARCHAR)
SELECT SUM(round) FROM table_name_21 WHERE method = "submission (choke)"
57,536
<question>: What was the time of the match with a record of 9-0 and used the tko (doctor stoppage) method? <context>: CREATE TABLE table_name_75 (time VARCHAR, method VARCHAR, record VARCHAR)
SELECT time FROM table_name_75 WHERE method = "tko (doctor stoppage)" AND record = "9-0"
57,537
<question>: What was the lowest round number at the UFC 16 event with a record of 19-1-1? <context>: CREATE TABLE table_name_64 (round INTEGER, event VARCHAR, record VARCHAR)
SELECT MIN(round) FROM table_name_64 WHERE event = "ufc 16" AND record = "19-1-1"
57,538
<question>: What was the highest number of oppenents points recorded for game 9 when the attendance was less than 60,091? <context>: CREATE TABLE table_name_85 (opponents INTEGER, game VARCHAR, attendance VARCHAR)
SELECT MAX(opponents) FROM table_name_85 WHERE game = 9 AND attendance < 60 OFFSET 091
57,539
<question>: What event did tedd williams fight bill parker? <context>: CREATE TABLE table_name_94 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_94 WHERE opponent = "bill parker"
57,540
<question>: What round did the fight against travis fulton last? <context>: CREATE TABLE table_name_10 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_10 WHERE opponent = "travis fulton"
57,541
<question>: How many times is the player scott deibert? <context>: CREATE TABLE table_name_72 (pick__number VARCHAR, player VARCHAR)
SELECT COUNT(pick__number) FROM table_name_72 WHERE player = "scott deibert"
57,542
<question>: what is the pick # for william loftus? <context>: CREATE TABLE table_name_68 (pick__number VARCHAR, player VARCHAR)
SELECT pick__number FROM table_name_68 WHERE player = "william loftus"
57,543
<question>: what is the cfl team for position d? <context>: CREATE TABLE table_name_68 (cfl_team VARCHAR, position VARCHAR)
SELECT cfl_team FROM table_name_68 WHERE position = "d"
57,544
<question>: what was the total for the Wolverhampton Wanderers? <context>: CREATE TABLE table_name_61 (league_goals VARCHAR, club VARCHAR)
SELECT league_goals FROM table_name_61 WHERE club = "wolverhampton wanderers"
57,545
<question>: How many were in attendance when the result was l 20-17? <context>: CREATE TABLE table_name_42 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_42 WHERE result = "l 20-17"
57,546
<question>: Which Third/Vice skip has a Second of Γ©ric sylvain? <context>: CREATE TABLE table_name_13 (third_vice_skip VARCHAR, second VARCHAR)
SELECT third_vice_skip FROM table_name_13 WHERE second = "Γ©ric sylvain"
57,547
<question>: Which Lead has a Skip of mike mcewen? <context>: CREATE TABLE table_name_73 (lead VARCHAR, skip VARCHAR)
SELECT lead FROM table_name_73 WHERE skip = "mike mcewen"
57,548
<question>: Which City has a Lead of steve gould? <context>: CREATE TABLE table_name_52 (city VARCHAR, lead VARCHAR)
SELECT city FROM table_name_52 WHERE lead = "steve gould"
57,549
<question>: Which Lead has a City of winnipeg, and a Third/Vice skip of kevin park? <context>: CREATE TABLE table_name_17 (lead VARCHAR, city VARCHAR, third_vice_skip VARCHAR)
SELECT lead FROM table_name_17 WHERE city = "winnipeg" AND third_vice_skip = "kevin park"
57,550
<question>: Which City has a Lead of tyler forrest? <context>: CREATE TABLE table_name_95 (city VARCHAR, lead VARCHAR)
SELECT city FROM table_name_95 WHERE lead = "tyler forrest"
57,551
<question>: Which Lead has a Skip of ted appelman? <context>: CREATE TABLE table_name_95 (lead VARCHAR, skip VARCHAR)
SELECT lead FROM table_name_95 WHERE skip = "ted appelman"
57,552
<question>: Which album is #10? <context>: CREATE TABLE table_name_66 (album VARCHAR, number VARCHAR)
SELECT album FROM table_name_66 WHERE number = 10
57,553
<question>: What is Ben Hogan's Place? <context>: CREATE TABLE table_name_21 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_21 WHERE player = "ben hogan"
57,554
<question>: What is Jerry Barber's To par? <context>: CREATE TABLE table_name_74 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_74 WHERE player = "jerry barber"
57,555
<question>: What is the Score of T2 Place Player Dow Finsterwald? <context>: CREATE TABLE table_name_12 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_12 WHERE place = "t2" AND player = "dow finsterwald"
57,556
<question>: What's the to par of the United States with the score of 71-71=142? <context>: CREATE TABLE table_name_1 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_1 WHERE country = "united states" AND score = 71 - 71 = 142
57,557
<question>: What place had a score of 71-70=141? <context>: CREATE TABLE table_name_8 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_8 WHERE score = 71 - 70 = 141
57,558
<question>: Which player had a score of 72-69=141? <context>: CREATE TABLE table_name_75 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_75 WHERE score = 72 - 69 = 141
57,559
<question>: What is the score of T7 place? <context>: CREATE TABLE table_name_69 (score VARCHAR, place VARCHAR)
SELECT score FROM table_name_69 WHERE place = "t7"
57,560
<question>: What place is Ben Hogan? <context>: CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_49 WHERE player = "ben hogan"
57,561
<question>: What place has a to par of E? <context>: CREATE TABLE table_name_46 (place VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_46 WHERE to_par = "e"
57,562
<question>: What pick was J.D. Hill? <context>: CREATE TABLE table_name_52 (pick INTEGER, player VARCHAR)
SELECT MIN(pick) FROM table_name_52 WHERE player = "j.d. hill"
57,563
<question>: What pick was used to select a Defensive End in round 8? <context>: CREATE TABLE table_name_70 (pick INTEGER, position VARCHAR, round VARCHAR)
SELECT SUM(pick) FROM table_name_70 WHERE position = "defensive end" AND round = 8
57,564
<question>: which winner has a jockery containing jerry bailey and the owner of overbrook farm? <context>: CREATE TABLE table_name_28 (winner VARCHAR, jockey VARCHAR, owner VARCHAR)
SELECT winner FROM table_name_28 WHERE jockey = "jerry bailey" AND owner = "overbrook farm"
57,565
<question>: What time contains the owner of maine chance farm? <context>: CREATE TABLE table_name_55 (time VARCHAR, owner VARCHAR)
SELECT time FROM table_name_55 WHERE owner = "maine chance farm"
57,566
<question>: Which time contains the jockery of isaac murphy as well as the winner of kingman? <context>: CREATE TABLE table_name_39 (time VARCHAR, jockey VARCHAR, winner VARCHAR)
SELECT time FROM table_name_39 WHERE jockey = "isaac murphy" AND winner = "kingman"
57,567
<question>: Which owner has the time of 2:02.20 and the year of 1957? <context>: CREATE TABLE table_name_86 (owner VARCHAR, time VARCHAR, year VARCHAR)
SELECT owner FROM table_name_86 WHERE time = "2:02.20" AND year = "1957"
57,568
<question>: Which owner has the time 2:03.00 and the year of 1991 kd? <context>: CREATE TABLE table_name_49 (owner VARCHAR, time VARCHAR, year VARCHAR)
SELECT owner FROM table_name_49 WHERE time = "2:03.00" AND year = "1991 kd"
57,569
<question>: What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8? <context>: CREATE TABLE table_name_13 (played INTEGER, drawn VARCHAR, lost VARCHAR, position VARCHAR)
SELECT SUM(played) FROM table_name_13 WHERE lost > 5 AND position < 8 AND drawn > 1
57,570
<question>: What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich? <context>: CREATE TABLE table_name_86 (points INTEGER, lost VARCHAR, drawn VARCHAR, name VARCHAR)
SELECT AVG(points) FROM table_name_86 WHERE drawn < 1 AND name = "ev aich" AND lost > 11
57,571
<question>: What is the sum of points for a position over 5 with more than 2 draws? <context>: CREATE TABLE table_name_79 (points INTEGER, drawn VARCHAR, position VARCHAR)
SELECT SUM(points) FROM table_name_79 WHERE drawn > 2 AND position > 5
57,572
<question>: Which nation won no bronze medals and a 1 medal total? <context>: CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_54 WHERE total = 1 AND bronze < 1
57,573
<question>: What was the result of the game in week 4? <context>: CREATE TABLE table_name_32 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_32 WHERE week = 4
57,574
<question>: What party has more than 241,310 inhabitants after 2012? <context>: CREATE TABLE table_name_20 (party VARCHAR, election VARCHAR, inhabitants VARCHAR)
SELECT party FROM table_name_20 WHERE election > 2012 AND inhabitants > 241 OFFSET 310
57,575
<question>: Highest inhabitants from gela? <context>: CREATE TABLE table_name_86 (inhabitants INTEGER, municipality VARCHAR)
SELECT MAX(inhabitants) FROM table_name_86 WHERE municipality = "gela"
57,576
<question>: What is the average number of casualties for the convoy with a number of U-844? <context>: CREATE TABLE table_name_5 (casualties INTEGER, number VARCHAR)
SELECT AVG(casualties) FROM table_name_5 WHERE number = "u-844"
57,577
<question>: On what Surface was the match against Ilija Bozoljac played? <context>: CREATE TABLE table_name_9 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_9 WHERE opponent = "ilija bozoljac"
57,578
<question>: What Tournament was against Daniel Elsner? <context>: CREATE TABLE table_name_63 (tournament VARCHAR, opponent VARCHAR)
SELECT tournament FROM table_name_63 WHERE opponent = "daniel elsner"
57,579
<question>: What is the Date of the Tournament with a Score of 3–6, 7–6(6), 5–7? <context>: CREATE TABLE table_name_72 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_72 WHERE score = "3–6, 7–6(6), 5–7"
57,580
<question>: What is the Opponent of the Banja Luka Tournament with a Score of 4–6, 4–6? <context>: CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_57 WHERE score = "4–6, 4–6" AND tournament = "banja luka"
57,581
<question>: On what date was the record set with a time of 1:07.18? <context>: CREATE TABLE table_name_44 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_44 WHERE time = "1:07.18"
57,582
<question>: On what date was a record set in the team pursuit (8 laps) event? <context>: CREATE TABLE table_name_75 (date VARCHAR, event VARCHAR)
SELECT date FROM table_name_75 WHERE event = "team pursuit (8 laps)"
57,583
<question>: What nation did the speed skater that set a record in the 1000 metres event represent? <context>: CREATE TABLE table_name_23 (nation VARCHAR, event VARCHAR)
SELECT nation FROM table_name_23 WHERE event = "1000 metres"
57,584
<question>: What was the record setting time in the team pursuit (8 laps) event? <context>: CREATE TABLE table_name_5 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_5 WHERE event = "team pursuit (8 laps)"
57,585
<question>: What is the total for the draw with 0 points, and less than 14 lost? <context>: CREATE TABLE table_name_15 (draw INTEGER, points VARCHAR, lost VARCHAR)
SELECT SUM(draw) FROM table_name_15 WHERE points = 0 AND lost < 14
57,586
<question>: What date has @ new orleans as the team? <context>: CREATE TABLE table_name_47 (date VARCHAR, team VARCHAR)
SELECT date FROM table_name_47 WHERE team = "@ new orleans"
57,587
<question>: What is the sum of the game with the boston bruins as the opponent? <context>: CREATE TABLE table_name_84 (game INTEGER, opponent VARCHAR)
SELECT SUM(game) FROM table_name_84 WHERE opponent = "boston bruins"
57,588
<question>: What is the total number of games at Toronto with less than 31 points? <context>: CREATE TABLE table_name_87 (game VARCHAR, location VARCHAR, points VARCHAR)
SELECT COUNT(game) FROM table_name_87 WHERE location = "toronto" AND points < 31
57,589
<question>: What years did jersey number 55 play? <context>: CREATE TABLE table_name_81 (years VARCHAR, jersey_number_s_ VARCHAR)
SELECT years FROM table_name_81 WHERE jersey_number_s_ = "55"
57,590
<question>: Before 2007, what was the avg start that had a pole of 0 and in 65th position? <context>: CREATE TABLE table_name_81 (starts INTEGER, year VARCHAR, poles VARCHAR, position VARCHAR)
SELECT AVG(starts) FROM table_name_81 WHERE poles = 0 AND position = "65th" AND year < 2007
57,591
<question>: How many starts had an avg start of less than 37 and won $1,636,827? <context>: CREATE TABLE table_name_66 (starts INTEGER, winnings VARCHAR, avg_start VARCHAR)
SELECT SUM(starts) FROM table_name_66 WHERE winnings = "$1,636,827" AND avg_start < 37
57,592
<question>: in 1990, how many wins had an avg finish of 35 and a start less than 1? <context>: CREATE TABLE table_name_90 (wins INTEGER, starts VARCHAR, avg_finish VARCHAR, year VARCHAR)
SELECT MAX(wins) FROM table_name_90 WHERE avg_finish = 35 AND year = 1990 AND starts < 1
57,593
<question>: What year had a pole smaller than 0 and in 77th position? <context>: CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, poles VARCHAR)
SELECT MAX(year) FROM table_name_57 WHERE position = "77th" AND poles < 0
57,594
<question>: in 2007, what is the avg finish that had a start less than 1? <context>: CREATE TABLE table_name_91 (avg_finish INTEGER, year VARCHAR, starts VARCHAR)
SELECT SUM(avg_finish) FROM table_name_91 WHERE year = 2007 AND starts < 1
57,595
<question>: What is Score, when Game is greater than 4? <context>: CREATE TABLE table_name_1 (score VARCHAR, game INTEGER)
SELECT score FROM table_name_1 WHERE game > 4
57,596
<question>: What is High Points, when Game is "3"? <context>: CREATE TABLE table_name_81 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_name_81 WHERE game = 3
57,597
<question>: What is Score, when Location Attendance is "Madison Square Garden Unknown", and when High Rebounds is "Sidney Green (10)"? <context>: CREATE TABLE table_name_9 (score VARCHAR, location_attendance VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_name_9 WHERE location_attendance = "madison square garden unknown" AND high_rebounds = "sidney green (10)"
57,598
<question>: What is High Rebounds, when Location Attendance is "Madison Square Garden Unknown", and when Date is "May 18"? <context>: CREATE TABLE table_name_15 (high_rebounds VARCHAR, location_attendance VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE location_attendance = "madison square garden unknown" AND date = "may 18"
57,599
<question>: What is Team, when Location Attendance is "Madison Square Garden Unknown", and when High Points is "Alonzo Mourning (24)"? <context>: CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR, high_points VARCHAR)
SELECT team FROM table_name_69 WHERE location_attendance = "madison square garden unknown" AND high_points = "alonzo mourning (24)"