File size: 39,947 Bytes
bffa994
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
natural_query	sql_query	result
Which NBA teams were established after the year 2000? List their names and founding years, sorted from newest to oldest	SELECT full_name FROM team WHERE year_founded > 2000 ORDER BY year_founded DESC;	New Orleans Pelicans
What is the most points the Los Angeles Lakers have scored at home?	SELECT MAX(pts_home) FROM game  WHERE team_name_home = 'Los Angeles Lakers';	162
How many times did the Houston Rockets score over 120 points at home?	SELECT COUNT(*)  FROM game  WHERE team_abbreviation_home = 'HOU'    AND pts_home > 120;	298
What is the highest three-point percentage the Phoenix Suns achieved in an away game?	SELECT MAX(fg3_pct_away)  FROM game  WHERE team_abbreviation_away = 'PHX';	1
How many games in NBA history have gone to overtime?	SELECT COUNT(*) AS overtime_games FROM game WHERE min > 240	3414
When was the Los Angeles Clippers team founded according to the team database?	SELECT year_founded FROM team WHERE full_name = 'Los Angeles Clippers';	1970
What state are the Los Angeles Clippers based in according to the team table?	SELECT state FROM team WHERE full_name = 'Los Angeles Clippers';	California
What is the abbreviation for the Los Angeles Clippers in the team table?	SELECT abbreviation FROM team WHERE full_name = 'Los Angeles Clippers';	LAC
Which season had the highest average free throw percentage for home teams?	SELECT season_id FROM game GROUP BY season_id ORDER BY AVG(ft_pct_home) DESC LIMIT 1;	21951
How many points did the home team score in the game with the fewest total rebounds?	SELECT pts_home FROM game ORDER BY (reb_home + reb_away) ASC LIMIT 1;	66.0
How many points did the Phoenix Suns score in the highest scoring away game they played?	SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'PHX';	161.0
How many points did the away team score in games where the home team had more rebounds?	SELECT SUM(pts_away) FROM game WHERE reb_home > reb_away;	2702764.0
How many points were scored in the earliest recorded game in the database?	SELECT (pts_home + pts_away) FROM game ORDER BY game_date ASC LIMIT 1;	134.0
How many points did the visiting team score in the game where the home team had exactly 0 turnovers?	SELECT pts_away FROM game WHERE game_id IN (SELECT game_id FROM game WHERE tov_home = 0);	88.0,112.0,105.0,93.0,76.0,99.0
How many points were scored by the away team in the most recent playoff game?	SELECT pts_away FROM game WHERE season_type = 'Playoffs' ORDER BY game_date DESC LIMIT 1;	89.0
How many points did the Miami Heat score in their lowest-scoring game at home?	SELECT MIN(pts_home) FROM game WHERE team_abbreviation_home = 'MIA';	56.0
How many points did the away team score in the only game where the home team had exactly 69 field goal attempts?	SELECT pts_away FROM game WHERE fga_home = 69 LIMIT 1;	81.0
How many points did the away team score in a game where both teams made the same number of three-pointers?	SELECT pts_away FROM game WHERE fg3m_home = fg3m_away ORDER BY game_date DESC LIMIT 1;	101.0
How many points were scored in the most recent game where the home team had zero free throw attempts?	SELECT pts_home + pts_away FROM game WHERE fta_home = 0 ORDER BY game_date DESC LIMIT 1;	359.0
How many total points were scored in a game where the away team committed twice as many turnovers as the home team?	SELECT pts_home + pts_away FROM game WHERE tov_away = 2 * tov_home LIMIT 1;	205.0
What was the total score of the only game in which the home team made exactly 33 field goals?	SELECT pts_home + pts_away FROM game WHERE fgm_home = 33 LIMIT 1;	144.0
What was the total number of points in the only game where the sum of both teams' free throws made was exactly 42?	SELECT pts_home + pts_away FROM game WHERE (ftm_home + ftm_away) = 42 LIMIT 1;	156.0
How many points did the visiting team score in the first game where the home team committed fewer than 5 personal fouls?	SELECT pts_away FROM game WHERE pf_home < 5 ORDER BY game_date ASC LIMIT 1;	81.0
Which team had the highest number of team turnovers in an away game?	SELECT team_abbreviation_away FROM other_stats ORDER BY team_turnovers_away DESC LIMIT 1;	CHI
Which away team scored the most points off turnovers in a single game?	SELECT team_abbreviation_away FROM other_stats ORDER BY pts_off_to_away DESC LIMIT 1;	ATL
What was the total number of points off turnovers by away teams when they committed more than 20 total turnovers?	SELECT SUM(pts_off_to_away) FROM other_stats WHERE total_turnovers_away > 20;	45727
What is the highest number of team rebounds recorded by an away team in a single game?	SELECT MAX(team_rebounds_away) FROM other_stats;	24
What is the average number of points off turnovers for away teams with fewer than 10 total turnovers?	SELECT AVG(pts_off_to_away) FROM other_stats WHERE total_turnovers_away < 10;	8.900039200313602
Which game had the highest total of missed free throws by the away team?	SELECT game_id FROM game ORDER BY (fta_away - ftm_away) DESC LIMIT 1;	0027300014
What is the average number of three-pointers made by away teams in games where they had more turnovers than assists?	SELECT AVG(fg3m_away) FROM game WHERE tov_away > ast_away;	4.511052937754508
Which game had the most defensive rebounds by an away team that still lost?	SELECT game_id FROM game WHERE wl_away = 'L' ORDER BY dreb_away DESC LIMIT 1;	0028500331
What is the highest plus-minus recorded by an away team with fewer than 10 personal fouls?	SELECT MAX(plus_minus_away) FROM game WHERE pf_away < 10;	35
Which game had the most field goals made by a home team that shot under 40% from the field?	SELECT game_id FROM game WHERE fg_pct_home < 0.4 ORDER BY fgm_home DESC LIMIT 1;	0025900164
Which home team attempted the most three-pointers in a game they lost?	SELECT team_name_home FROM game WHERE wl_home = 'L' ORDER BY fg3a_home DESC LIMIT 1;	Team Giannis
What is the average number of free throws made in games where the home team had zero offensive rebounds?	SELECT AVG(ftm_home) FROM game WHERE oreb_home = 0;	10.0
Which game had the highest number of steals by a home team that still lost?	SELECT game_id FROM game WHERE wl_home = 'L' ORDER BY stl_home DESC LIMIT 1;	0028400118
Which home team committed the most turnovers in a game they won?	SELECT team_name_home FROM game WHERE wl_home = 'W' ORDER BY tov_home DESC LIMIT 1;	Los Angeles Lakers
Which game had the highest plus-minus for a home team that attempted fewer than 10 three-pointers?	SELECT game_id FROM game WHERE fg3a_home < 10 ORDER BY plus_minus_home DESC LIMIT 1;	0029100021
Which matchup featured the home team with the lowest field goal percentage but still won?	SELECT matchup_home FROM game WHERE wl_home = 'W' ORDER BY fg_pct_home ASC LIMIT 1;	PRO vs. BOS
What is the average number of assists for home teams when playing against teams from Texas?	SELECT AVG(ast_home) FROM game WHERE team_abbreviation_away IN ('DAL', 'HOU', 'SAS');	23.22644697929869
Which game had the smallest difference between offensive and defensive rebounds for the home team?	SELECT game_id FROM game ORDER BY ABS(oreb_home - dreb_home) ASC LIMIT 1;	0024600001
Which home team scored the most points in a game where they had more turnovers than assists?	SELECT team_name_home FROM game WHERE tov_home > ast_home ORDER BY pts_home DESC LIMIT 1;	Seattle SuperSonics
Which matchup involved the home team attempting over 100 field goals?	SELECT matchup_home FROM game WHERE fga_home > 100 LIMIT 1;	BOM vs. NYK
What is the total number of points scored by home teams in games where they committed fewer than 5 personal fouls?	SELECT SUM(pts_home) FROM game WHERE pf_home < 5;	849.0
Which home team had the lowest field goal percentage in a game they still won?	SELECT team_name_home FROM game WHERE wl_home = 'W' ORDER BY fg_pct_home ASC LIMIT 1;	Providence Steamrollers
What is the average number of minutes played in home games with more than 15 steals?	SELECT AVG(min) FROM game WHERE stl_home > 15;	242.13254593175853
Which game had the highest number of free throw attempts by a home team that didn’t attempt any three-pointers?	SELECT game_id FROM game WHERE fg3a_home = 0 ORDER BY fta_home DESC LIMIT 1;	0028700044
Which matchup had the highest combined field goal attempts between home and away teams?	SELECT matchup_home FROM game ORDER BY (fga_home + fga_away) DESC LIMIT 1;	PHW vs. STL
What is the average plus-minus for home teams that made more three-pointers than two-pointers?	SELECT AVG(plus_minus_home) FROM game WHERE fg3m_home > (fgm_home - fg3m_home);	5.007518796992481
Which home team won a game with the fewest minutes recorded?	SELECT team_name_home FROM game WHERE wl_home = 'W' ORDER BY min ASC LIMIT 1;	St. Louis Bombers
Which game had the highest number of personal fouls committed by the home team where no video was available?	SELECT game_id FROM game WHERE video_available_home = 0 ORDER BY pf_home DESC LIMIT 1;	0046300222
What is the average number of three-pointers attempted by home teams that lost by more than 20 points?	SELECT AVG(fg3a_home) FROM game WHERE wl_home = 'L' AND plus_minus_home < -20;	19.36683997689197
Which home team had the highest shooting percentage in a game where they made fewer than 20 field goals?	SELECT team_name_home FROM game WHERE fgm_home < 20 ORDER BY fg_pct_home DESC LIMIT 1;	Boston Celtics
What is the highest number of defensive rebounds recorded by a home team that didn’t make a single three-pointer?	SELECT MAX(dreb_home) FROM game WHERE fg3m_home = 0;	50.0
Which matchup had the most field goals made by the home team in a loss?	SELECT matchup_home FROM game WHERE wl_home = 'L' ORDER BY fgm_home DESC LIMIT 1;	LBN vs. GNS
Which team was founded first?	SELECT full_name FROM team ORDER BY year_founded ASC LIMIT 1;	Boston Celtics
Which team is based in the city of Chicago?	SELECT full_name FROM team WHERE city = 'Chicago';	Chicago Bulls
What is the abbreviation of the team nicknamed 'Heat'?	SELECT abbreviation FROM team WHERE nickname = 'Heat';	MIA
Which teams are located in the state of California?	SELECT full_name FROM team WHERE state = 'California';	Golden State Warriors, Los Angeles Clippers, Los Angeles Lakers, Sacramento Kings
Which team has the abbreviation 'NYK'?	SELECT full_name FROM team WHERE abbreviation = 'NYK';	New York Knicks
Which teams were founded after the year 2000?	SELECT full_name FROM team WHERE year_founded > 2000;	New Orleans Pelicans
What is the city of the team with the nickname 'Bulls'?	SELECT city FROM team WHERE nickname = 'Bulls';	Chicago
List all teams founded before 1970.	SELECT full_name FROM team WHERE year_founded < 1970;	Atlanta Hawks, Boston Celtics, Chicago Bulls, Golden State Warriors, Houston Rockets, Los Angeles Lakers, Milwaukee Bucks, New York Knicks, Philadelphia 76ers, Phoenix Suns, Sacramento Kings, Oklahoma City Thunder, Washington Wizards, Detroit Pistons
Which team has 'Warriors' as their nickname?	SELECT full_name FROM team WHERE nickname = 'Warriors';	Golden State Warriors
Which team abbreviation corresponds to the city of Houston?	SELECT abbreviation FROM team WHERE city = 'Houston';	HOU
What is the state of the team nicknamed 'Jazz'?	SELECT state FROM team WHERE nickname = 'Jazz';	Utah
List the full names of all teams founded in the 1980s.	SELECT full_name FROM team WHERE year_founded BETWEEN 1980 AND 1989;	Dallas Mavericks, Miami Heat, Minnesota Timberwolves, Orlando Magic, Charlotte Hornets
Which team has the same nickname as the team located in Charlotte?	SELECT nickname FROM team WHERE city = 'Charlotte';	Hornets
List the cities of all teams founded before 1965.	SELECT city FROM team WHERE year_founded < 1965;	Atlanta, Boston, Golden State, Los Angeles, New York, Philadelphia, Sacramento, Washington, Detroit
What is the full name of the team based in Dallas?	SELECT full_name FROM team WHERE city = 'Dallas';	Dallas Mavericks
Which team has a nickname starting with the letter 'S'?	SELECT full_name FROM team WHERE nickname LIKE 'S%';	Phoenix Suns, San Antonio Spurs
List all team abbreviations for teams founded in the 1990s.	SELECT abbreviation FROM team WHERE year_founded BETWEEN 1990 AND 1999;	TOR, MEM
What is the full name of the team with the abbreviation 'PHI'?	SELECT full_name FROM team WHERE abbreviation = 'PHI';	Philadelphia 76ers
List all teams based in Texas.	SELECT full_name FROM team WHERE state = 'Texas';	Dallas Mavericks, Houston Rockets, San Antonio Spurs
Which team has the nickname 'Celtics'?	SELECT full_name FROM team WHERE nickname = 'Celtics';	Boston Celtics
Which team was founded most recently?	SELECT full_name FROM team ORDER BY year_founded DESC LIMIT 1;	New Orleans Pelicans
What are the nicknames of teams based in Florida?	SELECT nickname FROM team WHERE state = 'Florida';	Heat, Magic
List all teams located in New York.	SELECT full_name FROM team WHERE state = 'New York';	Brooklyn Nets, New York Knicks
What is the year the team nicknamed 'Nuggets' was founded?	SELECT year_founded FROM team WHERE nickname = 'Nuggets';	1976.0
Which team abbreviation belongs to the team based in Phoenix?	SELECT abbreviation FROM team WHERE city = 'Phoenix';	PHX
What is the nickname of the team founded in 1946?	SELECT nickname FROM team WHERE year_founded = 1946;	Celtics, Warriors, Knicks
What is the most points the Golden State Warriors have scored at home?	SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Golden State Warriors';	155.0
What is the average number of assists by the Los Angeles Lakers in home wins?	SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'LAL' AND wl_home = 'W';	27.456207159177456
How many times did the Los Angeles Lakers score over 120 points at home?	SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'LAL' AND pts_home > 120;	581
What is the highest three-point percentage the Los Angeles Lakers achieved in an away game?	SELECT MAX(fg3_pct_away) FROM game WHERE team_abbreviation_away = 'LAL';	1.0
Which team is located in the state of Indiana?	SELECT full_name FROM team WHERE state = 'Indiana';	Indiana Pacers
Which teams were founded before 1979?	SELECT full_name FROM team WHERE year_founded < 1979;	Atlanta Hawks, Boston Celtics, Cleveland Cavaliers, Chicago Bulls, Denver Nuggets, Golden State Warriors, Houston Rockets, Los Angeles Clippers, Los Angeles Lakers, Milwaukee Bucks, Brooklyn Nets, New York Knicks, Indiana Pacers, Philadelphia 76ers, Phoenix Suns, Portland Trail Blazers, Sacramento Kings, San Antonio Spurs, Oklahoma City Thunder, Utah Jazz, Washington Wizards, Detroit Pistons
In what year was the Indiana Pacers founded?	SELECT year_founded FROM team WHERE full_name = 'Indiana Pacers';	1976.0
What team has the abbreviation 'IND'?	SELECT full_name FROM team WHERE abbreviation = 'IND';	Indiana Pacers
Which team is located in the state of Minnesota?	SELECT full_name FROM team WHERE state = 'Minnesota';	Minnesota Timberwolves
What is the nickname of the team based in Detroit?	SELECT nickname FROM team WHERE city = 'Detroit';	Pistons
List the nicknames of teams based in cities that start with the letter 'C'.	SELECT nickname FROM team WHERE city LIKE 'C%';	Cavaliers, Bulls, Hornets
Which team located in Chicago has a nickname that starts with the letter 'B'?	SELECT full_name FROM team WHERE city = 'Chicago' AND nickname LIKE 'B%';	Chicago Bulls
Which team located in Cleveland has an abbreviation that includes the letter 'C'?	SELECT full_name FROM team WHERE city = 'Cleveland' AND abbreviation LIKE '%C%';	Cleveland Cavaliers
What is the year the Milwaukee team was founded?	SELECT year_founded FROM team WHERE city = 'Milwaukee';	1968.0
Which cities host teams with abbreviations that start with 'C'?	SELECT city FROM team WHERE abbreviation LIKE 'C%';	Cleveland, Chicago, Charlotte
List all team abbreviations from teams located in Ohio or Michigan.	SELECT abbreviation FROM team WHERE state IN ('Ohio', 'Michigan');	CLE, DET
Which team based in Indiana was founded before 1980?	SELECT full_name FROM team WHERE state = 'Indiana' AND year_founded < 1980;	Indiana Pacers
What is the average number of tov in away games by the Orlando Magic?	SELECT AVG(tov_away) FROM game WHERE team_name_away = 'Orlando Magic';	14.969909027291813
What is the average number of tov in away games by the Boston Celtics?	SELECT AVG(tov_away) FROM game WHERE team_name_away = 'Boston Celtics';	15.176572417772649
What is the average number of ast in home games by the Boston Celtics?	SELECT AVG(ast_home) FROM game WHERE team_name_home = 'Boston Celtics';	24.886892177589857
What is the average number of pts in away games by the Portland Trail Blazers?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Portland Trail Blazers';	102.6668215613383
What is the average number of ft_pct in home games by the Portland Trail Blazers?	SELECT AVG(ft_pct_home) FROM game WHERE team_name_home = 'Portland Trail Blazers';	0.7597613053613043
What is the average number of ft_pct in away games by the Portland Trail Blazers?	SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Portland Trail Blazers';	0.7524065985130116
What is the average number of reb in home games by the Portland Trail Blazers?	SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Miami Heat';	42.2
What is the average number of tov in away games by the Portland Trail Blazers?	SELECT AVG(tov_away) FROM game WHERE team_name_away = 'Portland Trail Blazers';	15.146252285191956
What is the average number of pts in away games by the Golden State Warriors?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Golden State Warriors';	105.09242916860195
What is the average number of reb in home games by the Orlando Magic?	SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Orlando Magic';	43.46391030133147
What is the average number of ast in away games by the Portland Trail Blazers?	SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Portland Trail Blazers';	21.94177501413228
How many away games did the Chicago Bulls play in the 2022 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22022';	41.0
What is the average number of fg_pct in home games by the Chicago Bulls?	SELECT AVG(fg_pct_home) FROM game WHERE team_name_home = 'Chicago Bulls';	0.4636694306246544
What is the average number of ft_pct in home games by the Los Angeles Lakers?	SELECT AVG(ft_pct_home) FROM game WHERE team_name_home = 'Los Angeles Lakers';	0.7450706106870195
How many away games did the Miami Heat play in the 1999 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '21999';	41.0
How many away games did the Miami Heat play in the 2022 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '22022';	41.0
What is the average number of pts in away games by the Boston Celtics?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Boston Celtics';	102.25170288679855
What is the average number of fg_pct in home games by the Boston Celtics?	SELECT AVG(fg_pct_home) FROM game WHERE team_name_home = 'Boston Celtics';	0.4737531578947367
How many away games did the Chicago Bulls play in the 2018 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22018';	41.0
What is the average number of fg_pct in home games by the Golden State Warriors?	SELECT AVG(fg_pct_home) FROM game WHERE team_name_home = 'Golden State Warriors';	0.4726067351598173
How many away games did the Miami Heat play in the 2020 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '22020';	36.0
What is the average number of tov in home games by the Miami Heat?	SELECT AVG(tov_home) FROM game WHERE team_name_home = 'Miami Heat';	14.627184466019418
What is the average number of ast in away games by the Los Angeles Lakers?	SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Los Angeles Lakers';	22.594638949671772
What is the average number of ft_pct in home games by the Milwaukee Bucks?	SELECT AVG(ft_pct_home) FROM game WHERE team_name_home = 'Milwaukee Bucks';	0.7571402574345323
What is the average number of pts in home games by the Los Angeles Lakers?	SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Los Angeles Lakers';	109.71476888387824
What is the average number of pts in home games by the Houston Rockets?	SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Houston Rockets';	105.8650391524643
What is the average number of fg_pct in away games by the Los Angeles Lakers?	SELECT AVG(fg_pct_away) FROM game WHERE team_name_away = 'Los Angeles Lakers';	0.4678996728462382
What is the average number of ft_pct in home games by the Miami Heat?	SELECT AVG(ft_pct_home) FROM game WHERE team_name_home = 'Miami Heat';	0.7464038834951452
What is the average number of ft_pct in home games by the Golden State Warriors?	SELECT AVG(ft_pct_home) FROM game WHERE team_name_home = 'Golden State Warriors';	0.7540829836829825
What is the average number of tov in home games by the Charlotte Hornets?	SELECT AVG(tov_home) FROM game WHERE team_name_home = 'Charlotte Hornets';	14.0927291886196
What is the average number of ast in away games by the Golden State Warriors?	SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Golden State Warriors';	22.833996588971008
What is the average number of ft_pct in away games by the Miami Heat?	SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Miami Heat';	0.7408833551769328
What is the average number of reb in home games by the Golden State Warriors?	SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Golden State Warriors';	44.818285714285715
What is the average number of pts in away games by the Milwaukee Bucks?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Milwaukee Bucks';	102.9162605228179
What is the average number of tov in away games by the Los Angeles Lakers?	SELECT AVG(tov_away) FROM game WHERE team_name_away = 'Los Angeles Lakers';	14.554896142433234
What is the average number of ast in home games by the Chicago Bulls?	SELECT AVG(ast_home) FROM game WHERE team_name_home = 'Chicago Bulls';	24.980609418282548
What is the average number of pts in away games by the Miami Heat?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Miami Heat';	96.7824377457405
What is the average number of tov in away games by the Miami Heat?	SELECT AVG(tov_away) FROM game WHERE team_name_away = 'Miami Heat';	15.235255570117957
What is the average number of pts in home games by the Chicago Bulls?	SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Chicago Bulls';	103.32684824902724
What is the average number of ft_pct in home games by the Charlotte Hornets?	SELECT AVG(ft_pct_home) FROM game WHERE team_name_home = 'Charlotte Hornets';	0.7601475237091683
What is the average number of tov in home games by the Boston Celtics?	SELECT AVG(tov_home) FROM game WHERE team_name_home = 'Boston Celtics';	14.788121073672189
How many away games did the Chicago Bulls play in the 2011 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22011';	33.0
How many away games did the Miami Heat play in the 2021 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '22021';	41.0
What is the average number of reb in away games by the Detroit Pistons?	SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Detroit Pistons';	42.10948081264108
What is the average number of reb in away games by the Milwaukee Bucks?	SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Milwaukee Bucks';	41.71580122836404
What is the average number of tov in home games by the Milwaukee Bucks?	SELECT AVG(tov_home) FROM game WHERE team_name_home = 'Milwaukee Bucks';	14.664838513101769
What is the average number of ast in away games by the Milwaukee Bucks?	SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Milwaukee Bucks';	22.16927374301676
How many away games did the Chicago Bulls play in the 2019 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22019';	31.0
How many away games did the Chicago Bulls play in the 2014 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22014';	41.0
How many away games did the Chicago Bulls play in the 2020 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22020';	36.0
How many away games did the Chicago Bulls play in the 2001 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22001';	41.0
What is the average number of fg_pct in away games by the Miami Heat?	SELECT AVG(fg_pct_away) FROM game WHERE team_name_away = 'Miami Heat';	0.4499279161205765
How many away games did the Chicago Bulls play in the 2002 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Chicago Bulls' AND season_id = '22002';	41.0
What is the average number of reb in away games by the Boston Celtics?	SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Boston Celtics';	42.40882509303562
What is the average number of ft_pct in away games by the Los Angeles Clippers?	SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Los Angeles Clippers';	0.7375894405043332
What is the average number of pts in home games by the Boston Celtics?	SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Boston Celtics';	106.27848911651728
How many away games did the Miami Heat play in the 2019 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '22019';	37.0
How many home games did the Orlando Magic play in the 2013 season?	SELECT COUNT(*) FROM game WHERE team_name_home = 'Orlando Magic' AND season_id = '22013';	41.0
What is the average number of pts in home games by the Milwaukee Bucks?	SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Milwaukee Bucks';	106.24456280514868
How many home games did the Miami Heat play in the 2019 season?	SELECT COUNT(*) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22019';	36.0
What is the average number of pts in away games by the New York Knicks?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'New York Knicks';	99.22237288135594
What is the average number of pts in away games by the Chicago Bulls?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Chicago Bulls';	100.94640522875817
What is the average number of fg_pct in away games by the New York Knicks?	SELECT AVG(fg_pct_away) FROM game WHERE team_name_away = 'New York Knicks';	0.4504453081621318
What is the average number of ft_pct in away games by the San Antonio Spurs?	SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'San Antonio Spurs';	0.7538615611192923
How many home games did the Chicago Bulls play in the 2020 season?	SELECT COUNT(*) FROM game WHERE team_name_home = 'Chicago Bulls' AND season_id = '22020';	36.0
What is the average number of tov in home games by the Chicago Bulls?	SELECT AVG(tov_home) FROM game WHERE team_name_home = 'Chicago Bulls';	14.512123004139562
What is the average number of ft_pct in away games by the Chicago Bulls?	SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Chicago Bulls';	0.7549616557734183
What is the average number of pts in home games by the Golden State Warriors?	SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Golden State Warriors';	109.409324009324
How many away games did the Miami Heat play in the 2016 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '22016';	41.0
How many away games did the Miami Heat play in the 2017 season?	SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '22017';	41.0
What is the average number of tov in away games by the Golden State Warriors?	SELECT AVG(tov_away) FROM game WHERE team_name_away = 'Golden State Warriors';	15.801587301587302
What is the average number of ast in away games by the San Antonio Spurs?	SELECT AVG(ast_away) FROM game WHERE team_name_away = 'San Antonio Spurs';	22.72059635560464
How many home games did the Miami Heat play in the 2021 season?	SELECT COUNT(*) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22021';	41.0
How many home games did the Miami Heat play in the 2020 season?	SELECT COUNT(*) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22020';	36.0
What is the average number of ast in home games by the Miami Heat?	SELECT AVG(ast_home) FROM game WHERE team_name_home = 'Miami Heat';	21.454368932038836
What is the average number of tov in home games by the San Antonio Spurs?	SELECT AVG(tov_home) FROM game WHERE team_name_home = 'San Antonio Spurs';	14.41725768321513
How many away games did the Miami Heat play in the 2014 season?	SELECT COUNT(*) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22015';	41.0
What is the average number of ft_pct in away games by the Milwaukee Bucks?	SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Milwaukee Bucks';	0.7545688967656173
What is the average number of pts in away games by the Houston Rockets?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Houston Rockets';	102.85476410730804
What is the average number of pts in away games by the Orlando Magic?	SELECT AVG(pts_away) FROM game WHERE team_name_away = 'Orlando Magic';	99.26172148355494
What is the average number of pts in home games by the Orlando Magic?	SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Orlando Magic';	102.53608969866852
What is the average number of ft_pct in away games by the Boston Celtics?	SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Boston Celtics';	0.7614488017429173
How many home games did the Orlando Magic play in the 2019 season?	SELECT COUNT(*) FROM game WHERE team_name_home = 'Orlando Magic' AND season_id = '22019';	35.0
What is the average number of reb in home games by the Portland Trail Blazers?	SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Portland Trail Blazers';	43.965986394557824
What is the average number of fg_pct in home games by the Los Angeles Lakers?	SELECT AVG(fg_pct_home) FROM game WHERE team_name_home = 'Los Angeles Lakers';	0.4782432016418667
What is the most points the Los Angeles Lakers have scored at home?	SELECT MAX(pts_home)  FROM game  WHERE team_name_home = 'Los Angeles Lakers';	162.0
What is the total number of assists by the Chicago Bulls at home?	SELECT SUM(ast_home) as total_assists  FROM game  WHERE team_name_home = 'Chicago Bulls';	45090.0
What is the lowest points scored by the Detroit Pistons at home?	SELECT MIN(pts_home) as min_points  FROM game  WHERE team_name_home = 'Detroit Pistons';	64.0
What is the total free throws made by the Indiana Pacers at home?	SELECT SUM(ftm_home) as total_ftm  FROM game  WHERE team_name_home = 'Indiana Pacers';	39545.0
What is the average free throw percentage for the Miami Heat away?	SELECT AVG(ft_pct_away) as avg_ft_pct  FROM game  WHERE team_name_away = 'Miami Heat';	0.74
What is the average points scored by the Toronto Raptors away?	SELECT AVG(pts_away) as avg_points  FROM game  WHERE team_name_away = 'Toronto Raptors';	99.61
What is the highest points scored by the Atlanta Hawks at home?	SELECT MAX(pts_home) as max_points  FROM game  WHERE team_name_home = 'Atlanta Hawks';	161.0
What is the total number of points scored by the Atlanta Hawks at home?	SELECT SUM(pts_home) as total_points  FROM game  WHERE team_name_home = 'Atlanta Hawks';	233546.0
What is the highest field goals made by the Chicago Bulls at home?	SELECT MAX(fgm_home) as max_fgm  FROM game  WHERE team_name_home = 'Chicago Bulls';	0.67
What is the lowest points scored by the Detroit Pistons away?	SELECT MIN(pts_away) as min_points  FROM game  WHERE team_name_away = 'Detroit Pistons';	64.0
What is the total assists by the Miami Heat at home?	SELECT SUM(ast_home) as total_assists  FROM game  WHERE team_name_home = 'Miami Heat';	33147.0
What is the total points scored by the Orlando Magic at home?	SELECT SUM(pts_home) as total_points  FROM game  WHERE team_name_home = 'Orlando Magic';	146319.0
What is the total points scored by the Denver Nuggets away?	SELECT SUM(pts_away) as total_points  FROM game  WHERE team_name_away = 'Denver Nuggets';	210741.0
What is the highest points scored by the Utah Jazz at home?	SELECT MAX(pts_home) as max_points  FROM game  WHERE team_name_home = 'Utah Jazz';	151.0
What is the lowest points scored by the Chicago Bulls away?	SELECT MIN(pts_away) as min_points  FROM game  WHERE team_name_away = 'Chicago Bulls';	63.0
What is the total rebounds by the Miami Heat at home?	SELECT SUM(reb_home) as total_rebounds  FROM game  WHERE team_name_home = 'Miami Heat';	65199.0
What is the highest points scored by the Atlanta Hawks away?	SELECT MAX(pts_away) as max_points  FROM game  WHERE team_name_away = 'Atlanta Hawks';	155.0
What is the lowest points scored by the Dallas Mavericks at home?	SELECT MIN(pts_home) as min_points  FROM game  WHERE team_name_home = 'Dallas Mavericks';	62.0
What is the lowest points scored by the Phoenix Suns away?	SELECT MIN(pts_away) as min_points  FROM game  WHERE team_name_away = 'Phoenix Suns';	68.0
What is the highest free throws attempted by the Houston Rockets away?	SELECT MAX(fta_away) as max_fta  FROM game  WHERE team_name_away = 'Houston Rockets';	57.0
What is the highest number of personal fouls committed by the Denver Nuggets away?	SELECT MAX(pf_away) as max_pf  FROM game  WHERE team_name_away = 'Denver Nuggets';	44.0
What is the total number of minutes played by the Chicago Bulls at home?	SELECT SUM(min) as total_minutes  FROM game  WHERE team_name_home = 'Chicago Bulls';	559395.0
What is the lowest number of points scored by the Boston Celtics at home?	SELECT MIN(pts_home) as min_points  FROM game  WHERE team_name_home = 'Boston Celtics';	36.0
What is the highest field goal percentage recorded by the Dallas Mavericks in a home game?	SELECT MAX(fg_pct_home)  FROM game  WHERE team_name_home = 'Dallas Mavericks';	0.652
What is the highest number of assists recorded by the New York Knicks at home in a single game?	SELECT MAX(ast_home)  FROM game  WHERE team_abbreviation_home = 'NYK';	43.0
What is the highest number of rebounds recorded by a home team in a game during the 2005 season?	SELECT MAX(reb_home)  FROM game  WHERE season_id = '22005';	65.0
What is the highest number of points scored by an away team in a single game during the 2003 season?	SELECT MAX(pts_away)  FROM game  WHERE season_id = '22003';	136
Find the total number of rebounds in all games in the 2018 season.	SELECT SUM(reb_home + reb_away)  FROM game  WHERE season_id = '22018';	111107.0
How many games ended with a total combined score of exactly 200 points in the 2014 season?	SELECT COUNT(*)  FROM game  WHERE season_id = '22014'  AND (pts_home + pts_away) = 200;	33
What was the total number of three-pointers made by both teams in all games during the 2019 season?	SELECT SUM(fg3m_home + fg3m_away)  FROM game  WHERE season_id = '22019';	25862.0
How many games in the 2008 season had a final score difference of exactly 1 point?	SELECT COUNT(*)  FROM game  WHERE season_id = '22008'  AND ABS(pts_home - pts_away) = 1;	43
How many total points were scored in all games during the 2003 season?	SELECT SUM(pts_home + pts_away)  FROM game  WHERE season_id = '22003';	222097.0
How many games in the 2018 season had a total combined score of 250 points or more?	SELECT COUNT(*)  FROM game  WHERE season_id = '22018'  AND (pts_home + pts_away) >= 250;	114
What is the highest number of rebounds recorded by the Chicago Bulls in a home game?	SELECT MAX(reb_home)  FROM game  WHERE team_name_home = 'Chicago Bulls';	71.0
What is the highest number of three-pointers made in a single game by the Houston Rockets at home?	SELECT MAX(fg3m_home)  FROM game  WHERE team_name_home = 'Houston Rockets';	27.0
What is the highest field goal percentage the Miami Heat have recorded at home?	SELECT MAX(fg_pct_home)  FROM game  WHERE team_name_home = 'Miami Heat';	0.675
What is the highest number of points the Golden State Warriors have ever scored in a single home game?	SELECT MAX(pts_home)   FROM game   WHERE team_abbreviation_home = 'GSW';	149.0
What was the largest lead the Chicago Bulls have ever had in a home game?	SELECT MAX(largest_lead_home)   FROM other_stats   WHERE team_abbreviation_home = 'CHI';	47
What is the most fast break points the Brooklyn Nets have scored at home in a game?	SELECT MAX(pts_fb_home)   FROM other_stats   WHERE team_abbreviation_home = 'BKN';	38
What is the highest number of points the Los Angeles Lakers have scored in a single away game?	SELECT MAX(pts_away)   FROM game   WHERE team_abbreviation_away = 'LAL';	153.0
What is the most fast-break points the Houston Rockets have ever scored in an away game?	SELECT MAX(pts_fb_away)   FROM other_stats   WHERE team_abbreviation_away = 'HOU';	34
What is the most points in the paint the Milwaukee Bucks have ever scored in an away game?	SELECT MAX(pts_paint_away)   FROM other_stats   WHERE team_abbreviation_away = 'MIL';	86
What is the lowest number of points the Golden State Warriors have scored in an away game?	SELECT MIN(pts_away)   FROM game   WHERE team_abbreviation_away = 'GSW';	65.0
What is the largest lead the Boston Celtics have ever had in a game?	SELECT MAX(largest_lead_home)  FROM other_stats  WHERE team_abbreviation_home = 'BOS';	60
What is the most three-pointers the Brooklyn Nets have ever made in a home game?	SELECT MAX(fg3m_home)  FROM game  WHERE team_name_home = 'Brooklyn Nets';	22.0
What is the most second-chance points the Chicago Bulls have scored in a home game?	SELECT MAX(pts_2nd_chance_home)  FROM other_stats  WHERE team_abbreviation_home = 'CHI';	34
How many games in the 2005 season had a combined score of at least 250 points?	SELECT COUNT(*)  FROM game  WHERE (pts_home + pts_away) >= 250  AND season_id = '22005';	6
What is the largest lead the Miami Heat have had in a game at home?	SELECT MAX(largest_lead_home)  FROM other_stats  WHERE team_abbreviation_home = 'MIA';	46
What is the most total rebounds the New York Knicks have had in a home game?	SELECT MAX(reb_home)  FROM game  WHERE team_abbreviation_home = 'NYK';	75.0
What is the highest number of fast break points the Houston Rockets have scored in a home game?	SELECT MAX(pts_fb_home)  FROM other_stats  WHERE team_abbreviation_home = 'HOU';	37
What is the most points the Cleveland Cavaliers have scored in a road game?	SELECT MAX(pts_away)  FROM game  WHERE team_abbreviation_away = 'CLE';	140.0
What is the most turnovers the Philadelphia 76ers have committed in a home game?	SELECT MAX(total_turnovers_home)  FROM other_stats  WHERE team_abbreviation_home = 'PHI';	30
What is the largest lead the New York Knicks have ever had in an away game?	SELECT MAX(largest_lead_away)  FROM other_stats  WHERE team_abbreviation_away = 'NYK';	48
What is the most turnovers the Brooklyn Nets have committed in an away game?	SELECT MAX(total_turnovers_away)  FROM other_stats  WHERE team_abbreviation_away = 'BKN';	29
How many games in total have ended with a margin of exactly 1 point, regardless of home or away?	SELECT COUNT(*)  FROM game  WHERE ABS(pts_home - pts_away) = 1;	3050
What is the highest-scoring home game in NBA history?	SELECT MAX(pts_home)  FROM game;	192.0
What was the lowest field goal percentage by an away team in a game?	SELECT MIN(fg_pct_away)  FROM game;	0.156
How many games were decided by more than 40 points?	SELECT COUNT(*)  FROM game  WHERE ABS(pts_home - pts_away) > 40;	307
What is the most steals recorded by an away team in a game?	SELECT MAX(stl_away)  FROM game;	27.0
How many games ended with both teams scoring at least 120 points?	SELECT COUNT(*)  FROM game  WHERE pts_home >= 120 AND pts_away >= 120;	3043
How many games had at least one team with 30+ assists?	SELECT COUNT(*)  FROM game  WHERE ast_home >= 30 OR ast_away >= 30;	11305
What is the highest number of assists recorded by the Indiana Pacers in a single home game?	SELECT MAX(ast_home)  FROM game  WHERE team_name_home = 'Indiana Pacers';	44.0