diff --git "a/train-data/train_set.tsv" "b/train-data/train_set.tsv" new file mode 100644--- /dev/null +++ "b/train-data/train_set.tsv" @@ -0,0 +1,2144 @@ +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 +What is the second-highest number of points the Los Angeles Lakers have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Los Angeles Lakers' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 156 +How many home games did the Golden State Warriors win in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'GSW' AND wl_home = 'W' AND season_id = '22017'; 29 +What is the average number of assists by the Boston Celtics in home wins? SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'BOS' AND wl_home = 'W'; 26.51355662 +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 +In 2018, which team has the most home wins and how many home wins did they have? SELECT team_abbreviation_home, COUNT(*) FROM game WHERE wl_home = 'W' AND season_id = '22018' GROUP BY team_abbreviation_home ORDER BY COUNT(*) DESC LIMIT 1; DEN | 34 +Which Chicago Bulls home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Chicago Bulls' ORDER BY os.lead_changes DESC LIMIT 1; 4/26/2009 0:00:00 | 28 +Find Boston Celtics' largest home victory margin in the 2008 season. SELECT MAX(pts_home - pts_away) AS biggest_win FROM game WHERE team_abbreviation_home = 'BOS' AND season_id = '22008'; 32 +How many Golden State Warriors home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'GSW' AND os.pts_paint_home > os.pts_paint_away; 484 +How many New York Knicks home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'New York Knicks' AND oreb_home > 15 AND stl_home >= 10; 109 +How many total free throws did the Dallas Mavericks make in the 2011 season? SELECT SUM(ftm) AS total_free_throws FROM ( SELECT ftm_home AS ftm FROM game WHERE team_abbreviation_home = 'DAL' AND season_id = '22011' UNION ALL SELECT ftm_away AS ftm FROM game WHERE team_abbreviation_away = 'DAL' AND season_id = '22011' ); 1029 +Which game had the lowest combined score when the Philadelphia 76ers played in the 2019 season? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE season_id = '22019' AND (team_abbreviation_home = 'PHI' OR team_abbreviation_away = 'PHI') ORDER BY total_points ASC LIMIT 1; 0021900630 | 177.0 +What was the average three-point percentage for the Toronto Raptors in away games during the 2020 season? SELECT AVG(fg3_pct_away) AS avg_3p_pct FROM game WHERE team_abbreviation_away = 'TOR' AND season_id = '22020'; 0.3803888889 +How many total offensive rebounds did the Oklahoma City Thunder collect in the 2012 season? SELECT SUM(oreb) AS total_offensive_rebounds FROM ( SELECT oreb_home AS oreb FROM game WHERE team_abbreviation_home = 'OKC' AND season_id = '22012' UNION ALL SELECT oreb_away AS oreb FROM game WHERE team_abbreviation_away = 'OKC' AND season_id = '22012' ); +What was the total number of assists made by the Miami Heat in games where they scored more than 110 points at home? SELECT SUM(ast_home) AS total_assists FROM game WHERE team_name_home = 'Miami Heat' AND pts_home > 110; 9235 +When did the Golden State Warriors score the most points in the paint in an away game? SELECT g.game_date, o.pts_paint_away FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Golden State Warriors' ORDER BY o.pts_paint_away DESC LIMIT 1; 2010-03-19 00:00:00 | 90 +How many times have the Milwaukee Bucks and Chicago Bulls played against each other since 2010? SELECT COUNT(*) AS total_matchups FROM game WHERE (team_name_home = 'Milwaukee Bucks' AND team_name_away = 'Chicago Bulls' OR team_name_home = 'Chicago Bulls' AND team_name_away = 'Milwaukee Bucks') AND CAST(SUBSTR(season_id, 2) AS INTEGER) >= 2010; 67 +What is the average number of turnovers committed by the Brooklyn Nets in games they won at home? SELECT AVG(tov_home) AS avg_turnovers FROM game WHERE team_name_home = 'Brooklyn Nets' AND wl_home = 'W'; 14.68122271 +Which team had the largest lead in any game during the 2020 season? SELECT CASE WHEN o.largest_lead_home >= o.largest_lead_away THEN g.team_name_home ELSE g.team_name_away END AS team_name, CASE WHEN o.largest_lead_home >= o.largest_lead_away THEN o.largest_lead_home ELSE o.largest_lead_away END AS largest_lead, g.game_date FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.season_id = '22020' ORDER BY largest_lead DESC LIMIT 1; Indiana Pacers | 67 | 2021-05-01 00:00:00 +How many games had more than 20 lead changes in the 2019 season? SELECT COUNT(*) AS high_lead_change_games FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.season_id = '22019' AND o.lead_changes > 20; 11 +What was the average number of rebounds grabbed by the Toronto Raptors in games where they scored at least 40 points from fast breaks? SELECT AVG(rebounds) AS avg_rebounds FROM ( SELECT g.game_id, g.reb_home AS rebounds FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Toronto Raptors' AND o.pts_fb_home >= 40 UNION ALL SELECT g.game_id, g.reb_away AS rebounds FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Toronto Raptors' AND o.pts_fb_away >= 40 ); 43.9 +How many games did the Philadelphia 76ers lose by more than 20 points in the 2018 season? SELECT COUNT(*) AS blowout_losses FROM game WHERE (team_name_home = 'Philadelphia 76ers' AND wl_home = 'L' AND plus_minus_home < -20) OR (team_name_away = 'Philadelphia 76ers' AND wl_away = 'L' AND plus_minus_away < -20) AND season_id = '22018'; 100 +Which team had the highest three-point shooting percentage in away games during the 2020 season? SELECT team_name_away, AVG(fg3_pct_away) AS avg_3pt_pct FROM game WHERE season_id = '22020' GROUP BY team_name_away ORDER BY avg_3pt_pct DESC LIMIT 1; LA Clippers | 0.401333333333333 +What is the total number of points scored by the Houston Rockets in games where they made more than 20 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Houston Rockets' AND fg3m_home > 20 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Houston Rockets' AND fg3m_away > 20 ); 6435 +What was the average margin of victory for the Milwaukee Bucks in home wins during the 2021 season? SELECT AVG(plus_minus_home) AS avg_victory_margin FROM game WHERE team_name_home = 'Milwaukee Bucks' AND wl_home = 'W' AND season_id = '22021'; 13.37037037 +Which team had the most steals in a single game during the 2015 season? SELECT CASE WHEN stl_home > stl_away THEN team_name_home ELSE team_name_away END AS team_name, CASE WHEN stl_home > stl_away THEN stl_home ELSE stl_away END AS steals, game_date FROM game WHERE season_id = '22015' ORDER BY steals DESC LIMIT 1; New Orleans Pelicans | 21.0 | 2016-01-08 00:00:00 +How many games did the San Antonio Spurs play that went to overtime in the 2016 season? SELECT COUNT(*) AS overtime_games FROM game WHERE (team_name_home = 'San Antonio Spurs' OR team_name_away = 'San Antonio Spurs') AND min > 240 AND season_id = '22016'; 5 +What's the highest number of points the Brooklyn Nets scored in the paint in any game during the 2020 season? SELECT MAX(pts_paint) AS max_paint_points FROM ( SELECT o.pts_paint_home AS pts_paint FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Brooklyn Nets' AND g.season_id = '22020' UNION ALL SELECT o.pts_paint_away AS pts_paint FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Brooklyn Nets' AND g.season_id = '22020' ); 74 +Which team had the fewest turnovers in the 2018 season on average? SELECT team_name, AVG(turnovers) AS avg_turnovers FROM ( SELECT team_name_home AS team_name, tov_home AS turnovers FROM game WHERE season_id = '22018' UNION ALL SELECT team_name_away AS team_name, tov_away AS turnovers FROM game WHERE season_id = '22018' ) GROUP BY team_name ORDER BY avg_turnovers ASC LIMIT 1; San Antonio Spurs | 12.0975609756098 +What was the field goal percentage for the Toronto Raptors in their championship season of 2019? SELECT AVG(fg_pct) AS avg_fg_percentage FROM ( SELECT game_id, fg_pct_home AS fg_pct FROM game WHERE team_name_home = 'Toronto Raptors' AND season_id = '22019' UNION ALL SELECT game_id, fg_pct_away AS fg_pct FROM game WHERE team_name_away = 'Toronto Raptors' AND season_id = '22019' ); 0.4587083333 + How many times did the Golden State Warriors score more than 120 points but still lose the game? SELECT COUNT(*) AS high_scoring_losses FROM game WHERE ((team_name_home = 'Golden State Warriors' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Golden State Warriors' AND pts_away > 120 AND wl_away = 'L')); 123 +Which team had the most assists in a game where they also had fewer than 10 turnovers during the 2021 season? SELECT team_name, assists, turnovers, game_date FROM ( SELECT team_name_home AS team_name, ast_home AS assists, tov_home AS turnovers, game_date FROM game WHERE season_id = '22021' AND tov_home < 10 UNION ALL SELECT team_name_away AS team_name, ast_away AS assists, tov_away AS turnovers, game_date FROM game WHERE season_id = '22021' AND tov_away < 10 ) ORDER BY assists DESC LIMIT 1; Phoenix Suns | 40.0 | 7.0 | 2022-02-12 00:00:00 +What was the largest comeback (overcoming a deficit) made by the Cleveland Cavaliers in the 2016 season? SELECT CASE WHEN g.team_name_home = 'Cleveland Cavaliers' THEN largest_lead_away ELSE largest_lead_home END AS opponent_largest_lead, g.game_date, CASE WHEN g.team_name_home = 'Cleveland Cavaliers' THEN g.team_name_away ELSE g.team_name_home END AS opponent FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_name_home = 'Cleveland Cavaliers' AND g.wl_home = 'W') OR (g.team_name_away = 'Cleveland Cavaliers' AND g.wl_away = 'W') AND g.season_id = '22016' ORDER BY opponent_largest_lead DESC LIMIT 1; 49 | 2010-03-01 00:00:00 | New York Knicks +What is the average number of points scored by the Portland Trail Blazers in games where they had at least 15 second-chance points? SELECT AVG(pts) AS avg_points FROM ( SELECT g.pts_home AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Portland Trail Blazers' AND o.pts_2nd_chance_home >= 15 UNION ALL SELECT g.pts_away AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Portland Trail Blazers' AND o.pts_2nd_chance_away >= 15 ); 102.9899497 +Which team scored the most second-chance points in a game during the 2019 season? SELECT CASE WHEN o.pts_2nd_chance_home > o.pts_2nd_chance_away THEN g.team_name_home ELSE g.team_name_away END AS team_name, CASE WHEN o.pts_2nd_chance_home > o.pts_2nd_chance_away THEN o.pts_2nd_chance_home ELSE o.pts_2nd_chance_away END AS second_chance_points, g.game_date FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.season_id = '22019' ORDER BY second_chance_points DESC LIMIT 1; Minnesota Timberwolves | 35 | 2019-11-08 00:00:00 +How many games did the Detroit Pistons win when they scored fewer points in the paint than their opponents? SELECT COUNT(*) AS wins_with_fewer_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE ((g.team_name_home = 'Detroit Pistons' AND g.wl_home = 'W' AND o.pts_paint_home < o.pts_paint_away) OR (g.team_name_away = 'Detroit Pistons' AND g.wl_away = 'W' AND o.pts_paint_away < o.pts_paint_home)); 431 +What's the highest number of blocks recorded by the New York Knicks in any game? SELECT MAX(blocks) AS max_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'New York Knicks' UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'New York Knicks' ); 15 +How many games in the 2018 season had more than 15 lead changes and more than 10 ties? SELECT COUNT(*) AS competitive_games FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.season_id = '22018' AND o.lead_changes > 15 AND o.times_tied > 10; 54 +What was the average free throw percentage for the Indiana Pacers in games where they attempted at least 25 free throws? SELECT AVG(ft_pct) AS avg_ft_percentage FROM ( SELECT ft_pct_home AS ft_pct FROM game WHERE team_name_home = 'Indiana Pacers' AND fta_home >= 25 UNION ALL SELECT ft_pct_away AS ft_pct FROM game WHERE team_name_away = 'Indiana Pacers' AND fta_away >= 25 ); 0.7685965404 +What was the average margin of victory in games between the Boston Celtics and New York Knicks? SELECT AVG(ABS(plus_minus_home)) AS avg_victory_margin FROM game WHERE (team_name_home = 'Boston Celtics' AND team_name_away = 'New York Knicks') OR (team_name_home = 'New York Knicks' AND team_name_away = 'Boston Celtics'); 11.05436893 +Which team had the most points off turnovers in a single game during the 2020 season? SELECT CASE WHEN o.pts_off_to_home > o.pts_off_to_away THEN g.team_name_home ELSE g.team_name_away END AS team_name, CASE WHEN o.pts_off_to_home > o.pts_off_to_away THEN o.pts_off_to_home ELSE o.pts_off_to_away END AS points_off_turnovers, g.game_date FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.season_id = '22020' ORDER BY points_off_turnovers DESC LIMIT 1; Denver Nuggets | 39 | 2021-04-19 00:00:00 +How many games did the Orlando Magic play in the 2010 season where both teams scored more than 100 points? SELECT COUNT(*) AS high_scoring_games FROM game WHERE (team_name_home = 'Orlando Magic' OR team_name_away = 'Orlando Magic') AND pts_home > 100 AND pts_away > 100 AND season_id = '22010'; 14 +What's the average number of fastbreak points scored by winning teams in the 2021 season? SELECT AVG(fastbreak_points) AS avg_fb_points_winners FROM ( SELECT o.pts_fb_home AS fastbreak_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.wl_home = 'W' AND g.season_id = '22021' UNION ALL SELECT o.pts_fb_away AS fastbreak_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.wl_away = 'W' AND g.season_id = '22021' ); 12.45038168 +What is the total number of points scored by the Houston Rockets in games where they made more than 15 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Houston Rockets' AND fg3m_home > 15 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Houston Rockets' AND fg3m_away > 15 ) AS combined_games 32793 +How many total rebounds did the Milwaukee Bucks get in games where they scored at least 110 points? SELECT SUM(rebounds) AS total_rebounds FROM ( SELECT reb_home AS rebounds FROM game WHERE team_name_home = 'Milwaukee Bucks' AND pts_home >= 110 UNION ALL SELECT reb_away AS rebounds FROM game WHERE team_name_away = 'Milwaukee Bucks' AND pts_away >= 110 ) AS combined_games 48323 +What is the highest number of steals the Toronto Raptors recorded in a single game during the 2019 season? SELECT MAX(steals) AS max_steals FROM ( SELECT stl_home AS steals FROM game WHERE team_name_home = 'Toronto Raptors' AND season_id = '22019' UNION ALL SELECT stl_away AS steals FROM game WHERE team_name_away = 'Toronto Raptors' AND season_id = '22019' ) AS all_games 17 +What is the total number of points the Boston Celtics scored in the paint during the 2020 season? SELECT SUM(paint_points) AS total_paint_points FROM ( SELECT os.pts_paint_home AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Boston Celtics' AND g.season_id = '22020' UNION ALL SELECT os.pts_paint_away AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Boston Celtics' AND g.season_id = '22020' ) AS all_games 2884 +How many games did the Los Angeles Lakers play where they had more than 25 assists and won? SELECT COUNT(*) AS total_games FROM ( SELECT game_id FROM game WHERE team_name_home = 'Los Angeles Lakers' AND ast_home > 25 AND wl_home = 'W' UNION ALL SELECT game_id FROM game WHERE team_name_away = 'Los Angeles Lakers' AND ast_away > 25 AND wl_away = 'W' ) AS winning_games_with_assists 1159 +What was the average number of fast break points scored by the Miami Heat in games they lost during the 2017 season? SELECT AVG(fastbreak_points) AS avg_fastbreak_points FROM ( SELECT os.pts_fb_home AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Miami Heat' AND g.wl_home = 'L' AND g.season_id = '22017' UNION ALL SELECT os.pts_fb_away AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Miami Heat' AND g.wl_away = 'L' AND g.season_id = '22017' ) AS losing_games 11.29032258 +What is the total number of points scored by the Denver Nuggets in fourth quarters during the 2021 season? SELECT SUM(points_off_turnovers) AS total_points_off_turnovers FROM ( SELECT os.pts_off_to_home AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Denver Nuggets' AND g.season_id = '22021' UNION ALL SELECT os.pts_off_to_away AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Denver Nuggets' AND g.season_id = '22021' ) AS all_games 1071 +What is the average shooting percentage of the Philadelphia 76ers in games where they scored at least 100 points during the 2019 season? SELECT AVG(fg_pct) AS avg_shooting_percentage FROM ( SELECT fg_pct_home AS fg_pct FROM game WHERE team_name_home = 'Philadelphia 76ers' AND pts_home >= 100 AND season_id = '22019' UNION ALL SELECT fg_pct_away AS fg_pct FROM game WHERE team_name_away = 'Philadelphia 76ers' AND pts_away >= 100 AND season_id = '22019' ) AS high_scoring_games 0.4846785714 +How many total blocks did the Brooklyn Nets record in games where they had more than 10 turnovers? SELECT SUM(blocks) AS total_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Brooklyn Nets' AND tov_home > 10 UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Brooklyn Nets' AND tov_away > 10 ) AS turnover_games 3570 +Which team had the highest field goal percentage in the 1996 season? SELECT team_name, AVG(fg_pct) AS avg_fg_pct FROM ( SELECT team_name_home AS team_name, fg_pct_home AS fg_pct FROM game WHERE season_id = '21996' UNION ALL SELECT team_name_away AS team_name, fg_pct_away AS fg_pct FROM game WHERE season_id = '21996' ) AS all_teams GROUP BY team_name ORDER BY avg_fg_pct DESC LIMIT 1 Utah Jazz | 0.505182926829268 +How many games did the Chicago Bulls win during their 1992 championship season? SELECT COUNT(*) AS total_wins FROM ( SELECT game_id FROM game WHERE team_name_home = 'Chicago Bulls' AND wl_home = 'W' AND season_id = '21992' UNION ALL SELECT game_id FROM game WHERE team_name_away = 'Chicago Bulls' AND wl_away = 'W' AND season_id = '21992' ) AS winning_games 57 +What was the average number of rebounds per game for the Detroit Pistons in 1989? SELECT AVG(rebounds) AS avg_rebounds FROM ( SELECT reb_home AS rebounds FROM game WHERE team_name_home = 'Detroit Pistons' AND season_id = '21989' UNION ALL SELECT reb_away AS rebounds FROM game WHERE team_name_away = 'Detroit Pistons' AND season_id = '21989' ) AS all_games 44.42682927 +Which team had the most steals in the 2004 season? SELECT team_name, SUM(steals) AS total_steals FROM ( SELECT team_name_home AS team_name, stl_home AS steals FROM game WHERE season_id = '22004' UNION ALL SELECT team_name_away AS team_name, stl_away AS steals FROM game WHERE season_id = '22004' ) AS all_teams GROUP BY team_name ORDER BY total_steals DESC LIMIT 1 Philadelphia 76ers | 756.0 +How many times did the Boston Celtics and Los Angeles Lakers play against each other from 1980 to 1989? SELECT COUNT(*) AS total_matchups FROM game WHERE ((team_name_home = 'Boston Celtics' AND team_name_away = 'Los Angeles Lakers') OR (team_name_home = 'Los Angeles Lakers' AND team_name_away = 'Boston Celtics')) AND CAST(SUBSTR(season_id, 2) AS INTEGER) BETWEEN 1980 AND 1989 39 +What was the total number of points scored by the San Antonio Spurs in the 2014 season? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'San Antonio Spurs' AND season_id = '22014' UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'San Antonio Spurs' AND season_id = '22014' ) AS season_games 8461 +What team had the best free throw percentage in the 2001 regular season? SELECT team_name, AVG(ft_pct) AS avg_ft_pct FROM ( SELECT team_name_home AS team_name, ft_pct_home AS ft_pct FROM game WHERE season_id = '22001' AND season_type = 'Regular Season' UNION ALL SELECT team_name_away AS team_name, ft_pct_away AS ft_pct FROM game WHERE season_id = '22001' AND season_type = 'Regular Season' ) AS all_teams GROUP BY team_name ORDER BY avg_ft_pct DESC LIMIT 1 Dallas Mavericks | 0.804768292682927 +How many points did Michael Jordan's Chicago Bulls score in the paint during the 1997 season? SELECT SUM(paint_points) AS total_paint_points FROM ( SELECT os.pts_paint_home AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Chicago Bulls' AND g.season_id = '21997' UNION ALL SELECT os.pts_paint_away AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Chicago Bulls' AND g.season_id = '21997' ) AS all_games 2654 +Which team had the best home record in the 2010 season? SELECT team_name_home AS team FROM game WHERE season_id = '22010' GROUP BY team_name_home ORDER BY CAST(SUM(CASE WHEN wl_home = 'W' THEN 1 ELSE 0 END) AS FLOAT) / COUNT(*) DESC LIMIT 1 San Antonio Spurs | 36 | 5 | 0.878048780487805 +Which team had the most second-chance points in the 2015 season? SELECT team_name, SUM(second_chance_pts) AS total_second_chance_pts FROM ( SELECT g.team_name_home AS team_name, os.pts_2nd_chance_home AS second_chance_pts FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.season_id = '22015' UNION ALL SELECT g.team_name_away AS team_name, os.pts_2nd_chance_away AS second_chance_pts FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.season_id = '22015' ) AS all_teams GROUP BY team_name ORDER BY total_second_chance_pts DESC LIMIT 1 Houston Rockets | 1085 +What is the all-time head-to-head record between the Los Angeles Lakers and Boston Celtics? SELECT SUM(CASE WHEN (team_name_home = 'Los Angeles Lakers' AND wl_home = 'W') OR (team_name_away = 'Los Angeles Lakers' AND wl_away = 'W') THEN 1 ELSE 0 END) AS lakers_wins, SUM(CASE WHEN (team_name_home = 'Boston Celtics' AND wl_home = 'W') OR (team_name_away = 'Boston Celtics' AND wl_away = 'W') THEN 1 ELSE 0 END) AS celtics_wins FROM game WHERE (team_name_home = 'Los Angeles Lakers' AND team_name_away = 'Boston Celtics') OR (team_name_home = 'Boston Celtics' AND team_name_away = 'Los Angeles Lakers') 110 | 113 +How many games in NBA history have gone to overtime? SELECT COUNT(*) AS overtime_games FROM game WHERE min > 240 3414 +Which team scored the most points off turnovers in the 2017 season and how many points did they score? SELECT team_name, SUM(pts_off_turnovers) AS total_pts_off_turnovers FROM ( SELECT g.team_name_home AS team_name, os.pts_off_to_home AS pts_off_turnovers FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.season_id = '22017' UNION ALL SELECT g.team_name_away AS team_name, os.pts_off_to_away AS pts_off_turnovers FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.season_id = '22017' ) AS all_games GROUP BY team_name ORDER BY total_pts_off_turnovers DESC LIMIT 1 Atlanta Hawks | 1309 +What team had the highest average number of fast break points per game in the 2005 season and how many of those points did they score? SELECT team_name, AVG(fastbreak_pts) AS avg_fastbreak_pts FROM ( SELECT g.team_name_home AS team_name, os.pts_fb_home AS fastbreak_pts FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.season_id = '22005' UNION ALL SELECT g.team_name_away AS team_name, os.pts_fb_away AS fastbreak_pts FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.season_id = '22005' ) AS all_teams GROUP BY team_name ORDER BY avg_fastbreak_pts DESC LIMIT 1 Denver Nuggets | 16.1641791044776 +How many games did the Golden State Warriors win by 20 or more points during their 73-win season? SELECT COUNT(*) AS blowout_wins FROM ( SELECT game_id FROM game WHERE season_id = '22016' AND ((team_name_home = 'Golden State Warriors' AND wl_home = 'W' AND plus_minus_home >= 20) OR (team_name_away = 'Golden State Warriors' AND wl_away = 'W' AND plus_minus_away >= 20)) ) AS big_wins 23 +What was the most common final score in NBA games during the 2000s and how many times did it happen? SELECT pts_home || '-' || pts_away AS score, COUNT(*) AS frequency FROM game WHERE CAST(SUBSTR(season_id, 2) AS INTEGER) BETWEEN 2000 AND 2009 GROUP BY score ORDER BY frequency DESC LIMIT 1 97.0-92.0 | 29 +How many times did a team score 100 or more points but still lose the game in the 2020 season? SELECT COUNT(*) AS high_scoring_losses FROM ( SELECT game_id FROM game WHERE season_id = '22020' AND ((pts_home >= 100 AND wl_home = 'L') OR (pts_away >= 100 AND wl_away = 'L')) ) AS games 769 +Which year saw the highest average points per game in NBA history? SELECT SUBSTR(season_id, 2) AS year, AVG(pts_home + pts_away) / 2 AS avg_pts_per_team FROM game GROUP BY year ORDER BY avg_pts_per_team DESC LIMIT 1 1960 | 142.0 +What team had the worst free throw percentage in games they won during the 2007 season? SELECT team_name, AVG(ft_pct) AS avg_ft_pct_in_wins FROM ( SELECT team_name_home AS team_name, ft_pct_home AS ft_pct FROM game WHERE season_id = '22007' AND wl_home = 'W' UNION ALL SELECT team_name_away AS team_name, ft_pct_away AS ft_pct FROM game WHERE season_id = '22007' AND wl_away = 'W' ) AS winning_games GROUP BY team_name ORDER BY avg_ft_pct_in_wins ASC LIMIT 1 Cleveland Cavaliers | 0.717622222222222 +How many times have the Los Angeles Lakers scored more than 120 points in a game but still lost? SELECT COUNT(*) AS high_scoring_losses FROM ( SELECT game_id FROM game WHERE (team_name_home = 'Los Angeles Lakers' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Los Angeles Lakers' AND pts_away > 120 AND wl_away = 'L') ) AS games 90 +Which team had the most offensive rebounds in the 2009 season? SELECT team_name, SUM(oreb) AS total_offensive_rebounds FROM ( SELECT team_name_home AS team_name, oreb_home AS oreb FROM game WHERE season_id = '22009' UNION ALL SELECT team_name_away AS team_name, oreb_away AS oreb FROM game WHERE season_id = '22009' ) AS all_teams GROUP BY team_name ORDER BY total_offensive_rebounds DESC LIMIT 1 Memphis Grizzlies | 1070.0 +Which team had the best away record in the 2018 season? SELECT team_name_away AS team FROM game WHERE season_id = '22018' GROUP BY team_name_away ORDER BY CAST(SUM(CASE WHEN wl_away = 'W' THEN 1 ELSE 0 END) AS FLOAT) / COUNT(*) DESC LIMIT 1 +Which team had the best overall record in the 2010 season? WITH home_records AS ( SELECT team_name_home AS team_name, SUM(CASE WHEN wl_home = 'W' THEN 1 ELSE 0 END) AS wins, COUNT(*) AS games_played FROM game WHERE season_id = '22010' GROUP BY team_name_home ), away_records AS ( SELECT team_name_away AS team_name, SUM(CASE WHEN wl_away = 'W' THEN 1 ELSE 0 END) AS wins, COUNT(*) AS games_played FROM game WHERE season_id = '22010' GROUP BY team_name_away ) SELECT h.team_name AS team, (h.wins + a.wins) AS total_wins, (h.games_played + a.games_played - h.wins - a.wins) AS total_losses, CAST((h.wins + a.wins) AS FLOAT) / (h.games_played + a.games_played) AS win_percentage FROM home_records h JOIN away_records a ON h.team_name = a.team_name ORDER BY win_percentage DESC LIMIT 1 Chicago Bulls | 62 | 20 | 0.75609756097561 +Which team had the worst overall record in the 2017 season? WITH home_records AS ( SELECT team_name_home AS team_name, SUM(CASE WHEN wl_home = 'W' THEN 1 ELSE 0 END) AS wins, COUNT(*) AS games_played FROM game WHERE season_id = '22017' GROUP BY team_name_home ), away_records AS ( SELECT team_name_away AS team_name, SUM(CASE WHEN wl_away = 'W' THEN 1 ELSE 0 END) AS wins, COUNT(*) AS games_played FROM game WHERE season_id = '22017' GROUP BY team_name_away ) SELECT h.team_name AS team, (h.wins + a.wins) AS total_wins, (h.games_played + a.games_played - h.wins - a.wins) AS total_losses, CAST((h.wins + a.wins) AS FLOAT) / (h.games_played + a.games_played) AS win_percentage FROM home_records h JOIN away_records a ON h.team_name = a.team_name ORDER BY win_percentage ASC LIMIT 1 Phoenix Suns | 21 | 61 | 0.25609756097561 +What was the highest number of points scored by the Boston Celtics in a home game during the 2020 season? SELECT MAX(pts_home) AS max_points, team_name_home, season_id FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '22020' GROUP BY team_name_home, season_id; 145.0 | Boston Celtics | 22020 +Which team had the largest home court lead in any game against the Los Angeles Lakers? SELECT team_city_home AS home_team, largest_lead_home AS max_lead FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE team_name_away = 'Los Angeles Lakers' ORDER BY largest_lead_home DESC LIMIT 1; Utah | 53 +How many fastbreak points did the Miami Heat score at home in their highest scoring game of the 2019 season? SELECT o.pts_fb_home AS fastbreak_points, g.pts_home AS total_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Miami Heat' AND g.season_id = '22019' ORDER BY g.pts_home DESC LIMIT 1; 8 | 137.0 +What was the combined rebound total for the Toronto Raptors and Brooklyn Nets in their highest scoring game against each other? SELECT MAX(g.pts_home + g.pts_away) AS total_points, g.reb_home + g.reb_away AS total_rebounds FROM game g WHERE (g.team_name_home = 'Toronto Raptors' AND g.team_name_away = 'Brooklyn Nets') OR (g.team_name_home = 'Brooklyn Nets' AND g.team_name_away = 'Toronto Raptors') ORDER BY total_points DESC LIMIT 1; 272.0 | 101.0 + What is the average number of points scored in the paint by the Philadelphia 76ers at home in games they won versus games they lost? SELECT (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Philadelphia 76ers' AND g.wl_home = 'W') AS avg_paint_points_wins, (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Philadelphia 76ers' AND g.wl_home = 'L') AS avg_paint_points_losses FROM game LIMIT 1; 42.4105461393597 | 41.4549763033175 +When did the Phoenix Suns and San Antonio Spurs have their closest game in terms of final score difference? SELECT g.game_date, ABS(g.pts_home - g.pts_away) AS score_difference FROM game g WHERE (g.team_name_home = 'Phoenix Suns' AND g.team_name_away = 'San Antonio Spurs') OR (g.team_name_home = 'San Antonio Spurs' AND g.team_name_away = 'Phoenix Suns') ORDER BY score_difference ASC LIMIT 1; 1982-11-07 00:00:00 | 1.0 +What was the average free throw percentage for the New York Knicks in games where they scored more than 100 points at home during the 2018 season? SELECT AVG(ft_pct_home) AS avg_ft_percentage FROM game WHERE team_name_home = 'New York Knicks' AND pts_home > 100 AND season_id = '22018'; 0.7675555556 +In which season did the Los Angeles Lakers have the highest average points in the paint at home? SELECT g.season_id, AVG(o.pts_paint_home) AS avg_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Los Angeles Lakers' GROUP BY g.season_id ORDER BY avg_paint_points DESC LIMIT 1; 22018 | 54.4242424242424 +What was the combined steals total for the Houston Rockets and Oklahoma City Thunder in their highest scoring matchup? SELECT g.stl_home + g.stl_away AS total_steals, g.pts_home + g.pts_away AS total_points FROM game g WHERE (g.team_name_home = 'Houston Rockets' AND g.team_name_away = 'Oklahoma City Thunder') OR (g.team_name_home = 'Oklahoma City Thunder' AND g.team_name_away = 'Houston Rockets') ORDER BY total_points DESC LIMIT 1; 15.0 | 274.0 +What was the largest point differential in any game between the Boston Celtics and the Los Angeles Lakers? SELECT ABS(pts_home - pts_away) AS point_differential FROM game WHERE (team_name_home = 'Boston Celtics' AND team_name_away = 'Los Angeles Lakers') OR (team_name_home = 'Los Angeles Lakers' AND team_name_away = 'Boston Celtics') ORDER BY point_differential DESC LIMIT 1; 39 +What's the total number of blocks the Milwaukee Bucks recorded at home in the 2019 season compared to the 2020 season? SELECT (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22019') AS blocks_2019, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22020') AS blocks_2020, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22020') - (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22019') AS blocks_difference FROM game LIMIT 1; 207.0 | 171.0 | -36.0 +Which opponent did the Golden State Warriors have the most lead changes against in a single home game? SELECT o.team_city_away AS opponent, o.lead_changes FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Golden State Warriors' ORDER BY o.lead_changes DESC LIMIT 1; Seattle | 33 +What was the shooting efficiency (field goal percentage) difference between the Toronto Raptors and their opponents in home games they won during the 2019 season? SELECT AVG(fg_pct_home - fg_pct_away) AS fg_pct_differential FROM game WHERE team_name_home = 'Toronto Raptors' AND wl_home = 'W' AND season_id = '22019'; 0.07526923077 +In games where the Miami Heat scored more than 110 points at home, what was their average rebounding advantage over opponents? SELECT AVG(reb_home - reb_away) AS avg_rebound_advantage FROM game WHERE team_name_home = 'Miami Heat' AND pts_home > 110; 4.68079096 +What was the date of the game with the most combined second-chance points between the Philadelphia 76ers and the Brooklyn Nets? SELECT g.game_date, (o.pts_2nd_chance_home + o.pts_2nd_chance_away) AS total_second_chance_pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_name_home = 'Philadelphia 76ers' AND g.team_name_away = 'Brooklyn Nets') OR (g.team_name_home = 'Brooklyn Nets' AND g.team_name_away = 'Philadelphia 76ers') ORDER BY total_second_chance_pts DESC LIMIT 1; 2012-10-19 00:00:00 | 49 +How many points did the Chicago Bulls score from fastbreaks and points off turnovers combined in their highest scoring home game of the 2017 season? SELECT (o.pts_fb_home + o.pts_off_to_home) AS transition_points, g.pts_home FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Chicago Bulls' AND g.season_id = '22017' ORDER BY g.pts_home DESC LIMIT 1; 28 | 123.0 +In which season did the Portland Trail Blazers have the best home court free throw shooting percentage in games they lost? SELECT season_id, AVG(ft_pct_home) AS avg_ft_pct FROM game WHERE team_name_home = 'Portland Trail Blazers' AND wl_home = 'L' GROUP BY season_id ORDER BY avg_ft_pct DESC LIMIT 1; 42000 | 0.923 +What was the offensive rebound difference between the Denver Nuggets and Minnesota Timberwolves in their highest combined scoring game? SELECT CASE WHEN g.team_name_home = 'Denver Nuggets' THEN g.oreb_home - g.oreb_away ELSE g.oreb_away - g.oreb_home END AS nuggets_oreb_advantage FROM game g WHERE (g.team_name_home = 'Denver Nuggets' AND g.team_name_away = 'Minnesota Timberwolves') OR (g.team_name_home = 'Minnesota Timberwolves' AND g.team_name_away = 'Denver Nuggets') ORDER BY (g.pts_home + g.pts_away) DESC LIMIT 1; 0 +What is the average number of points in the paint scored by the Sacramento Kings at home in the first half of the 2018 season compared to the second half? SELECT (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Sacramento Kings' AND g.season_id = '22018' AND CAST(strftime('%m', g.game_date) AS INTEGER) <= 6) AS first_half_avg, (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Sacramento Kings' AND g.season_id = '22018' AND CAST(strftime('%m', g.game_date) AS INTEGER) > 6) AS second_half_avg FROM game LIMIT 1; 51.3 | 49.5 +What was the largest lead held by the Orlando Magic in any game where they eventually lost at home? SELECT o.largest_lead_home AS largest_lead, g.game_date FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.wl_home = 'L' ORDER BY o.largest_lead_home DESC LIMIT 1; 46 | 2017-11-18 00:00:00 +What's the combined assist-to-turnover ratio for the Cleveland Cavaliers in home games during their best winning streak? WITH streaks AS ( SELECT g.game_id, g.ast_home, o.total_turnovers_home, ROW_NUMBER() OVER (ORDER BY g.game_date) - ROW_NUMBER() OVER (PARTITION BY g.wl_home ORDER BY g.game_date) AS streak_id FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Cleveland Cavaliers' AND g.wl_home = 'W' ) SELECT SUM(ast_home) / CASE WHEN SUM(total_turnovers_home) = 0 THEN 1 ELSE SUM(total_turnovers_home) END AS assist_turnover_ratio FROM streaks GROUP BY streak_id ORDER BY COUNT(*) DESC, assist_turnover_ratio DESC LIMIT 1; 1.731766124 +What is the average combined score in games between the New Orleans Pelicans and Memphis Grizzlies compared to the league average in the 2021 season? SELECT (SELECT AVG(pts_home + pts_away) FROM game WHERE (team_name_home = 'New Orleans Pelicans' AND team_name_away = 'Memphis Grizzlies') OR (team_name_home = 'Memphis Grizzlies' AND team_name_away = 'New Orleans Pelicans') AND season_id = '22021') AS pelgrizzlies_avg, (SELECT AVG(pts_home + pts_away) FROM game WHERE season_id = '22021') AS league_avg, (SELECT AVG(pts_home + pts_away) FROM game WHERE (team_name_home = 'New Orleans Pelicans' AND team_name_away = 'Memphis Grizzlies') OR (team_name_home = 'Memphis Grizzlies' AND team_name_away = 'New Orleans Pelicans') AND season_id = '22021') - (SELECT AVG(pts_home + pts_away) FROM game WHERE season_id = '22021') AS difference FROM game LIMIT 1; 216.380952380952 | 221.231707317073 | -4.85075493612078 +In games where the Phoenix Suns outscored their opponents in fastbreak points at home, what was their win percentage? SELECT COUNT(CASE WHEN g.wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Phoenix Suns' AND o.pts_fb_home > o.pts_fb_away; 62.12121212 +What was the free throw percentage difference between the Washington Wizards and Charlotte Hornets in their closest game since 2010? SELECT ABS(g.ft_pct_home - g.ft_pct_away) AS ft_pct_diff FROM game g WHERE ((g.team_name_home = 'Washington Wizards' AND g.team_name_away = 'Charlotte Hornets') OR (g.team_name_home = 'Charlotte Hornets' AND g.team_name_away = 'Washington Wizards')) AND CAST(SUBSTR(g.season_id, 2) AS INTEGER) >= 2010 ORDER BY ABS(g.pts_home - g.pts_away) ASC LIMIT 1; 0.054 +Which team had the biggest improvement in home court defensive rebounding from the 2017 to 2018 season? SELECT team_name_home, AVG(CASE WHEN season_id = '22018' THEN dreb_home END) - AVG(CASE WHEN season_id = '22017' THEN dreb_home END) AS dreb_improvement FROM game WHERE season_id IN ('22017', '22018') GROUP BY team_name_home ORDER BY dreb_improvement DESC LIMIT 1; Milwaukee Bucks | 9.90243902439024 +What was the average points per game for the Indiana Pacers in home games where they attempted more three-pointers than their season average? WITH season_avg AS ( SELECT AVG(fg3a_home) AS avg_3pa FROM game WHERE team_name_home = 'Indiana Pacers' AND season_id = '22018' ) SELECT AVG(g.pts_home) AS avg_points FROM game g, season_avg s WHERE g.team_name_home = 'Indiana Pacers' AND g.season_id = '22018' AND g.fg3a_home > s.avg_3pa; 106.7894737 +What was the combined free throw percentage for the Oklahoma City Thunder and Houston Rockets in their highest scoring playoff game? SELECT (g.ftm_home + g.ftm_away) * 100.0 / NULLIF((g.fta_home + g.fta_away), 0) AS combined_ft_pct FROM game g WHERE ((g.team_name_home = 'Oklahoma City Thunder' AND g.team_name_away = 'Houston Rockets') OR (g.team_name_home = 'Houston Rockets' AND g.team_name_away = 'Oklahoma City Thunder')) AND g.season_type = 'Playoffs' ORDER BY (g.pts_home + g.pts_away) DESC LIMIT 1; 86.36363636 +Which opponent did the Toronto Raptors have the highest average point differential against in home games during the 2019 championship season? SELECT team_name_away, AVG(pts_home - pts_away) AS avg_point_diff FROM game WHERE team_name_home = 'Toronto Raptors' AND season_id = '22019' GROUP BY team_name_away ORDER BY avg_point_diff DESC LIMIT 1; New York Knicks | 28.0 +What was the difference in three-point shooting volume (attempts) between the Golden State Warriors and their opponents in home games during their record-breaking 2016 season? SELECT AVG(fg3a_home - fg3a_away) AS three_point_attempt_diff FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22016'; 3.195121951 +In games where the Chicago Bulls recorded more than 10 steals at home, what was their win percentage during the 1998 season? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Chicago Bulls' AND stl_home > 10 AND season_id = '21998'; 42.85714286 +What was the highest number of lead changes in any game between the Los Angeles Lakers and Boston Celtics? SELECT MAX(o.lead_changes) AS max_lead_changes FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE (g.team_name_home = 'Los Angeles Lakers' AND g.team_name_away = 'Boston Celtics') OR (g.team_name_home = 'Boston Celtics' AND g.team_name_away = 'Los Angeles Lakers'); 22 +What was the average points scored by the Miami Heat in games where they had a higher field goal percentage than their opponent but still lost at home? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Miami Heat' AND fg_pct_home > fg_pct_away AND wl_home = 'L'; 95.70833333 +Which team had the largest improvement in points off turnovers at home from the 2015 to 2016 season? SELECT g1.team_name_home, AVG(CASE WHEN g1.season_id = '22016' THEN o1.pts_off_to_home END) - AVG(CASE WHEN g1.season_id = '22015' THEN o1.pts_off_to_home END) AS improvement FROM game g1 JOIN other_stats o1 ON g1.game_id = o1.game_id WHERE g1.season_id IN ('22015', '22016') GROUP BY g1.team_name_home ORDER BY improvement DESC LIMIT 1; Los Angeles Lakers | 2.32432432432432 +Which team had the highest ratio of three-point makes to total field goal attempts in home games during the 2021 season? SELECT team_name_home, SUM(fg3m_home) * 1.0 / NULLIF(SUM(fga_home), 0) AS three_point_ratio FROM game WHERE season_id = '22021' GROUP BY team_name_home ORDER BY three_point_ratio DESC LIMIT 1; Golden State Warriors | 0.171539961013645 +What was the average points per game the Portland Trail Blazers scored at home in games where they grabbed more offensive rebounds than their opponents during the 2018 season? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Portland Trail Blazers' AND oreb_home > oreb_away AND season_id = '22018'; 116.4583333 +Which opponent did the Philadelphia 76ers have the most ties in a single game with during the 2019 season? SELECT g.team_name_away, o.times_tied FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Philadelphia 76ers' AND g.season_id = '22019' ORDER BY o.times_tied DESC LIMIT 1; Indiana Pacers | 14 +What was the difference in average home winning margin between the Denver Nuggets and Utah Jazz in seasons where both teams made the playoffs? SELECT (SELECT AVG(pts_home - pts_away) FROM game WHERE team_name_home = 'Denver Nuggets' AND wl_home = 'W' AND season_id IN (SELECT DISTINCT season_id FROM game WHERE season_type = 'Playoffs' AND team_name_home = 'Denver Nuggets')) - (SELECT AVG(pts_home - pts_away) FROM game WHERE team_name_home = 'Utah Jazz' AND wl_home = 'W' AND season_id IN (SELECT DISTINCT season_id FROM game WHERE season_type = 'Playoffs' AND team_name_home = 'Utah Jazz')) AS margin_difference FROM game LIMIT 1; 1.549491596 +What was the average margin of victory for the Detroit Pistons in home games where they scored more than 100 points and allowed fewer than 90 points? SELECT AVG(pts_home - pts_away) AS avg_victory_margin FROM game WHERE team_name_home = 'Detroit Pistons' AND pts_home > 100 AND pts_away < 90; 23.5 +In which season did the Cleveland Cavaliers have the highest ratio of assists to turnovers in home games? SELECT season_id, SUM(ast_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS assist_to_turnover_ratio FROM game WHERE team_name_home = 'Cleveland Cavaliers' GROUP BY season_id ORDER BY assist_to_turnover_ratio DESC LIMIT 1; 21984 | 29.7948717948718 +What was the field goal percentage difference between the Minnesota Timberwolves and San Antonio Spurs in their highest combined scoring game? SELECT CASE WHEN team_name_home = 'Minnesota Timberwolves' THEN fg_pct_home - fg_pct_away ELSE fg_pct_away - fg_pct_home END AS twolves_fg_pct_advantage FROM game WHERE (team_name_home = 'Minnesota Timberwolves' AND team_name_away = 'San Antonio Spurs') OR (team_name_home = 'San Antonio Spurs' AND team_name_away = 'Minnesota Timberwolves') ORDER BY (pts_home + pts_away) DESC LIMIT 1; 0.042 +Which opponent did the Orlando Magic have the most fastbreak points against in a home game during the 2019 season? SELECT g.team_name_away, o.pts_fb_home AS fastbreak_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.season_id = '22019' ORDER BY o.pts_fb_home DESC LIMIT 1; New Orleans Pelicans | 21 +What was the difference in three-point shooting accuracy between the Houston Rockets and their opponents in home games during the 2018 season? SELECT AVG(fg3_pct_home - fg3_pct_away) AS three_pt_percentage_diff FROM game WHERE team_name_home = 'Houston Rockets' AND season_id = '22018'; 0.01543902439 +What was the average number of lead changes in games where the Milwaukee Bucks won at home by less than 5 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Milwaukee Bucks' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 5; 8.59375 +What was the highest number of points the Golden State Warriors scored in a game where they shot below their season average from three-point range? WITH season_avg AS ( SELECT AVG(fg3_pct_home) AS avg_3pt_pct FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22016' ) SELECT MAX(g.pts_home) AS max_points FROM game g, season_avg s WHERE g.team_name_home = 'Golden State Warriors' AND g.season_id = '22016' AND g.fg3_pct_home < s.avg_3pt_pct; 142 +What was the points in the paint difference between the Los Angeles Lakers and their opponents in home games they won by double digits during the 2020 season? SELECT AVG(o.pts_paint_home - o.pts_paint_away) AS paint_points_diff FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Los Angeles Lakers' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) >= 10 AND g.season_id = '22020'; -0.5454545455 +Which team had the highest average combined offensive and defensive rebounds in home games during the 2017 season? SELECT team_name_home, AVG(oreb_home + dreb_home) AS avg_total_rebounds FROM game WHERE season_id = '22017' GROUP BY team_name_home ORDER BY avg_total_rebounds DESC LIMIT 1; Philadelphia 76ers | 48.9512195121951 +What was the largest deficit overcome by the Miami Heat in any home victory? SELECT o.largest_lead_away AS max_deficit_overcome FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Miami Heat' AND g.wl_home = 'W' ORDER BY o.largest_lead_away DESC LIMIT 1; 46 +What was the difference in points per field goal attempt between the Philadelphia 76ers and their opponents in home games during the 2018 season? SELECT AVG((pts_home / NULLIF(fga_home, 0)) - (pts_away / NULLIF(fga_away, 0))) AS ppfga_diff FROM game WHERE team_name_home = 'Philadelphia 76ers' AND season_id = '22018'; 0.1332818787 +Which season saw the Boston Celtics record their highest average steal-to-turnover ratio in home games? SELECT season_id, SUM(stl_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS steal_to_turnover_ratio FROM game WHERE team_name_home = 'Boston Celtics' GROUP BY season_id ORDER BY steal_to_turnover_ratio DESC LIMIT 1; 12017 | 0.851851851851852 +What was the average rebounding margin for the San Antonio Spurs in home games where they shot above 50% from the field? SELECT AVG(reb_home - reb_away) AS avg_rebound_margin FROM game WHERE team_name_home = 'San Antonio Spurs' AND fg_pct_home > 0.5; 5.122781065 +Which opponent gave up the most points in the paint to the New York Knicks in a home game during the 2019 season? SELECT g.team_name_away, o.pts_paint_home FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'New York Knicks' AND g.season_id = '22019' ORDER BY o.pts_paint_home DESC LIMIT 1; New Orleans Pelicans | 66 +What was the average free throw attempt difference between the Denver Nuggets and their opponents in home games they lost during the 2017 season? SELECT AVG(fta_home - fta_away) AS avg_fta_diff FROM game WHERE team_name_home = 'Denver Nuggets' AND wl_home = 'L' AND season_id = '22017'; 3.9 +What is the ratio of team rebounds to total rebounds for the Portland Trail Blazers in their highest scoring home game? SELECT o.team_rebounds_home * 1.0 / NULLIF(g.reb_home, 0) AS team_to_total_reb_ratio FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Portland Trail Blazers' ORDER BY g.pts_home DESC LIMIT 1; 0.3454545455 +What was the highest combined total of second chance points in any game involving the Miami Heat during the 2017 season? SELECT MAX(o.pts_2nd_chance_home + o.pts_2nd_chance_away) AS max_combined_second_chance FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_name_home = 'Miami Heat' OR g.team_name_away = 'Miami Heat') AND g.season_id = '22017'; 41 +hat is the difference in average home winning percentage between teams founded before 1980 and teams founded after 1980? SELECT (SELECT COUNT(CASE WHEN g.wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) FROM game g JOIN team t ON g.team_id_home = t.id WHERE t.year_founded < 1980) - (SELECT COUNT(CASE WHEN g.wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) FROM game g JOIN team t ON g.team_id_home = t.id WHERE t.year_founded >= 1980) AS win_pct_diff FROM game LIMIT 1; 7.048616104 +What was the highest number of points scored by the Brooklyn Nets in any home game during the 2019 season? SELECT MAX(pts_home) AS max_points FROM game WHERE team_name_home = 'Brooklyn Nets' AND season_id = '22019'; 139 +What is the average number of assists per game for the Boston Celtics when playing at home versus away? SELECT (SELECT AVG(ast_home) FROM game WHERE team_name_home = 'Boston Celtics') AS avg_home_assists, (SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Boston Celtics') AS avg_away_assists FROM game LIMIT 1; 24.8868921775899 | 22.7171122994652 +What was the total number of blocks recorded by the Milwaukee Bucks in home games during the 2018 season? SELECT SUM(blk_home) AS total_blocks FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22018'; 238 +What is the win percentage for the Chicago Bulls in home games where they scored more than 100 points? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Chicago Bulls' AND pts_home > 100; 75.7531227 +Which opponent did the Miami Heat have their largest margin of victory against in a home game? SELECT team_name_away, MAX(pts_home - pts_away) AS victory_margin FROM game WHERE team_name_home = 'Miami Heat' AND wl_home = 'W' GROUP BY team_name_away ORDER BY victory_margin DESC LIMIT 1; Los Angeles Clippers | 43.0 +What is the difference in free throw percentage between the Philadelphia 76ers and their opponents in home games? SELECT AVG(ft_pct_home - ft_pct_away) AS ft_pct_diff FROM game WHERE team_name_home = 'Philadelphia 76ers'; -0.0004981519507 +Which team had the lowest average turnovers per game at home during the 2019 season? SELECT team_name_home, AVG(tov_home) AS avg_turnovers FROM game WHERE season_id = '22019' GROUP BY team_name_home ORDER BY avg_turnovers ASC LIMIT 1; Dallas Mavericks | 12.8421052631579 +What was the rebounding differential in games between the Toronto Raptors and Boston Celtics? SELECT AVG( CASE WHEN team_name_home = 'Toronto Raptors' THEN reb_home - reb_away ELSE reb_away - reb_home END ) AS avg_reb_diff FROM game WHERE (team_name_home = 'Toronto Raptors' AND team_name_away = 'Boston Celtics') OR (team_name_home = 'Boston Celtics' AND team_name_away = 'Toronto Raptors'); -0.9302325581 +What is the total number of points scored by the Houston Rockets in home games against the Los Angeles Lakers? SELECT SUM(pts_home) AS total_points FROM game WHERE team_name_home = 'Houston Rockets' AND team_name_away = 'Los Angeles Lakers'; 11849 +Which team had the highest percentage of points coming from free throws in home games during the 2018 season? SELECT team_name_home, SUM(ftm_home) * 100.0 / SUM(pts_home) AS ft_points_percentage FROM game WHERE season_id = '22018' GROUP BY team_name_home ORDER BY ft_points_percentage DESC LIMIT 1; Philadelphia 76ers | 18.8943894389439 +What was the average points in the paint for the Denver Nuggets in games they won versus games they lost at home? SELECT AVG(CASE WHEN g.wl_home = 'W' THEN o.pts_paint_home END) AS avg_paint_pts_wins, AVG(CASE WHEN g.wl_home = 'L' THEN o.pts_paint_home END) AS avg_paint_pts_losses FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Denver Nuggets'; 45.465034965035 | 42.1988950276243 +What is the winning percentage of teams that score more points off turnovers than their opponents in home games? SELECT COUNT(CASE WHEN g.wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE o.pts_off_to_home > o.pts_off_to_away; 59.39603106 +What was the assist-to-turnover ratio for the Golden State Warriors in home games during their 2016 record-breaking season? SELECT SUM(ast_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS assist_turnover_ratio FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22016'; 2.186356073 +What is the average combined score in games where the San Antonio Spurs played at home during the 2019 season? SELECT AVG(pts_home + pts_away) AS avg_combined_score FROM game WHERE team_name_home = 'San Antonio Spurs' AND season_id = '22019'; 227.6764706 +What was the field goal percentage difference between the Dallas Mavericks and their opponents in home games they lost by less than 5 points? SELECT AVG(fg_pct_home - fg_pct_away) AS fg_pct_diff FROM game WHERE team_name_home = 'Dallas Mavericks' AND wl_home = 'L' AND (pts_away - pts_home) < 5; -0.0273315508 +Which team had the highest average second chance points in home games during the 2020 season? SELECT g.team_name_home, AVG(o.pts_2nd_chance_home) AS avg_second_chance_pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.season_id = '22020' GROUP BY g.team_name_home ORDER BY avg_second_chance_pts DESC LIMIT 1; Minnesota Timberwolves | 15.3793103448276 +What was the largest combined rebound total in any game between the New York Knicks and Brooklyn Nets? SELECT MAX(reb_home + reb_away) AS max_combined_rebounds FROM game WHERE (team_name_home = 'New York Knicks' AND team_name_away = 'Brooklyn Nets') OR (team_name_home = 'Brooklyn Nets' AND team_name_away = 'New York Knicks'); 110 +What was the average three-point shooting percentage for the Los Angeles Lakers in games where they scored over 110 points at home? SELECT AVG(fg3_pct_home) AS avg_3pt_percentage FROM game WHERE team_name_home = 'Los Angeles Lakers' AND pts_home > 110; 0.3863559823 +Which team had the highest free throw shooting percentage in away games during the 2018 season? SELECT team_name_away, AVG(ft_pct_away) AS avg_ft_pct FROM game WHERE season_id = '22018' GROUP BY team_name_away ORDER BY avg_ft_pct DESC LIMIT 1; San Antonio Spurs | 0.823804878048781 +What was the average margin of victory for the Toronto Raptors in home games where they had more assists than their opponent? SELECT AVG(pts_home - pts_away) AS avg_margin FROM game WHERE team_name_home = 'Toronto Raptors' AND wl_home = 'W' AND ast_home > ast_away; 12.98398169 +Which opponent did the Cleveland Cavaliers have the best rebounding differential against in home games during the 2017 season? SELECT team_name_away, AVG(reb_home - reb_away) AS reb_diff FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND season_id = '22017' GROUP BY team_name_away ORDER BY reb_diff DESC LIMIT 1; Phoenix Suns | 18.0 +What is the win percentage for the Golden State Warriors in home games where they made fewer three-pointers than their opponent? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Golden State Warriors' AND fg3m_home < fg3m_away; 44.95677233 +What was the highest combined total of blocks in any game between the Utah Jazz and San Antonio Spurs? SELECT MAX(blk_home + blk_away) AS total_blocks FROM game WHERE (team_name_home = 'Utah Jazz' AND team_name_away = 'San Antonio Spurs') OR (team_name_home = 'San Antonio Spurs' AND team_name_away = 'Utah Jazz'); 26 +What is the average difference in points in the paint between the Milwaukee Bucks and their opponents in home games? SELECT AVG(o.pts_paint_home - o.pts_paint_away) AS avg_paint_diff FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Milwaukee Bucks'; 0.5026068822 +Which season saw the Philadelphia 76ers record their highest average number of steals per game at home? SELECT season_id, AVG(stl_home) AS avg_steals FROM game WHERE team_name_home = 'Philadelphia 76ers' GROUP BY season_id ORDER BY avg_steals DESC LIMIT 1; 12021 | 17.0 +What was the shooting percentage from the field for the New York Knicks in their highest scoring home game of the 2019 season? SELECT fg_pct_home AS shooting_percentage FROM game WHERE team_name_home = 'New York Knicks' AND season_id = '22019' ORDER BY pts_home DESC LIMIT 1; 0.558 +What is the average number of lead changes in games where the Chicago Bulls won at home by less than 10 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Chicago Bulls' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 10; 7.84469697 +Which opponent did the Denver Nuggets score the most points against in a single home game? SELECT team_name_away, MAX(pts_home) AS max_points FROM game WHERE team_name_home = 'Denver Nuggets' GROUP BY team_name_away ORDER BY max_points DESC LIMIT 1; Detroit Pistons | 184.0 +What is the average combined offensive rebounds for the Oklahoma City Thunder and their opponents in games where the Thunder won at home? SELECT AVG(oreb_home + oreb_away) AS avg_combined_oreb FROM game WHERE team_name_home = 'Oklahoma City Thunder' AND wl_home = 'W'; 21.8691358 +What was the largest margin of defeat for the Los Angeles Clippers in any home game during the 2018 season? SELECT MAX(pts_away - pts_home) AS largest_defeat_margin FROM game WHERE team_name_home = 'LA Clippers' AND pts_away > pts_home AND season_id = '22018'; 32 +What is the average number of points scored by the Los Angeles Clippers in home games during the 2019 season? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'LA Clippers' AND season_id = '22019'; 117.5277778 +What is the win percentage of the Los Angeles Clippers in home games where they scored more than 110 points? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'LA Clippers' AND pts_home > 110; 83.24324324 +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 was the three-point shooting percentage for the Los Angeles Clippers in games against the Los Angeles Lakers? SELECT AVG( CASE WHEN team_name_home = 'LA Clippers' THEN fg3_pct_home ELSE fg3_pct_away END ) AS avg_3pt_percentage FROM game WHERE (team_name_home = 'LA Clippers' AND team_name_away = 'Los Angeles Lakers') OR (team_name_home = 'Los Angeles Lakers' AND team_name_away = 'LA Clippers'); 0.3734705882 +Find all games where the Los Angeles Clippers played against teams founded before 1970. SELECT g.game_id, g.game_date, g.team_name_home, g.team_name_away FROM game g JOIN team t ON g.team_id_away = t.id WHERE g.team_name_home = 'LA Clippers' AND t.year_founded < 1970 UNION SELECT g.game_id, g.game_date, g.team_name_home, g.team_name_away FROM game g JOIN team t ON g.team_id_home = t.id WHERE g.team_name_away = 'LA Clippers' AND t.year_founded < 1970 LIMIT 1; 0011500091 | 2015-10-20 00:00:00 | LA Clippers | Golden State Warriors +What is the abbreviation for the Los Angeles Clippers in the team table? SELECT abbreviation FROM team WHERE full_name = 'Los Angeles Clippers'; LAC +How many points did the Los Angeles Clippers score in the paint in their highest scoring home game of the 2019 season? SELECT o.pts_paint_home FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'LA Clippers' AND g.season_id = '22019' ORDER BY g.pts_home DESC LIMIT 1; 58 +Which season had the most total turnovers across all games? SELECT season_id FROM other_stats JOIN game USING(game_id) GROUP BY season_id ORDER BY SUM(total_turnovers_home + total_turnovers_away) DESC LIMIT 1; 21999 +Which team has the highest win percentage as a home team? SELECT team_abbreviation_home FROM game GROUP BY team_abbreviation_home HAVING COUNT(*) > 0 ORDER BY SUM(CASE WHEN wl_home = 'W' THEN 1 ELSE 0 END)*1.0 / COUNT(*) DESC LIMIT 1; MAL +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 +Which team had the highest average number of assists per game across all seasons? SELECT team FROM (SELECT team_abbreviation_home AS team, ast_home AS ast FROM game UNION ALL SELECT team_abbreviation_away, ast_away FROM game) GROUP BY team ORDER BY AVG(ast) DESC LIMIT 1; DRT +Which city had the most games where the home team won by more than 25 points? SELECT team_city_home FROM other_stats WHERE game_id IN (SELECT game_id FROM game WHERE wl_home = 'W' AND pts_home - pts_away > 25) GROUP BY team_city_home ORDER BY COUNT(*) DESC LIMIT 1; Golden State +Which team was involved in the most games with more than 15 lead changes? SELECT team FROM (SELECT team_abbreviation_home AS team FROM other_stats WHERE lead_changes > 15 UNION ALL SELECT team_abbreviation_away FROM other_stats WHERE lead_changes > 15) GROUP BY team ORDER BY COUNT(*) DESC LIMIT 1; LAL +Which season had the most games decided by 3 points or fewer? SELECT season_id FROM game WHERE ABS(pts_home - pts_away) <= 3 GROUP BY season_id ORDER BY COUNT(*) DESC LIMIT 1; 22004 +Which team had the most losses in games where they had more rebounds than their opponent? SELECT team FROM (SELECT team_abbreviation_home AS team FROM game WHERE reb_home > reb_away AND wl_home = 'L' UNION ALL SELECT team_abbreviation_away FROM game WHERE reb_away > reb_home AND wl_away = 'L') GROUP BY team ORDER BY COUNT(*) DESC LIMIT 1; NYK +Which season had the most average total fouls per game? SELECT season_id FROM game GROUP BY season_id ORDER BY AVG(pf_home + pf_away) DESC LIMIT 1; 41963 +Which team committed the fewest average personal fouls per game as an away team? SELECT team_abbreviation_away FROM game GROUP BY team_abbreviation_away ORDER BY AVG(pf_away) ASC LIMIT 1; DRT +How many times did the Golden State Warriors lose at home in the 2012 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'GSW' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22012'; 0 +In games from the 2003 season, how often did the New Orleans Pelicans win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'NOP' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'NOP' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22003'; 0 +In games from the 2007 season, how often did the Dallas Mavericks win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'DAL' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'DAL' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22007'; 2 +What is the average number of points off turnovers scored by the Golden State Warriors at home in games with more than 20 lead changes during the 2019 season? SELECT AVG(o.pts_off_to_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'GSW' AND o.lead_changes > 20 AND g.season_id = '22019'; +How many times did the Denver Nuggets lose at home in the 2015 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'DEN' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22015'; 2 +In games from the 2010 season, how often did the Sacramento Kings win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'SAC' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'SAC' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22010'; 0 +In 2013, what was the average number of rebounds by the Denver Nuggets in games with at least 10 ties and fewer than 10 lead changes? SELECT AVG(g.reb_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DEN' AND o.times_tied >= 10 AND o.lead_changes < 10 AND g.season_id = '22013'; 42.666666666666664 +Which city hosted the most games that ended with both teams scoring over 100 points? SELECT team_city_home FROM other_stats WHERE game_id IN (SELECT game_id FROM game WHERE pts_home > 100 AND pts_away > 100) GROUP BY team_city_home ORDER BY COUNT(*) DESC LIMIT 1; Los Angeles +Which city had the most total fast break points in the 2016 season? SELECT team_city_home FROM other_stats WHERE game_id IN (SELECT game_id FROM game WHERE season_id = '22016') GROUP BY team_city_home ORDER BY SUM(pts_fb_home) DESC LIMIT 1; Golden State +Which season had the most games decided by exactly 1 point? SELECT season_id FROM game WHERE ABS(pts_home - pts_away) = 1 GROUP BY season_id ORDER BY COUNT(*) DESC LIMIT 1; 22004 +Which season had the most total points scored across all games? SELECT season_id FROM game GROUP BY season_id ORDER BY SUM(pts_home + pts_away) DESC LIMIT 1; 22022 +Which season had the most games where both teams scored at least 120 points? SELECT season_id FROM game WHERE pts_home >= 120 AND pts_away >= 120 GROUP BY season_id ORDER BY COUNT(*) DESC LIMIT 1; 22022 +Which season had the lowest average number of personal fouls committed per game? SELECT season_id FROM game GROUP BY season_id ORDER BY AVG(pf_home + pf_away) ASC LIMIT 1; 32022 +How many points did the Los Angeles Clippers score as visitors in their most turnover-heavy game? SELECT pts_away FROM game WHERE team_abbreviation_away = 'LAC' ORDER BY tov_away DESC LIMIT 1; 107.0 +Which season had the most combined team rebounds recorded? SELECT season_id FROM other_stats JOIN game USING(game_id) GROUP BY season_id ORDER BY SUM(team_rebounds_home + team_rebounds_away) DESC LIMIT 1; 21997 +Which season had the most games where the away team won by more than 30 points? SELECT season_id FROM game WHERE wl_away = 'W' AND (pts_away - pts_home) > 30 GROUP BY season_id ORDER BY COUNT(*) DESC LIMIT 1; 22021 +Which season had the highest average number of times tied per game? SELECT season_id FROM other_stats JOIN game USING(game_id) GROUP BY season_id ORDER BY AVG(times_tied) DESC LIMIT 1; 32002 +Which season had the most games where home teams scored zero fast break points? SELECT season_id FROM other_stats JOIN game USING(game_id) WHERE pts_fb_home = 0 GROUP BY season_id ORDER BY COUNT(*) DESC LIMIT 1; 22001 +Which season had the fewest total three-point attempts attempted league-wide? SELECT season_id FROM game GROUP BY season_id ORDER BY SUM(fg3a_home + fg3a_away) ASC LIMIT 1; 21946 +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 were scored in a game where the home team blocked more shots than they had turnovers? SELECT (pts_home + pts_away) FROM game WHERE blk_home > tov_home ORDER BY game_date DESC LIMIT 1; 208.0 +What were the total points in a game where both teams shot over 50% from the field? SELECT (pts_home + pts_away) FROM game WHERE fg_pct_home > 0.5 AND fg_pct_away > 0.5 ORDER BY (pts_home + pts_away) DESC LIMIT 1; 374.0 +How many points did the Los Angeles Lakers score in their last home game? SELECT pts_home FROM game WHERE team_abbreviation_home = 'LAL' ORDER BY game_date DESC LIMIT 1; 111.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 +What were the total points scored by the home team in the game with the most total blocks? SELECT pts_home FROM game WHERE game_id = (SELECT game_id FROM game ORDER BY (blk_home + blk_away) DESC LIMIT 1); 92.0 +How many points did the Brooklyn Nets score in their first away game in 2010? SELECT pts_away FROM game WHERE team_abbreviation_away = 'BKN' AND season_id = '22010' ORDER BY game_date ASC LIMIT 1; [] +How many points did the home team score in the game with the highest number of lead changes? SELECT pts_home FROM game WHERE game_id = (SELECT game_id FROM other_stats ORDER BY lead_changes DESC LIMIT 1); 122.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 total points were scored in a game where both teams attempted over 30 three-pointers? SELECT (pts_home + pts_away) FROM game WHERE fg3a_home > 30 AND fg3a_away > 30 ORDER BY (pts_home + pts_away) DESC LIMIT 1; 374.0 +How many points were scored by the home team in the game with the most fast break points? SELECT pts_home FROM game WHERE game_id = (SELECT game_id FROM other_stats ORDER BY (pts_fb_home + pts_fb_away) DESC LIMIT 1); 192.0,192.0 +How many points did the Chicago Bulls score in their final game of the 1996 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'CHI' AND season_id = '21996' ORDER BY game_date DESC LIMIT 1; 101.0 +What is the total number of points in a game where the total number of three-pointers made equals the number of personal fouls? SELECT pts_home + pts_away FROM game WHERE (fg3m_home + fg3m_away) = (pf_home + pf_away) LIMIT 1; 211.0 +How many total points were scored in the game with the highest difference between team rebounds and individual rebounds for the home team? SELECT pts_home + pts_away FROM game WHERE game_id = (SELECT os.game_id FROM other_stats os JOIN game g ON os.game_id = g.game_id ORDER BY (team_rebounds_home - reb_home) DESC LIMIT 1); 182.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 points did the Brooklyn Nets score as a home team in the game where they had the most blocks? SELECT pts_home FROM game WHERE team_abbreviation_home = 'BKN' ORDER BY blk_home DESC LIMIT 1; 115.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 number of points in the only game where both teams had fewer than 3 offensive rebounds? SELECT pts_home + pts_away FROM game WHERE oreb_home < 3 AND oreb_away < 3 ORDER BY game_date DESC LIMIT 1; 211.0 +How many points did the Miami Heat score in their lowest scoring home win? SELECT pts_home FROM game WHERE team_abbreviation_home = 'MIA' AND wl_home = 'W' ORDER BY pts_home ASC LIMIT 1; 74.0 +What was the total score of the first game ever where both teams shot over 90% from the free throw line? SELECT pts_home + pts_away FROM game WHERE ft_pct_home > 0.9 AND ft_pct_away > 0.9 ORDER BY game_date ASC LIMIT 1; 193.0 +Which city had teams that scored the most total points during the 2010 season? SELECT team_city_home FROM other_stats WHERE game_id IN (SELECT game_id FROM game WHERE season_id = '22010') GROUP BY team_city_home ORDER BY SUM(pts_paint_home + pts_2nd_chance_home + pts_fb_home + pts_off_to_home) DESC LIMIT 1; Los Angeles +Which city had home teams with the highest average number of rebounds in 2005? SELECT team_city_home FROM other_stats WHERE game_id IN (SELECT game_id FROM game WHERE season_id = '22005') GROUP BY team_city_home ORDER BY AVG(team_rebounds_home) DESC LIMIT 1; Orlando +Which season had the most total blocks recorded? SELECT season_id FROM game GROUP BY season_id ORDER BY SUM(blk_home + blk_away) DESC LIMIT 1; 22000 +How many points did the away team score in a game where the home team had a plus-minus of -30 or worse? SELECT pts_away FROM game WHERE plus_minus_home <= -30 ORDER BY plus_minus_home ASC LIMIT 1; 127.0 +How many points were scored by the Orlando Magic at home in a game with more than 100 combined rebounds? SELECT pts_home FROM game WHERE team_abbreviation_home = 'ORL' AND (reb_home + reb_away) > 100 ORDER BY game_date DESC LIMIT 1; 116.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 +How many total points were scored in the only game where both teams had identical stat lines for rebounds, assists, and turnovers? SELECT pts_home + pts_away FROM game WHERE reb_home = reb_away AND ast_home = ast_away AND tov_home = tov_away LIMIT 1; 209.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 +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 +Which game had the biggest difference between total turnovers and team turnovers for the away team? SELECT game_id FROM other_stats ORDER BY ABS(total_turnovers_away - team_turnovers_away) DESC LIMIT 1; 29600522 +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 +How many points off turnovers were scored by away teams in games where they had more team rebounds than the home team? SELECT SUM(pts_off_to_away) FROM other_stats WHERE team_rebounds_away > team_rebounds_home; 169555 +Which team committed the fewest total turnovers in an away game that resulted in a win? SELECT team_abbreviation_away FROM other_stats WHERE game_id IN (SELECT game_id FROM game WHERE wl_away = 'W') ORDER BY total_turnovers_away ASC LIMIT 1; PHX +Which game had the most efficient away team in terms of points off turnovers per total turnover? SELECT game_id FROM other_stats WHERE total_turnovers_away > 0 ORDER BY (pts_off_to_away * 1.0 / total_turnovers_away) DESC LIMIT 1; 0021500879 +Which team had the most games where their team rebounds as away team were greater than 15? SELECT team_abbreviation_away FROM other_stats WHERE team_rebounds_away > 15 GROUP BY team_abbreviation_away ORDER BY COUNT(*) DESC LIMIT 1; UTA +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 away team had the most games where they shot below 30% from the field? SELECT team_abbreviation_away FROM game WHERE fg_pct_away < 0.3 GROUP BY team_abbreviation_away ORDER BY COUNT(*) DESC LIMIT 1; PHW +Which away team scored the most points in a game with fewer than 10 assists? SELECT team_abbreviation_away FROM game WHERE ast_away < 10 ORDER BY pts_away DESC LIMIT 1; MNL +Which team had the most away wins when committing more personal fouls than the home team? SELECT team_abbreviation_away FROM game WHERE wl_away = 'W' AND pf_away > pf_home GROUP BY team_abbreviation_away ORDER BY COUNT(*) DESC LIMIT 1; BOS +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 +Which away team had the lowest free throw percentage in a game with more than 20 attempts? SELECT team_abbreviation_away FROM game WHERE fta_away > 20 ORDER BY ft_pct_away ASC LIMIT 1; CHI +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 +Which away team committed the most turnovers in a game where they still won? SELECT team_abbreviation_away FROM game WHERE wl_away = 'W' ORDER BY tov_away DESC LIMIT 1; NJN +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 home team had the most wins when playing against the Los Angeles Lakers? SELECT team_name_home FROM game WHERE team_name_away = 'Los Angeles Lakers' AND wl_home = 'W' GROUP BY team_name_home ORDER BY COUNT(*) DESC LIMIT 1; Phoenix Suns +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 had the most blocks in a game where the away team was the Boston Celtics? SELECT team_name_home FROM game WHERE team_name_away = 'Boston Celtics' ORDER BY blk_home DESC LIMIT 1; Philadelphia 76ers +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 +Which home team made the most free throws in a game without any video available? SELECT team_name_home FROM game WHERE video_available_home = 0 ORDER BY ftm_home DESC LIMIT 1; Phoenix Suns +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 home team had the most games with a perfect free throw percentage? SELECT team_name_home FROM game WHERE ft_pct_home = 1.0 GROUP BY team_name_home ORDER BY COUNT(*) DESC LIMIT 1; New York Knicks +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 +Which team had the most games where they committed fewer than 5 turnovers at home? SELECT team_name_home FROM game WHERE tov_home < 5 GROUP BY team_name_home ORDER BY COUNT(*) DESC LIMIT 1; Dallas Mavericks +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 +What is the abbreviation of the team nicknamed 'Heat'? SELECT abbreviation FROM team WHERE nickname = 'Heat'; MIA +Which team was founded in the same year as the Boston Celtics? SELECT full_name FROM team WHERE year_founded = (SELECT year_founded FROM team WHERE full_name = 'Boston Celtics'); Boston Celtics, Golden State Warriors, New York Knicks +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 teams share the same city as the Los Angeles Lakers? SELECT full_name FROM team WHERE city = (SELECT city FROM team WHERE full_name = 'Los Angeles Lakers'); Los Angeles Clippers, Los Angeles Lakers +Which team abbreviation corresponds to the city of Houston? SELECT abbreviation FROM team WHERE city = 'Houston'; HOU +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 +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 +Which teams were founded in the same state as the Golden State Warriors? SELECT full_name FROM team WHERE state = (SELECT state FROM team WHERE full_name = 'Golden State Warriors'); Golden State Warriors, Los Angeles Clippers, Los Angeles Lakers, Sacramento Kings +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 was founded most recently? SELECT full_name FROM team ORDER BY year_founded DESC LIMIT 1; New Orleans Pelicans +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 second-highest number of points the Golden State Warriors have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Golden State Warriors' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 154.0 +How many home games did the Los Angeles Lakers win in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'LAL' AND wl_home = 'W' AND season_id = '22017'; 20 +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 +Which Los Angeles Lakers home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Los Angeles Lakers' ORDER BY os.lead_changes DESC LIMIT 1; (2021-11-10 00:00:00, 33) +Find Los Angeles Lakers' largest home victory margin in the 2008 season. SELECT MAX(pts_home - pts_away) AS biggest_win FROM game WHERE team_abbreviation_home = 'LAL' AND season_id = '22008'; 29.0 +How many Los Angeles Lakers home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'LAL' AND os.pts_paint_home > os.pts_paint_away; 490 +How many Los Angeles Lakers home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Los Angeles Lakers' AND oreb_home > 15 AND stl_home >= 10; (1982-06-01 00:00:00, 17.0, 15.0), (1982-06-03 00:00:00, 16.0, 10.0), (1983-05-08 00:00:00, 17.0, 10.0), (1983-05-10 00:00:00, 16.0, 10.0), (1984-05-23 00:00:00, 16.0, 11.0), (1985-04-27 00:00:00, 20.0, 12.0), (1985-05-22 00:00:00, 17.0, 13.0), (1985-11-17 00:00:00, 16.0, 11.0), (1985-11-20 00:00:00, 18.0, 10.0), (1985-12-15 00:00:00, 16.0, 10.0), (1986-01-08 00:00:00, 19.0, 11.0), (1986-01-10 00:00:00, 16.0, 13.0), (1986-03-24 00:00:00, 19.0, 13.0), (1986-05-21 00:00:00, 19.0, 12.0), (1986-11-12 00:00:00, 16.0, 12.0), (1986-12-07 00:00:00, 16.0, 18.0), (1987-03-07 00:00:00, 19.0, 11.0), (1987-03-20 00:00:00, 22.0, 11.0), (1987-03-22 00:00:00, 19.0, 12.0), (1987-06-02 00:00:00, 17.0, 10.0), (1987-11-15 00:00:00, 21.0, 10.0), (1987-11-17 00:00:00, 16.0, 10.0), (1987-12-23 00:00:00, 18.0, 10.0), (1988-01-06 00:00:00, 18.0, 11.0), (1988-01-12 00:00:00, 17.0, 11.0), (1988-01-26 00:00:00, 19.0, 11.0), (1988-04-08 00:00:00, 17.0, 12.0), (1988-04-24 00:00:00, 21.0, 11.0), (1988-12-30 00:00:00, 17.0, 11.0), (1989-01-18 00:00:00, 21.0, 12.0), (1989-01-24 00:00:00, 17.0, 13.0), (1989-02-08 00:00:00, 17.0, 13.0), (1989-04-30 00:00:00, 17.0, 10.0), (1989-05-07 00:00:00, 18.0, 12.0), (1989-11-12 00:00:00, 16.0, 12.0), (1989-12-29 00:00:00, 16.0, 10.0), (1990-03-09 00:00:00, 16.0, 14.0), (1990-11-28 00:00:00, 17.0, 12.0), (1991-01-09 00:00:00, 20.0, 10.0), (1991-01-29 00:00:00, 21.0, 10.0), (1991-03-01 00:00:00, 18.0, 10.0), (1991-03-24 00:00:00, 16.0, 11.0), (1991-03-31 00:00:00, 21.0, 12.0), (1991-04-21 00:00:00, 20.0, 10.0), (1991-11-15 00:00:00, 17.0, 13.0), (1991-12-30 00:00:00, 16.0, 12.0), (1992-01-03 00:00:00, 19.0, 13.0), (1992-01-20 00:00:00, 22.0, 12.0), (1992-01-24 00:00:00, 17.0, 11.0), (1992-01-29 00:00:00, 20.0, 11.0), (1992-02-14 00:00:00, 20.0, 10.0), (1992-04-09 00:00:00, 16.0, 10.0), (1992-11-22 00:00:00, 16.0, 19.0), (1993-01-20 00:00:00, 17.0, 11.0), (1993-03-05 00:00:00, 23.0, 15.0), (1993-03-07 00:00:00, 18.0, 16.0), (1993-03-28 00:00:00, 16.0, 13.0), (1993-03-31 00:00:00, 20.0, 11.0), (1993-04-18 00:00:00, 16.0, 11.0), (1993-04-24 00:00:00, 17.0, 12.0), (1993-05-04 00:00:00, 16.0, 13.0), (1993-11-05 00:00:00, 20.0, 11.0), (1993-11-12 00:00:00, 19.0, 10.0), (1993-11-16 00:00:00, 31.0, 11.0), (1994-01-11 00:00:00, 20.0, 11.0), (1994-01-26 00:00:00, 18.0, 13.0), (1994-01-28 00:00:00, 25.0, 12.0), (1994-02-08 00:00:00, 19.0, 11.0), (1994-02-10 00:00:00, 18.0, 10.0), (1994-02-15 00:00:00, 22.0, 11.0), (1994-03-16 00:00:00, 27.0, 12.0), (1994-03-27 00:00:00, 17.0, 12.0), (1994-04-01 00:00:00, 21.0, 10.0), (1994-04-20 00:00:00, 19.0, 11.0), (1994-11-11 00:00:00, 17.0, 18.0), (1994-11-16 00:00:00, 21.0, 16.0), (1994-11-18 00:00:00, 16.0, 10.0), (1994-12-06 00:00:00, 24.0, 10.0), (1995-02-22 00:00:00, 19.0, 13.0), (1995-04-22 00:00:00, 16.0, 14.0), (1995-11-10 00:00:00, 17.0, 10.0), (1995-11-19 00:00:00, 17.0, 10.0), (1995-12-01 00:00:00, 20.0, 12.0), (1996-02-16 00:00:00, 17.0, 10.0), (1996-12-27 00:00:00, 18.0, 12.0), (1997-01-14 00:00:00, 17.0, 12.0), (1997-03-14 00:00:00, 22.0, 12.0), (1997-03-26 00:00:00, 19.0, 10.0), (1997-04-13 00:00:00, 17.0, 10.0), (1998-01-02 00:00:00, 17.0, 13.0), (1998-01-04 00:00:00, 22.0, 10.0), (1998-01-14 00:00:00, 19.0, 11.0), (1998-02-01 00:00:00, 16.0, 10.0), (1998-03-11 00:00:00, 20.0, 10.0), (1998-04-08 00:00:00, 20.0, 10.0), (1999-02-16 00:00:00, 17.0, 10.0), (1999-11-14 00:00:00, 18.0, 12.0), (1999-12-01 00:00:00, 23.0, 10.0), (1999-12-05 00:00:00, 17.0, 15.0), (1999-12-14 00:00:00, 19.0, 11.0), (2000-01-10 00:00:00, 26.0, 12.0), (2000-11-28 00:00:00, 19.0, 11.0), (2001-04-17 00:00:00, 20.0, 10.0), (2001-04-22 00:00:00, 17.0, 11.0), (2001-04-26 00:00:00, 16.0, 11.0), (2001-05-06 00:00:00, 19.0, 12.0), (2001-05-27 00:00:00, 16.0, 10.0), (2001-06-06 00:00:00, 16.0, 14.0), (2002-03-12 00:00:00, 16.0, 13.0), (2002-10-29 00:00:00, 17.0, 10.0), (2002-11-03 00:00:00, 18.0, 10.0), (2002-11-12 00:00:00, 19.0, 11.0), (2003-02-11 00:00:00, 16.0, 11.0), (2003-02-23 00:00:00, 18.0, 10.0), (2003-02-25 00:00:00, 16.0, 10.0), (2003-12-28 00:00:00, 23.0, 13.0), (2004-01-09 00:00:00, 19.0, 12.0), (2004-02-20 00:00:00, 22.0, 12.0), (2004-03-26 00:00:00, 18.0, 15.0), (2004-04-01 00:00:00, 18.0, 15.0), (2005-01-13 00:00:00, 17.0, 12.0), (2005-02-22 00:00:00, 21.0, 10.0), (2005-04-17 00:00:00, 17.0, 10.0), (2006-03-12 00:00:00, 17.0, 10.0), (2006-04-11 00:00:00, 19.0, 11.0), (2005-10-18 00:00:00, 16.0, 11.0), (2007-11-09 00:00:00, 16.0, 10.0), (2007-11-16 00:00:00, 23.0, 13.0), (2007-11-29 00:00:00, 17.0, 11.0), (2008-01-17 00:00:00, 23.0, 13.0), (2008-12-28 00:00:00, 16.0, 12.0), (2009-03-03 00:00:00, 18.0, 13.0), (2009-10-27 00:00:00, 17.0, 13.0), (2010-02-05 00:00:00, 18.0, 10.0), (2009-10-07 00:00:00, 17.0, 16.0), (2010-12-07 00:00:00, 22.0, 12.0), (2011-03-22 00:00:00, 18.0, 10.0), (2012-01-22 00:00:00, 18.0, 10.0), (2012-04-22 00:00:00, 25.0, 12.0), (2012-05-12 00:00:00, 24.0, 10.0), (2017-01-17 00:00:00, 20.0, 11.0), (2017-01-20 00:00:00, 16.0, 15.0), (2017-04-02 00:00:00, 17.0, 11.0), (2017-04-07 00:00:00, 16.0, 12.0), (2018-11-11 00:00:00, 17.0, 12.0), (2019-04-04 00:00:00, 18.0, 10.0), (2020-08-18 00:00:00, 17.0, 11.0) +How many home games did the Los Angeles Lakers win in the 2020 season when the away team committed fewer personal fouls but had a higher plus-minus? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'LAL' AND g.wl_home = 'W' AND g.pf_away < g.pf_home AND g.plus_minus_away > g.plus_minus_home AND g.season_id = '22020'; 0 +How many home games did the Oklahoma City Thunder win in the 2014 season when the away team committed fewer personal fouls but had a higher plus-minus? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'OKC' AND g.wl_home = 'W' AND g.pf_away < g.pf_home AND g.plus_minus_away > g.plus_minus_home AND g.season_id = '22014'; 0 +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 +How many times did the Houston Rockets lose at home in the 2016 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'HOU' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22016'; 0 +In the 2016 season, what was the average number of second chance points allowed by the New Orleans Pelicans in games they won by less than 5 points? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE ((g.team_abbreviation_home = 'NOP' AND g.wl_home = 'W' AND ABS(g.pts_home - g.pts_away) < 5) OR (g.team_abbreviation_away = 'NOP' AND g.wl_away = 'W' AND ABS(g.pts_home - g.pts_away) < 5)) AND g.season_id = '22016'; 14.222222222222221 +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 +What was the total number of points scored by teams from Boston as home teams in games with more than 10 lead changes during the 2010 season? SELECT SUM(g.pts_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home IN ( SELECT full_name FROM team WHERE city = 'Boston' ) AND o.lead_changes > 10 AND g.season_id = '22010'; 772.0 +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 +In the 2005 season, what was the average number of second chance points scored by the opponents when the Orlando Magic played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.wl_home = 'L' AND g.season_id = '22005'; 11.846153846153847 +In the 2004 season, what was the average number of second chance points scored by the opponents when the Charlotte Hornets played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CHA' AND g.wl_home = 'L' AND g.season_id = '22004'; 15.318181818181818 +In the 2000 season, what was the average number of second chance points scored by the opponents when the Miami Heat played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIA' AND g.wl_home = 'L' AND g.season_id = '22000'; 11.0 +What was the total number of points scored by teams from Brooklyn as home teams in games with more than 10 lead changes during the 2001 season? SELECT SUM(g.pts_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home IN ( SELECT full_name FROM team WHERE city = 'Brooklyn' ) AND o.lead_changes > 10 AND g.season_id = '22001'; +What was the total number of points scored by teams from New York as home teams in games with more than 10 lead changes during the 2020 season? SELECT SUM(g.pts_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home IN ( SELECT full_name FROM team WHERE city = 'New York' ) AND o.lead_changes > 10 AND g.season_id = '22020'; 685.0 +What was the total number of points scored by teams from Boston as home teams in games with more than 10 lead changes during the 1995 season? SELECT SUM(g.pts_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home IN ( SELECT full_name FROM team WHERE city = 'Boston' ) AND o.lead_changes > 10 AND g.season_id = '21995'; +What was the total number of points scored by teams from Philadelphia as home teams in games with more than 10 lead changes during the 2005 season? SELECT SUM(g.pts_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home IN ( SELECT full_name FROM team WHERE city = 'Philadelphia' ) AND o.lead_changes > 10 AND g.season_id = '22005'; 310.0 +What was the total number of points scored by teams from New York as home teams in games with more than 10 lead changes during the 2001 season? SELECT SUM(g.pts_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home IN ( SELECT full_name FROM team WHERE city = 'New York' ) AND o.lead_changes > 10 AND g.season_id = '22001'; 189.0 +Which team has the earliest founding year among all teams located in the Midwest? SELECT full_name FROM team WHERE state IN ('Illinois', 'Ohio', 'Wisconsin', 'Michigan', 'Indiana', 'Minnesota') ORDER BY year_founded ASC LIMIT 1; Detroit Pistons +Which teams from Northern states were founded in 1974? SELECT full_name FROM team WHERE year_founded = 1974 AND state IN ('Wisconsin', 'Minnesota', 'Michigan'); +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 cities in the Midwest had teams founded in the 1970s? SELECT city FROM team WHERE state IN ('Illinois', 'Ohio', 'Wisconsin', 'Michigan', 'Indiana', 'Minnesota') AND year_founded BETWEEN 1970 AND 1979; Cleveland, Indiana +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 team from the Midwest has the nickname 'Bucks'? SELECT full_name FROM team WHERE nickname = 'Bucks' AND state IN ('Illinois', 'Ohio', 'Wisconsin', 'Michigan', 'Indiana', 'Minnesota'); Milwaukee Bucks +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 teams based in Northern states were founded after 1975? SELECT full_name FROM team WHERE state IN ('Illinois', 'Ohio', 'Wisconsin', 'Michigan', 'Indiana', 'Minnesota') AND year_founded > 1975; Minnesota Timberwolves, Indiana Pacers +Which team based in Indiana was founded before 1980? SELECT full_name FROM team WHERE state = 'Indiana' AND year_founded < 1980; Indiana Pacers +In games from the 2005 season, how often did the Dallas Mavericks win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'DAL' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'DAL' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22005'; 0 +How many times did the Minnesota Timberwolves lose at home in the 2004 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'MIN' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22004'; 0 +What is the average number of points in the paint allowed by the Miami Heat when playing at home in the 2003 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIA' AND g.season_id = '22003' AND o.lead_changes > 15; 38.0 +What is the average number of points in the paint allowed by the Washington Wizards when playing at home in the 2002 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'WAS' AND g.season_id = '22002' AND o.lead_changes > 15; +What is the average number of points in the paint allowed by the Detroit Pistons when playing at home in the 2017 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DET' AND g.season_id = '22017' AND o.lead_changes > 15; 47.333333333333336 +What is the average number of points in the paint allowed by the New York Knicks when playing at home in the 2007 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'NYK' AND g.season_id = '22007' AND o.lead_changes > 15; 40.666666666666664 +What is the average number of points in the paint allowed by the New York Knicks when playing at home in the 2021 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'NYK' AND g.season_id = '22021' AND o.lead_changes > 15; 42.0 +What is the average number of points in the paint allowed by the Boston Celtics when playing at home in the 2016 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'BOS' AND g.season_id = '22016' AND o.lead_changes > 15; 40.0 +What is the average number of points in the paint allowed by the Detroit Pistons when playing at home in the 2019 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DET' AND g.season_id = '22019' AND o.lead_changes > 15; 52.0 +What is the average number of points in the paint allowed by the Milwaukee Bucks when playing at home in the 2013 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIL' AND g.season_id = '22013' AND o.lead_changes > 15; 41.2 +What is the average number of points in the paint allowed by the Washington Wizards when playing at home in the 2001 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'WAS' AND g.season_id = '22001' AND o.lead_changes > 15; 44.0 +What is the average number of points in the paint allowed by the Orlando Magic when playing at home in the 2001 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.season_id = '22001' AND o.lead_changes > 15; 42.0 +What is the average number of points in the paint allowed by the Chicago Bulls when playing at home in the 2001 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CHI' AND g.season_id = '22001' AND o.lead_changes > 15; 31.333333333333332 +What is the average number of points in the paint allowed by the Toronto Raptors when playing at home in the 2017 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'TOR' AND g.season_id = '22017' AND o.lead_changes > 15; 44.4 +What is the average number of points in the paint allowed by the New York Knicks when playing at home in the 2009 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'NYK' AND g.season_id = '22009' AND o.lead_changes > 15; 45.0 +What is the average number of points in the paint allowed by the Toronto Raptors when playing at home in the 2014 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'TOR' AND g.season_id = '22014' AND o.lead_changes > 15; 42.0 +What is the average number of points in the paint allowed by the New York Knicks when playing at home in the 2015 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'NYK' AND g.season_id = '22015' AND o.lead_changes > 15; 36.0 +What is the average number of points in the paint allowed by the Detroit Pistons when playing at home in the 2006 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DET' AND g.season_id = '22006' AND o.lead_changes > 15; 44.0 +What was the highest number of lead changes in a game where the Indiana Pacers won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'IND' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'IND' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22008'; 25 +What was the highest number of lead changes in a game where the Cleveland Cavaliers won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'CLE' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'CLE' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22000'; 25 +What was the highest number of lead changes in a game where the Orlando Magic won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'ORL' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'ORL' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22007'; 27 +What is the total number of games the Miami Heat played at home where they had more offensive rebounds than the away team and still lost? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIA' AND g.wl_home = 'L' AND g.oreb_home > g.oreb_away AND g.season_id = '22008'; 4 +In the 2007 season, how many games did the Milwaukee Bucks lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIL' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22007'; 8 +In 2003, what was the average number of fast break points scored by opponents of the Atlanta Hawks when the home team had more than 10 steals? SELECT AVG(o.pts_fb_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ATL' AND g.stl_home > 10 AND g.season_id = '22003'; 17.4 +In the 2006 season, how many games did the Indiana Pacers lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'IND' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22006'; 7 +What is the average plus-minus for the Detroit Pistons in games where they allowed more second chance points than they scored? SELECT AVG(g.plus_minus_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DET' AND o.pts_2nd_chance_away > o.pts_2nd_chance_home AND g.season_id = '22003'; 9.9375 +In the 2006 season, how many games did the Milwaukee Bucks lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIL' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22006'; 8 +What is the average plus-minus for the New York Knicks in games where they allowed more second chance points than they scored? SELECT AVG(g.plus_minus_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'NYK' AND o.pts_2nd_chance_away > o.pts_2nd_chance_home AND g.season_id = '22002'; -3.2 +In games from the 2012 season, how often did the Los Angeles Lakers win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'LAL' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'LAL' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22012'; 0 +How many home games did the Portland Trail Blazers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '22018'; 41.0 +How many home games did the Portland Trail Blazers play in the 2008 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '22008'; 41.0 +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 +How many home games did the Portland Trail Blazers play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '22020'; 36.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 = 'Miami Heat'; 42.2 +How many home games did the Portland Trail Blazers play in the 2007 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '22007'; 41.0 +What is the highest combined pts in any game involving the Toronto Raptors? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Toronto Raptors' OR team_name_away = 'Toronto Raptors'; 278.0 +What is the highest combined pts in any game involving the Houston Rockets? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Houston Rockets' OR team_name_away = 'Houston Rockets'; 317.0 +What is the highest combined pts in any game involving the Portland Trail Blazers? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Portland Trail Blazers' OR team_name_away = 'Portland Trail Blazers'; 311.0 +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 +How many away games did the Milwaukee Bucks play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Milwaukee Bucks' AND season_id = '22019'; 38.0 +What is the highest combined pts in any game involving the Miami Heat? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Miami Heat' OR team_name_away = 'Miami Heat'; 290.0 +How many away games did the Milwaukee Bucks play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Milwaukee Bucks' AND season_id = '22018'; 41.0 +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 +How many home games did the Boston Celtics play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '22018'; 41.0 +How many home games did the Boston Celtics play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '22020'; 36.0 +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 +How many away games did the Golden State Warriors play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Golden State Warriors' AND season_id = '22018'; 41.0 +What is the highest combined tov in any game involving the Milwaukee Bucks? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Milwaukee Bucks' OR team_name_away = 'Milwaukee Bucks'; 60.0 +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 +How many home games did the Los Angeles Lakers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22018'; 41.0 +How many away games did the Boston Celtics play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22018'; 41.0 +How many home games did the Milwaukee Bucks play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22019'; 35.0 +How many away games did the Golden State Warriors play in the 2007 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Golden State Warriors' AND season_id = '22007'; 41.0 +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 +In which season did the Chicago Bulls have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Chicago Bulls' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 2022.0 +What is the highest combined tov in any game involving the Boston Celtics? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Boston Celtics' OR team_name_away = 'Boston Celtics'; 66.0 +How many home games did the Los Angeles Lakers play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22020'; 36.0 +In which season did the Charlotte Hornets have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Charlotte Hornets' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 2021.0 +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 highest combined pts in any game involving the Boston Celtics? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Boston Celtics' OR team_name_away = 'Boston Celtics'; 312.0 +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 +How many home games did the Golden State Warriors play in the 1999 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '21999'; 41.0 +In which season did the Golden State Warriors have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Golden State Warriors' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 1989.0 +How many away games did the Golden State Warriors play in the 2011 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Golden State Warriors' AND season_id = '22011'; 33.0 +How many away games did the Golden State Warriors play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Golden State Warriors' AND season_id = '22019'; 31.0 +How many home games did the Los Angeles Lakers play in the 2021 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22021'; 41.0 +How many away games did the Golden State Warriors play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Golden State Warriors' AND season_id = '22022'; 41.0 +What is the highest combined fg_pct in any game involving the Miami Heat? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Miami Heat' OR team_name_away = 'Miami Heat'; 1.1949999999999998 +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 +How many home games did the Golden State Warriors play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22018'; 41.0 +What is the highest combined fg_pct in any game involving the Charlotte Hornets? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Charlotte Hornets' OR team_name_away = 'Charlotte Hornets'; 1.233 +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 +What is the highest combined fg_pct in any game involving the Detroit Pistons? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Detroit Pistons' OR team_name_away = 'Detroit Pistons'; 1.217 +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 +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 Los Angeles Lakers play in the 2007 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '22007'; 41.0 +How many away games did the Los Angeles Lakers play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '22019'; 36.0 +How many away games did the Los Angeles Lakers play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '22009'; 41.0 +What is the highest combined pts in any game involving the Milwaukee Bucks? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Cleveland Cavaliers' OR team_name_away = 'Cleveland Cavaliers'; 307.0 +What is the highest combined pts in any game involving the Milwaukee Bucks? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Milwaukee Bucks' OR team_name_away = 'Milwaukee Bucks'; 337.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 +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 +How many home games did the Los Angeles Lakers play in the 2005 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22005'; 41.0 +How many home games did the Los Angeles Lakers play in the 2003 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22003'; 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 +In which season did the Portland San Antonio Spurs have the highest average ast at home? SELECT season_id, AVG(ast_home) as avg_stat FROM game WHERE team_name_home = 'San Antonio Spurs' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 41982.0 +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 +How many away games did the Golden State Warriors play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Golden State Warriors' AND season_id = '22009'; 41.0 +How many away games did the Boston Celtics play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22009'; 41.0 +How many away games did the Boston Celtics play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22022'; 41.0 +What is the highest combined tov in any game involving the Golden State Warriors? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Golden State Warriors' OR team_name_away = 'Golden State Warriors'; 60.0 +What is the highest combined fg_pct in any game involving the Golden State Warriors? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Golden State Warriors' OR team_name_away = 'Golden State Warriors'; 1.196 +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 +What is the highest combined fg_pct in any game involving the Los Angeles Clippers? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Los Angeles Clippers' OR team_name_away = 'Los Angeles Clippers'; 1.257 +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 Milwaukee Bucks play in the 2011 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22011'; 33.0 +How many away games did the Boston Celtics play in the 2002 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22002'; 41.0 +How many home games did the Golden State Warriors play in the 2001 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22001'; 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 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 +In which season did the Milwaukee Bucks have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Milwaukee Bucks' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 42022.0 +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 +How many home games did the Golden State Warriors play in the 2021 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22021'; 41.0 +How many away games did the Los Angeles Lakers play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '22022'; 41.0 +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 Los Angeles Lakers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '22018'; 41.0 +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 +How many away games did the San Antonio Spurs play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'San Antonio Spurs' AND season_id = '22018'; 41.0 +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 Boston Celtics play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '22019'; 36.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 highest combined tov in any game involving the San Antonio Spurs? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'San Antonio Spurs' OR team_name_away = 'San Antonio Spurs'; 60.0 +How many home games did the San Antonio Spurs Lakers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'San Antonio Spurs' AND season_id = '22018'; 41.0 +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 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 highest combined tov in any game involving the Los Angeles Lakers? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Los Angeles Lakers' OR team_name_away = 'Los Angeles Lakers'; 66.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 +In which season did the Portland Trail Blazers have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Portland Trail Blazers' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 21986.0 +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 +How many home games did the Boston Celtics win in the 1946 season? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Boston Celtics' AND wl_home = 'W' AND season_id = '21946'; 14.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 average field goal percentage for the New York Knicks at home? SELECT AVG(fg_pct_home) as avg_fg_pct FROM game WHERE team_name_home = 'New York Knicks'; 0.46 +How many steals did the Houston Rockets make at home in the 1996 season? SELECT SUM(stl_home) as total_steals FROM game WHERE team_name_home = 'Houston Rockets' AND season_id = '21996'; 352.0 +How many games did the Cleveland Cavaliers play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND season_id = '21996'; 41.0 +How many blocks did the Portland Trail Blazers make at home in 1996? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '21996'; 188.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 +How many games did the Atlanta Hawks win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Atlanta Hawks' AND wl_away = 'W' AND season_id = '21996'; 20.0 +What is the total points scored by the Sacramento Kings away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Sacramento Kings'; 159071.0 +How many turnovers did the Utah Jazz have at home in 1996? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Utah Jazz' AND season_id = '21996'; 633.0 +What is the highest points scored by the Golden State Warriors away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Golden State Warriors'; 162.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 +How many assists did the Charlotte Hornets have away in 1996? SELECT SUM(ast_away) as total_assists FROM game WHERE team_name_away = 'Charlotte Hornets' AND season_id = '21996'; 880.0 +What is the average points scored by the Washington Wizards at home? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Washington Wizards'; 102.91 +How many games did the San Antonio Spurs win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'San Antonio Spurs' AND wl_home = 'W' AND season_id = '21996'; 12.0 +What is the total points in the paint by the Los Angeles Clippers at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'LAC'; 40334.0 +How many lead changes occurred in games where the Denver Nuggets played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'DEN'; 6168.0 +What is the largest lead the Minnesota Timberwolves had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'MIN'; 48.0 +How many fast break points did the Orlando Magic score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'ORL'; 11743.0 +What is the total second chance points by the Toronto Raptors at home? SELECT SUM(pts_2nd_chance_home) as total_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'TOR'; 12057.0 +What's the average number of three-pointers made by the Golden State Warriors in home games during the 2016 season? SELECT AVG(fg3m_home) FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22016'; 12.76 +How many total team rebounds did the Los Angeles Clippers have in away games where they scored over 15 fast break points? SELECT SUM(os.team_rebounds_away) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_away = 'LAC' AND os.pts_fb_away > 15; 2279.0 +How many steals did the Dallas Mavericks have at home in 1996? SELECT SUM(stl_home) as total_steals FROM game WHERE team_name_home = 'Dallas Mavericks' AND season_id = '21996'; 322.0 +What is the total rebounds by the Brooklyn Nets away? SELECT SUM(reb_away) as total_rebounds FROM game WHERE team_name_away = 'Brooklyn Nets'; 19103.0 +How many blocks did the New Orleans Pelicans make at home? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'New Orleans Pelicans'; 2368.0 +What is the lowest plus-minus score for the Los Angeles Lakers at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'Los Angeles Lakers'; -48.0 +What is the total points scored by the Cleveland Cavaliers at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Cleveland Cavaliers'; 220683.0 +How many assists did the Phoenix Suns have at home in 1996? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Phoenix Suns' AND season_id = '21996'; 1096.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 +How many games did the Chicago Bulls win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Chicago Bulls' AND wl_home = 'W' AND season_id = '21996'; 39.0 +What is the total points off turnovers by the Atlanta Hawks at home? SELECT SUM(pts_off_to_home) as total_pts_off_to FROM other_stats WHERE team_abbreviation_home = 'ATL'; 13503.0 +How many times were games tied when the Boston Celtics played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'BOS'; 5156.0 +How many games did the Los Angeles Clippers play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Los Angeles Clippers' AND season_id = '21996'; 41.0 +What is the lowest points scored by the San Antonio Spurs at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'San Antonio Spurs'; 64.0 +How many steals did the Milwaukee Bucks make away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Milwaukee Bucks' AND season_id = '21996'; 295.0 +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 +How many games did the Sacramento Kings win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Sacramento Kings' AND wl_away = 'W' AND season_id = '21996'; 12.0 +What is the largest lead the Phoenix Suns had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'PHX'; 52.0 +How many fast break points did the Atlanta Hawks score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'ATL'; 12063.0 +What is the highest points scored by the Los Angeles Lakers away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Los Angeles Lakers'; 153.0 +What is the lowest plus-minus score for the New York Knicks at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'New York Knicks'; -50.0 +How many games did the Portland Trail Blazers win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Portland Trail Blazers' AND wl_away = 'W' AND season_id = '21996'; 20.0 +What is the average points scored by the San Antonio Spurs away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'San Antonio Spurs'; 102.35 +What is the total points in the paint by the Denver Nuggets at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'DEN'; 44784.0 +How many times were games tied when the Indiana Pacers played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'IND'; 4805.0 +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 average points scored by the Los Angeles Lakers at home when they won in the 1996 season? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Los Angeles Lakers' AND wl_home = 'W' AND season_id = '21996'; 103.58 +How many games did the Boston Celtics win at home with more than 15 assists in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Boston Celtics' AND wl_home = 'W' AND ast_home > 15 AND season_id = '21996'; 11.0 +How many times did the Houston Rockets win at home with a plus-minus greater than 10 in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Houston Rockets' AND wl_home = 'W' AND plus_minus_home > 10 AND season_id = '21996'; 11.0 +What is the total fast break points by the Phoenix Suns in games they lost at home in 1996? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'L' AND g.season_id = '21996'; 171.0 +What is the average second chance points by the Milwaukee Bucks at home in games they won? SELECT AVG(os.pts_2nd_chance_home) as avg_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Milwaukee Bucks' AND g.wl_home = 'W'; 13.12 +What is the total points scored by the Detroit Pistons at home when they had more than 10 steals? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Detroit Pistons' AND stl_home > 10; 22493.0 +How many games did the Atlanta Hawks win at home with a largest lead greater than 20 in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Atlanta Hawks' AND g.wl_home = 'W' AND os.largest_lead_home > 20 AND g.season_id = '21996'; 7.0 +What is the highest points in the paint by the Sacramento Kings away in games they won? SELECT MAX(os.pts_paint_away) as max_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Sacramento Kings' AND g.wl_away = 'W'; 78.0 +How many games did the Utah Jazz play at home with more than 30 points in the paint in 1996? SELECT COUNT(*) as games FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Utah Jazz' AND os.pts_paint_home > 30 AND g.season_id = '21996'; 25.0 +What is the total second chance points by the Washington Wizards at home in games they won? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Washington Wizards' AND g.wl_home = 'W'; 6281.0 +What is the total points in the paint by the Minnesota Timberwolves away when they lost? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Minnesota Timberwolves' AND g.wl_away = 'L'; 25564.0 +What is the average points scored by the Toronto Raptors at home when they had more than 10 second chance points in 1996? SELECT AVG(g.pts_home) as avg_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Toronto Raptors' AND os.pts_2nd_chance_home > 10 AND g.season_id = '21996'; 96.458 +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 +How many games did the Boston Celtics lose at home in the 1996 season? SELECT COUNT(*) as losses FROM game WHERE team_name_home = 'Boston Celtics' AND wl_home = 'L' AND season_id = '21996'; 30.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'; 67.0 +What is the total points scored by the Dallas Mavericks away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Dallas Mavericks'; 187891.0 +How many games did the Denver Nuggets win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Denver Nuggets' AND wl_home = 'W' AND season_id = '21996'; 12.0 +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 +How many games did the Indiana Pacers play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Indiana Pacers' AND season_id = '21996'; 41.0 +What is the highest points scored by the Los Angeles Clippers away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Los Angeles Clippers'; 142.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 +How many games did the New York Knicks win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'New York Knicks' AND wl_home = 'W' AND season_id = '21996'; 31.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 in the paint by the Sacramento Kings at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'SAC'; 38278.0 +How many lead changes occurred in games where the San Antonio Spurs played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'SAS'; 5666.0 +What is the largest lead the Toronto Raptors had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'TOR'; 49.0 +How many fast break points did the Utah Jazz score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'UTA'; 11246.0 +How many field goals made did the Atlanta Hawks have away in 1996? SELECT SUM(fgm_away) as total_fgm FROM game WHERE team_name_away = 'Atlanta Hawks' AND season_id = '21996'; 1366.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 lowest points scored by the Los Angeles Lakers away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Los Angeles Lakers'; 68.0 +How many games did the Miami Heat win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Miami Heat' AND wl_away = 'W' AND season_id = '21996'; 32.0 +What is the highest fast break points by the New York Knicks away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'NYK'; 38.0 +What is the lowest points scored by the Portland Trail Blazers away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Portland Trail Blazers'; 58.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 total points scored by the Charlotte Hornets at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Charlotte Hornets'; 98559.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 points in the paint by the Dallas Mavericks at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'DAL'; 37764.0 +What is the highest second chance points by the Detroit Pistons at home? SELECT MAX(pts_2nd_chance_home) as max_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'DET'; 32.0 +How many fast break points did the Golden State Warriors score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'GSW'; 15122.0 +What is the highest points scored by the Los Angeles Clippers at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Los Angeles Clippers'; 152.0 +How many games did the Orlando Magic win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Orlando Magic' AND wl_away = 'W' AND season_id = '21996'; 19.0 +How many times were games tied when the Toronto Raptors played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'TOR'; 4685.0 +What is the highest fast break points by the Utah Jazz away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'UTA'; 35.0 +What's the highest number of lead changes in any game involving the Miami Heat? SELECT MAX(os.lead_changes) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_home = 'MIA' OR g.team_abbreviation_away = 'MIA'; 33.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 total points scored by the Detroit Pistons at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Detroit Pistons'; 265718.0 +What is the highest second chance points by the Miami Heat away? SELECT MAX(pts_2nd_chance_away) as max_2nd_chance FROM other_stats WHERE team_abbreviation_away = 'MIA'; 31.0 +How many fast break points did the Milwaukee Bucks score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'MIL'; 13134.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 average points scored by the Atlanta Hawks at home when they lost in 1996? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Atlanta Hawks' AND wl_home = 'L' AND season_id = '21996'; 89.2 +What is the total fast break points by the Chicago Bulls at home in games they won in 1996? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Chicago Bulls' AND g.wl_home = 'W' AND g.season_id = '21996'; 487.0 +What is the highest points scored by the Dallas Mavericks away when they had more than 15 points in the paint? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Dallas Mavericks' AND os.pts_paint_away > 15; 141.0 +How many games did the Denver Nuggets win at home with a plus-minus greater than 15 in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Denver Nuggets' AND wl_home = 'W' AND plus_minus_home > 15 AND season_id = '21996'; 2.0 +What is the total second chance points by the Detroit Pistons away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Detroit Pistons' AND g.wl_away = 'L'; 7547.0 +What is the average points in the paint by the Houston Rockets at home in games they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Houston Rockets' AND g.wl_home = 'W'; 42.436 +How many games did the Los Angeles Lakers win away with more than 20 points in the paint in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Los Angeles Lakers' AND g.wl_away = 'W' AND os.pts_paint_away > 20 AND g.season_id = '21996'; 21.0 +What is the total fast break points by the New York Knicks at home in games they lost? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'New York Knicks' AND g.wl_home = 'L'; 4270.0 +What is the total second chance points by the Portland Trail Blazers away in games they won? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Portland Trail Blazers' AND g.wl_away = 'W'; 5309.0 +How many games did the Toronto Raptors play away with more than 20 points in the paint in 1996? SELECT COUNT(*) as games FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Toronto Raptors' AND os.pts_paint_away > 20 AND g.season_id = '21996'; 35.0 +What is the total points in the paint by the Utah Jazz at home when they won? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Utah Jazz' AND g.wl_home = 'W'; 27796.0 +What is the total fast break points by the Atlanta Hawks away in games they lost? SELECT SUM(os.pts_fb_away) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Atlanta Hawks' AND g.wl_away = 'L'; 8378.0 +What is the highest points scored by the Chicago Bulls away when they had more than 5 lead changes? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Chicago Bulls' AND os.lead_changes > 5; 168.0 +What is the total second chance points by the Dallas Mavericks at home in games they lost? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Dallas Mavericks' AND g.wl_home = 'L'; 4478.0 +What is the average points in the paint by the Detroit Pistons at home when they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Detroit Pistons' AND g.wl_home = 'W'; 37.94 +How many games did the Indiana Pacers win at home with more than 15 fast break points in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Indiana Pacers' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 7.0 +How many games did the Los Angeles Lakers lose at home with more than 10 second chance points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Los Angeles Lakers' AND g.wl_home = 'L' AND os.pts_2nd_chance_home > 10 AND g.season_id = '21996'; 4.0 +How many games did the Sacramento Kings win at home with more than 20 points in the paint in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Sacramento Kings' AND g.wl_home = 'W' AND os.pts_paint_home > 20 AND g.season_id = '21996'; 16.0 +What is the total second chance points by the San Antonio Spurs away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'San Antonio Spurs' AND g.wl_away = 'L'; 5810.0 +How many games did the Toronto Raptors lose at home with more than 15 fast break points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Toronto Raptors' AND g.wl_home = 'L' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 13.0 +How many games did the Phoenix Suns lose away with more than 5 times tied in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Phoenix Suns' AND g.wl_away = 'L' AND os.times_tied > 5 AND g.season_id = '21996'; 10.0 +What is the total fast break points by the Philadelphia 76ers at home in games they won? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Philadelphia 76ers' AND g.wl_home = 'W'; 8025.0 +How many games did the Milwaukee Bucks lose at home with more than 5 lead changes in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Milwaukee Bucks' AND g.wl_home = 'L' AND os.lead_changes > 5 AND g.season_id = '21996'; 8.0 +What is the total points in the paint by the Miami Heat away when they won? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Miami Heat' AND g.wl_away = 'W'; +What is the highest points scored by the Los Angeles Clippers away when they had more than 5 blocks? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Los Angeles Clippers' AND blk_away > 5; 131.0 +What is the average points scored by the New York Knicks away when they had more than 10 assists? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'New York Knicks' AND ast_away > 10; 98.9 +How many games did the Boston Celtics win away with more than 10 field goals made in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_away = 'Boston Celtics' AND wl_away = 'W' AND fgm_away > 10 AND season_id = '21996'; 4.0 +How many games did the Golden State Warriors lose at home with more than 5 lead changes in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Golden State Warriors' AND g.wl_home = 'L' AND os.lead_changes > 5 AND g.season_id = '21996'; 8.0 +How many games did the Indiana Pacers lose at home with more than 10 fast break points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Indiana Pacers' AND g.wl_home = 'L' AND os.pts_fb_home > 10 AND g.season_id = '21996'; 12.0 +What is the total points scored by the Los Angeles Clippers at home when they had more than 5 times tied? SELECT SUM(g.pts_home) as total_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Los Angeles Clippers' AND os.times_tied > 5; 26047.0 +How many games did the Orlando Magic play at home with more than 15 points in the paint in 1996? SELECT COUNT(*) as games FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Orlando Magic' AND os.pts_paint_home > 15 AND g.season_id = '21996'; 34.0 +What is the average points scored by the Philadelphia 76ers away when they had more than 5 steals? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Philadelphia 76ers' AND stl_away > 5; 100.42 +How many games did the Phoenix Suns win at home with more than 10 lead changes in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'W' AND os.lead_changes > 10 AND g.season_id = '21996'; 3.0 +How many blocks did the San Antonio Spurs have at home in 1996? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'San Antonio Spurs' AND season_id = '21996'; 262.0 +How many field goals made did the Portland Trail Blazers have away in 1996? SELECT SUM(fgm_away) as total_fgm FROM game WHERE team_name_away = 'Portland Trail Blazers' AND season_id = '21996'; 1494.0 +How many games did the Indiana Pacers win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Indiana Pacers' AND wl_away = 'W' AND season_id = '21996'; 18.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 +How many assists did the Golden State Warriors have at home in 1996? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '21996'; 1020.0 +How many steals did the Cleveland Cavaliers have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND season_id = '21996'; 306.0 +What is the total turnovers by the Chicago Bulls at home? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Chicago Bulls'; 24540.0 +How many field goals attempted did the Boston Celtics have away in 1996? SELECT SUM(fga_away) as total_fga FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '21996'; 3448.0 +What is the total points off turnovers by the Charlotte Hornets away? SELECT SUM(pts_off_to_away) as total_pts_off_to FROM other_stats WHERE team_abbreviation_away = 'CHA'; 10441.0 +What is the highest field goals made by the Portland Trail Blazers at home? SELECT MAX(fgm_home) as max_fgm FROM game WHERE team_name_home = 'Portland Trail Blazers'; 65.0 +How many assists did the Phoenix Suns have away in 1996? SELECT SUM(ast_away) as total_assists FROM game WHERE team_name_away = 'Phoenix Suns' AND season_id = '21996'; 971.0 +How many blocks did the Milwaukee Bucks have away in 1996? SELECT SUM(blk_away) as total_blocks FROM game WHERE team_name_away = 'Milwaukee Bucks' AND season_id = '21996'; 166.0 +How many steals did the Los Angeles Lakers have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '21996'; 366.0 +What is the total number of three-point field goals made by the Golden State Warriors at home? SELECT SUM(fg3m_home) as total_fg3m FROM game WHERE team_name_home = 'Golden State Warriors'; 12093.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 +How many games did the Sacramento Kings win away in the 1996 season? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Sacramento Kings' AND wl_away = 'W' AND season_id = '21996'; 12.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 +How many points in the paint did the Cleveland Cavaliers score at home in 1996? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Cleveland Cavaliers' AND g.season_id = '21996'; 1136.0 +What is the largest lead the Phoenix Suns had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'PHX'; 47.0 +How many games did the San Antonio Spurs lose at home with more than 30 points in the paint in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.wl_home = 'L' AND os.pts_paint_home > 30 AND g.season_id = '21996'; 22.0 +How many games did the Toronto Raptors win at home with more than 15 fast break points in the 1996 season? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Toronto Raptors' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 9.0 +What is the highest number of points scored by the Utah Jazz away when they had more than 10 second chance points? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Utah Jazz' AND os.pts_2nd_chance_away > 10; 137.0 +How many overtime home games did the Los Angeles Lakers play? (Overtime = 5+ minute periods) SELECT COUNT(*) FROM game WHERE team_name_home = 'Los Angeles Lakers' AND min > 288; -- 48 regulation minutes * 60 seconds / 10 (min column format) 22.0 +What's the total second-chance points the Toronto Raptors scored in away losses during the 2019 season? SELECT SUM(os.pts_2nd_chance_away) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Toronto Raptors' AND g.wl_away = 'L' AND g.season_id = '22019'; 94.0 +What's the highest number of team turnovers the Detroit Pistons had in any home game during the 2018 season? SELECT MAX(os.team_turnovers_home) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Detroit Pistons' AND g.season_id = '22018'; 3.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 total number of turnovers committed by the Orlando Magic at home in the 2021 season? SELECT SUM(tov_home) FROM game WHERE team_name_home = 'Orlando Magic' AND season_id = '22021'; 589.0 +How many home games did the Boston Celtics win in the 2022 season? SELECT COUNT(*) AS home_wins FROM game WHERE team_name_home = 'Boston Celtics' AND wl_home = 'W' AND season_id = '22022'; 32 +What is the highest combined score in a game between the Golden State Warriors and Houston Rockets? SELECT MAX(pts_home + pts_away) AS highest_combined_score FROM game WHERE (team_name_home = 'Golden State Warriors' AND team_name_away = 'Houston Rockets') OR (team_name_home = 'Houston Rockets' AND team_name_away = 'Golden State Warriors'); 278.0 +What is the most three-pointers the Dallas Mavericks have made in a single game? SELECT MAX(fg3m_home) AS max_three_pointers FROM game WHERE team_name_home = 'Dallas Mavericks'; 25.0 +What is the largest lead the Miami Heat have had in any game? SELECT MAX(largest_lead_home) AS largest_lead FROM other_stats WHERE team_abbreviation_home = 'MIA'; 46 +What is the most total rebounds the Minnesota Timberwolves have recorded in a game? SELECT MAX(reb_home) AS max_rebounds FROM game WHERE team_name_home = 'Minnesota Timberwolves'; 67.0 +How many times have the Philadelphia 76ers scored more than 120 points in a game? SELECT COUNT(*) AS high_scoring_games FROM game WHERE team_name_home = 'Philadelphia 76ers' AND pts_home > 120; 414 +What is the most fast break points the Chicago Bulls have scored in a single game? SELECT MAX(pts_fb_home) AS max_fast_break_points FROM other_stats WHERE team_abbreviation_home = 'CHI'; 37 +Which team had the highest field goal percentage at home in the 2005 season? SELECT team_name_home, MAX(fg_pct_home) FROM game WHERE season_id = '22005' GROUP BY team_name_home ORDER BY MAX(fg_pct_home) DESC LIMIT 1; Denver Nuggets|0.64 +Which team had the most total rebounds at home in a single game in the 1999 season? SELECT team_name_home, MAX(reb_home) FROM game WHERE season_id = '21999' GROUP BY team_name_home ORDER BY MAX(reb_home) DESC LIMIT 1; Miami Heat|66.0 +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 +How many games did the Chicago Bulls play at home in the 1996 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CHI' AND season_id = '21996'; 41 +What is the total number of lead changes in all games played by the Chicago Bulls in the 2010 season? SELECT SUM(os.lead_changes) AS total_lead_changes FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22010' AND (g.team_abbreviation_home = 'CHI' OR g.team_abbreviation_away = 'CHI'); 470 +How many fast-break points did the Miami Heat score in away games during the 2015 season? SELECT SUM(os.pts_fb_away) AS total_fast_break_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22015' AND g.team_abbreviation_away = 'MIA'; 472 +Which team had the largest lead in a single game in the 2001 season? SELECT g.team_name_home AS team, os.largest_lead_home AS lead FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22001' ORDER BY os.largest_lead_home DESC LIMIT 1; Portland Trail Blazers|47 +How many times were games tied during the 1998 season in which the Boston Celtics played? SELECT SUM(os.times_tied) AS total_times_tied FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '21998' AND (g.team_abbreviation_home = 'BOS' OR g.team_abbreviation_away = 'BOS'); 172 +In the 2019 season, how many total points off turnovers did the Brooklyn Nets score in home games? SELECT SUM(os.pts_off_to_home) AS total_points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22019' AND g.team_abbreviation_home = 'BKN'; 518 +How many total turnovers did the San Antonio Spurs commit in away games during the 2014 season? SELECT SUM(os.total_turnovers_away) AS total_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22014' AND g.team_abbreviation_away = 'SAS'; 462 +How many total times were games tied in the 2006 season? SELECT SUM(os.times_tied) AS total_times_tied FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22006'; 5352 +What was the average number of second-chance points per game in the 2015 season? SELECT AVG(os.pts_2nd_chance_home + os.pts_2nd_chance_away) AS avg_second_chance_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22015'; 25.4900849858357 +What is the total number of points in the paint scored by both teams combined in the 2008 season? SELECT SUM(os.pts_paint_home + os.pts_paint_away) AS total_paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22008'; 81148 +What was the largest lead the Golden State Warriors had in any game in the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_abbreviation_home = 'GSW' AND game.season_id = '22018'; 44 +Which season had the highest total points scored by the Chicago Bulls at home? SELECT season_id, SUM(pts_home) AS total_points FROM game WHERE team_abbreviation_home = 'CHI' GROUP BY season_id ORDER BY total_points DESC LIMIT 1; 21990|4696.0 +How many times did the New York Knicks and Brooklyn Nets play each other in the 2012 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'NYK' AND team_abbreviation_away = 'BKN') OR (team_abbreviation_home = 'BKN' AND team_abbreviation_away = 'NYK') AND season_id = '22012'; 21 +What is the highest number of times the Orlando Magic have tied a game in the 2008 season? SELECT MAX(other_stats.times_tied) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_abbreviation_home = 'ORL' AND game.season_id = '22008'; 15 +Which team had the most rebounds in a single game during the 2020 season? SELECT team_name_home AS team, MAX(reb_home) AS rebounds FROM game WHERE season_id = '22020' UNION SELECT team_name_away AS team, MAX(reb_away) AS rebounds FROM game WHERE season_id = '22020' ORDER BY rebounds DESC LIMIT 1; New Orleans Pelicans|70.0 +Which team forced the most turnovers in a single game during the 2016 season? SELECT game.team_name_home AS team, MAX(other_stats.total_turnovers_away) AS forced_turnovers FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.season_id = '22016' UNION SELECT game.team_name_away AS team, MAX(other_stats.total_turnovers_home) AS forced_turnovers FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.season_id = '22016' ORDER BY forced_turnovers DESC LIMIT 1; Houston Rockets|28 +How many points did the Golden State Warriors score in their first home game of the 2015 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22015' ORDER BY game_date ASC LIMIT 1; 111.0 +What is the average number of fast break points the New York Knicks scored per game in the 2018 season? SELECT AVG(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'NYK' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22018'); 11.8648648648649 +Which team had the most total rebounds in a single home game during the 1997 season? SELECT team_name_home, reb_home FROM game WHERE season_id = '21997' ORDER BY reb_home DESC LIMIT 1; Golden State Warriors|68.0 +Find the game where the Brooklyn Nets had the largest lead at home in the 2013 season. SELECT game_id, largest_lead_home FROM other_stats WHERE team_abbreviation_home = 'BKN' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22013') ORDER BY largest_lead_home DESC LIMIT 1; 0021300866|38 +How many lead changes were there in games where the Oklahoma City Thunder played at home in the 2009 season? SELECT SUM(lead_changes) FROM other_stats WHERE team_abbreviation_home = 'OKC' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22009'); 191 +How many games did the Los Angeles Lakers play at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'LAL' AND season_id = '22017'; 41 +Find the number of times the Houston Rockets played a game on January 10, 2015. SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'HOU' OR team_abbreviation_away = 'HOU') AND DATE(game_date) = '2015-01-10'; 1 +Find the average number of assists the Chicago Bulls had per game at home in the 2016 season. SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'CHI' AND season_id = '22016'; 23.7317073170732 +How many total games did the Boston Celtics play in the 2015 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'BOS' OR team_abbreviation_away = 'BOS') AND season_id = '22015'; 82 +Which teams played on Christmas Day in 2021? SELECT team_abbreviation_home, team_abbreviation_away FROM game WHERE DATE(game_date) = '2021-12-25'; PHX|GSW MIL|BOS UTA|DAL NYK|ATL LAL|BKN +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 times did the Golden State Warriors win at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22017' AND pts_home > pts_away; 29 +Find the average points per game for the San Antonio Spurs in the 2006 season. SELECT AVG(points) FROM ( SELECT pts_home AS points FROM game WHERE team_abbreviation_home = 'SAS' AND season_id = '22006' UNION ALL SELECT pts_away AS points FROM game WHERE team_abbreviation_away = 'SAS' AND season_id = '22006' ) AS team_points; 98.5243902439024 +Which game had the largest margin of victory in the 1998 season? SELECT game_id, team_abbreviation_home, team_abbreviation_away, ABS(pts_home - pts_away) AS margin FROM game WHERE season_id = '21998' ORDER BY margin DESC LIMIT 1; 0029800450|CHI|ORL|47.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 +Find all games where the Chicago Bulls and New York Knicks played each other in the 2000 season. SELECT * FROM game WHERE season_id = '22000' AND ((team_abbreviation_home = 'CHI' AND team_abbreviation_away = 'NYK') OR (team_abbreviation_home = 'NYK' AND team_abbreviation_away = 'CHI')); 22000|1610612741|CHI|Chicago Bulls|0020000229|2000-12-01 00:00:00|CHI vs. NYK|L|240|26.0|70.0|0.371|4.0|13.0|0.308|30.0|39.0|0.769|13.0|25.0|38.0|19.0|4.0|7.0|12.0|27.0|86.0|-5|0|1610612752|NYK|New York Knicks|NYK @ CHI|W|29.0|69.0|0.42|3.0|11.0|0.273|30.0|36.0|0.833|10.0|30.0|40.0|13.0|4.0|3.0|11.0|25.0|91.0|5|0|Regular Season 22000|1610612752|NYK|New York Knicks|0020000422|2000-12-29 00:00:00|NYK vs. CHI|W|240|34.0|70.0|0.486|5.0|11.0|0.455|22.0|29.0|0.759|8.0|35.0|43.0|18.0|8.0|2.0|12.0|20.0|95.0|27|0|1610612741|CHI|Chicago Bulls|CHI @ NYK|L|25.0|71.0|0.352|6.0|16.0|0.375|12.0|16.0|0.75|8.0|26.0|34.0|16.0|9.0|1.0|16.0|21.0|68.0|-27|0|Regular Season 22000|1610612741|CHI|Chicago Bulls|0020000844|2001-03-02 00:00:00|CHI vs. NYK|W|240|31.0|73.0|0.425|4.0|13.0|0.308|15.0|22.0|0.682|7.0|36.0|43.0|27.0|7.0|3.0|13.0|16.0|81.0|9|0|1610612752|NYK|New York Knicks|NYK @ CHI|L|27.0|74.0|0.365|5.0|20.0|0.25|13.0|18.0|0.722|6.0|36.0|42.0|23.0|7.0|3.0|13.0|21.0|72.0|-9|0|Regular Season 22000|1610612752|NYK|New York Knicks|0020000951|2001-03-17 00:00:00|NYK vs. CHI|W|240|41.0|66.0|0.621|3.0|6.0|0.5|16.0|22.0|0.727|7.0|32.0|39.0|24.0|5.0|4.0|20.0|19.0|101.0|21|0|1610612741|CHI|Chicago Bulls|CHI @ NYK|L|31.0|88.0|0.352|4.0|16.0|0.25|14.0|21.0|0.667|18.0|20.0|38.0|17.0|14.0|2.0|11.0|19.0|80.0|-21|0|Regular Season +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 +Find the game with the highest total combined score in the 2005 season. SELECT game_id, team_abbreviation_home, team_abbreviation_away, (pts_home + pts_away) AS total_score FROM game WHERE season_id = '22005' ORDER BY total_score DESC LIMIT 1; 0020500589|PHX|SEA|301.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 +Find the average number of assists per game for the Miami Heat in the 2016 season. SELECT AVG(assists) FROM ( SELECT ast_home AS assists FROM game WHERE team_abbreviation_home = 'MIA' AND season_id = '22016' UNION ALL SELECT ast_away AS assists FROM game WHERE team_abbreviation_away = 'MIA' AND season_id = '22016' ) AS team_assists; 21.2439024390244 +Which teams played on February 14, 2018? SELECT team_abbreviation_home, team_abbreviation_away FROM game WHERE DATE(game_date) = '2018-02-14'; POR|GSW BOS|LAC UTA|PHX DET|ATL HOU|SAC MEM|OKC CHI|TOR NOP|LAL NYK|WAS PHI|MIA ORL|CHA BKN|IND +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 +Find the team that had the most assists in a single game during the 2017 season. SELECT team, assists FROM ( SELECT team_abbreviation_home AS team, ast_home AS assists FROM game WHERE season_id = '22017' UNION ALL SELECT team_abbreviation_away AS team, ast_away AS assists FROM game WHERE season_id = '22017' ) AS assist_data ORDER BY assists DESC LIMIT 1; GSW|46.0 +List all games played on Christmas Day in the 2010 season. SELECT game_id, team_abbreviation_home, team_abbreviation_away FROM game WHERE DATE(game_date) = '2010-12-25'; 0021000435|LAL|MIA 0021000433|NYK|CHI 0021000437|GSW|POR 0021000434|ORL|BOS 0021000436|OKC|DEN +Which game had the largest margin of victory in the 2001 season? SELECT game_id, team_abbreviation_home, team_abbreviation_away, ABS(pts_home - pts_away) AS margin FROM game WHERE season_id = '22001' ORDER BY margin DESC LIMIT 1; 0020100073|MIN|CHI|53.0 +Find the average number of three-pointers made per game by the Golden State Warriors in the 2015 season. SELECT AVG(fg3m) FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22015' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'GSW' AND season_id = '22015' ) AS three_pointers; 13.1341463414634 +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 +Which team had the most rebounds in a single game at home during the 2010 season? SELECT team_name_home, MAX(reb_home) AS max_rebounds FROM game WHERE season_id = '22010' GROUP BY team_name_home ORDER BY max_rebounds DESC LIMIT 1; Minnesota Timberwolves|66.0 +How many games did the Golden State Warriors win at home in the 2018 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22018' AND wl_home = 'W'; 30 +What is the average number of points scored by the Brooklyn Nets on the road during the 2015 season? SELECT AVG(pts_away) FROM game WHERE team_abbreviation_away = 'BKN' AND season_id = '22015'; 98.3658536585366 +Which game had the most lead changes in the 2003 season? SELECT g.game_id, g.team_name_home, g.team_name_away, os.lead_changes FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22003' ORDER BY os.lead_changes DESC LIMIT 1; 0020300151|Seattle SuperSonics|Miami Heat|29 +What is the total number of turnovers committed by the Boston Celtics in home games during the 1998 season? SELECT SUM(tov_home) FROM game WHERE team_abbreviation_home = 'BOS' AND season_id = '21998'; 415.0 +How many times did the Chicago Bulls score at least 120 points in a game during the 1992 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'CHI' AND pts_home >= 120 OR team_abbreviation_away = 'CHI' AND pts_away >= 120) AND season_id = '21992'; 12 +What is the most points the Miami Heat have scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Miami Heat' ORDER BY pts_home DESC LIMIT 1; 149.0 +How many total rebounds did the Milwaukee Bucks have in away games during the 2013 season? SELECT SUM(reb_away) AS total_rebounds FROM game WHERE season_id = '22013' AND team_name_away = 'Milwaukee Bucks'; 1656.0 +Which game had the most combined points in the 1987 season? SELECT game_id, game_date, team_name_home, team_name_away, (pts_home + pts_away) AS total_points FROM game WHERE season_id = '21987' ORDER BY total_points DESC LIMIT 1; 0028700084|1987-11-20 00:00:00|Denver Nuggets|San Antonio Spurs|298.0 +What is the highest number of offensive rebounds recorded by the New York Knicks in a single game? SELECT game_id, game_date, team_name_home, oreb_home AS offensive_rebounds FROM game WHERE team_name_home = 'New York Knicks' UNION ALL SELECT game_id, game_date, team_name_away, oreb_away AS offensive_rebounds FROM game WHERE team_name_away = 'New York Knicks' ORDER BY offensive_rebounds DESC LIMIT 1; 0020500024|2005-11-04 00:00:00|New York Knicks|29.0 +How many total games did the San Antonio Spurs play in the 2015 season? SELECT COUNT(*) AS total_games FROM game WHERE season_id = '22015' AND (team_name_home = 'San Antonio Spurs' OR team_name_away = 'San Antonio Spurs'); 82 +How many field goals did the Houston Rockets make in total during the 1995 season? SELECT SUM(CASE WHEN team_name_home = 'Houston Rockets' THEN fgm_home ELSE 0 END) + SUM(CASE WHEN team_name_away = 'Houston Rockets' THEN fgm_away ELSE 0 END) AS total_field_goals FROM game WHERE season_id = '21995'; 3078.0 +What is the highest-scoring away game for the Miami Heat? SELECT game_id, game_date, pts_away FROM game WHERE team_name_away = 'Miami Heat' ORDER BY pts_away DESC LIMIT 1; 0029000615|1991-02-06 00:00:00|134.0 +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 +How many turnovers did the New York Knicks commit at home during the 1998 season? SELECT SUM(tov_home) FROM game WHERE team_name_home = 'New York Knicks' AND season_id = '21998'; 384.0 +What is the highest number of points the Golden State Warriors have scored in a single game during the 2016 season? SELECT MAX(pts) AS max_points FROM ( SELECT pts_home AS pts FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22016' UNION ALL SELECT pts_away AS pts FROM game WHERE team_abbreviation_away = 'GSW' AND season_id = '22016' ); 149.0 +How many total assists did the Miami Heat have in the 1999 season? SELECT SUM(ast) AS total_assists FROM ( SELECT ast_home AS ast FROM game WHERE team_abbreviation_home = 'MIA' AND season_id = '21999' UNION ALL SELECT ast_away AS ast FROM game WHERE team_abbreviation_away = 'MIA' AND season_id = '21999' ); 1931.0 +What is the most offensive rebounds the Denver Nuggets have had in a single game in the 2011 season? SELECT MAX(oreb) AS max_offensive_rebounds FROM ( SELECT oreb_home AS oreb FROM game WHERE team_abbreviation_home = 'DEN' AND season_id = '22011' UNION ALL SELECT oreb_away AS oreb FROM game WHERE team_abbreviation_away = 'DEN' AND season_id = '22011' ); 21.0 +What was the largest lead the Oklahoma City Thunder had in a single game in the 2020 season? SELECT MAX(largest_lead) AS max_lead FROM ( SELECT largest_lead_home AS largest_lead FROM other_stats WHERE team_abbreviation_home = 'OKC' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22020') UNION ALL SELECT largest_lead_away AS largest_lead FROM other_stats WHERE team_abbreviation_away = 'OKC' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22020') ); 30 +How many total fast break points did the Indiana Pacers have during the 2015 season? SELECT SUM(pts_fb) AS total_fast_break_points FROM ( SELECT pts_fb_home AS pts_fb FROM other_stats WHERE team_abbreviation_home = 'IND' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22015') UNION ALL SELECT pts_fb_away AS pts_fb FROM other_stats WHERE team_abbreviation_away = 'IND' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22015') ); 904 +How many total lead changes occurred in all Memphis Grizzlies games during the 2018 season? SELECT SUM(lead_changes) AS total_lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22018' AND (team_abbreviation_home = 'MEM' OR team_abbreviation_away = 'MEM') ); 496 +What is the highest number of three-pointers made by the Houston Rockets in a single game during the 2017 season? SELECT MAX(fg3m) AS max_three_pointers FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'HOU' AND season_id = '22017' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'HOU' AND season_id = '22017' ); 23.0 +How many total rebounds did the Los Angeles Lakers grab in the 1985 season? SELECT SUM(reb) AS total_rebounds FROM ( SELECT reb_home AS reb FROM game WHERE team_abbreviation_home = 'LAL' AND season_id = '21985' UNION ALL SELECT reb_away AS reb FROM game WHERE team_abbreviation_away = 'LAL' AND season_id = '21985' ); 3655.0 +What was the highest field goal percentage achieved by the Boston Celtics in a single game in the 2003 season? SELECT MAX(fg_pct) AS highest_fg_percentage FROM ( SELECT fg_pct_home AS fg_pct FROM game WHERE team_abbreviation_home = 'BOS' AND season_id = '22003' UNION ALL SELECT fg_pct_away AS fg_pct FROM game WHERE team_abbreviation_away = 'BOS' AND season_id = '22003' ); 0.577 +How many total lead changes occurred in all New York Knicks games during the 2006 season? SELECT SUM(lead_changes) AS total_lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22006' AND (team_abbreviation_home = 'NYK' OR team_abbreviation_away = 'NYK') ); 358 +What was the highest number of assists recorded by the Miami Heat in a single game during the 2015 season? SELECT MAX(ast) AS max_assists FROM ( SELECT ast_home AS ast FROM game WHERE team_abbreviation_home = 'MIA' AND season_id = '22015' UNION ALL SELECT ast_away AS ast FROM game WHERE team_abbreviation_away = 'MIA' AND season_id = '22015' ); 31.0 +How many total points did the Chicago Bulls score during the 1996 season? SELECT SUM(pts) AS total_points FROM ( SELECT pts_home AS pts FROM game WHERE team_abbreviation_home = 'CHI' AND season_id = '21996' UNION ALL SELECT pts_away AS pts FROM game WHERE team_abbreviation_away = 'CHI' AND season_id = '21996' ); 8458.0 +What was the highest-scoring game of the 2016 season? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE season_id = '22016' ORDER BY total_points DESC LIMIT 1; 0021600711|281.0 +How many free throws did the Boston Celtics attempt in the 2013 season? SELECT SUM(fta) AS total_free_throws_attempted FROM ( SELECT fta_home AS fta FROM game WHERE team_abbreviation_home = 'BOS' AND season_id = '22013' UNION ALL SELECT fta_away AS fta FROM game WHERE team_abbreviation_away = 'BOS' AND season_id = '22013' ); 1706.0 +What was the lowest field goal percentage recorded by the New York Knicks in any game of the 2005 season? SELECT MIN(fg_pct) AS lowest_fg_percentage FROM ( SELECT fg_pct_home AS fg_pct FROM game WHERE team_abbreviation_home = 'NYK' AND season_id = '22005' UNION ALL SELECT fg_pct_away FROM game WHERE team_abbreviation_away = 'NYK' AND season_id = '22005' ); 0.329 +How many total rebounds did the Houston Rockets collect in the 2010 season? SELECT SUM(reb) AS total_rebounds FROM ( SELECT reb_home AS reb FROM game WHERE team_abbreviation_home = 'HOU' AND season_id = '22010' UNION ALL SELECT reb_away AS reb FROM game WHERE team_abbreviation_away = 'HOU' AND season_id = '22010' ); 3511.0 +What was the largest margin of victory in the 2003 season? SELECT MAX(ABS(pts_home - pts_away)) AS largest_margin FROM game WHERE season_id = '22003'; 47.0 +How many games did the Orlando Magic win at home in the 2015 season? SELECT COUNT(*) AS home_wins FROM game WHERE season_id = '22015' AND team_abbreviation_home = 'ORL' AND pts_home > pts_away; 23 +Which game had the most lead changes in the 2020 season? SELECT game_id, lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22020' ) ORDER BY lead_changes DESC LIMIT 1; 0022000890|26 +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 +How many times did the Cleveland Cavaliers lose by more than 20 points in the 2010 season? SELECT COUNT(*) FROM game WHERE season_id = '22010' AND ( (team_name_home = 'Cleveland Cavaliers' AND wl_home = 'L' AND (pts_away - pts_home) > 20) OR (team_name_away = 'Cleveland Cavaliers' AND wl_away = 'L' AND (pts_home - pts_away) > 20) ); 9 +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-scoring game in Chicago Bulls history (considering both home and away games)? SELECT game_id, pts_home, pts_away, game_date FROM game WHERE team_abbreviation_home = 'CHI' OR team_abbreviation_away = 'CHI' ORDER BY (pts_home + pts_away) DESC LIMIT 1; 0021800928|161.0|168.0|2019-03-01 00:00:00 +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 +Which opponent has the Los Angeles Clippers lost to the most in away games? SELECT team_abbreviation_home, COUNT(*) AS losses FROM game WHERE team_abbreviation_away = 'LAC' AND wl_away = 'L' GROUP BY team_abbreviation_home ORDER BY losses DESC LIMIT 1; POR|65 +How many times have the Toronto Raptors scored exactly 100 points in an away game? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'TOR' AND pts_away = 100; 35 +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 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 +In which season did the San Antonio Spurs win the most games? SELECT season_id, COUNT(*) AS win_count FROM game WHERE (team_name_home = 'San Antonio Spurs' AND wl_home = 'W') OR (team_name_away = 'San Antonio Spurs' AND wl_away = 'W') GROUP BY season_id ORDER BY win_count DESC LIMIT 1; 22015|67 +What is the most points the Chicago Bulls have scored at home in the 1996 season? SELECT MAX(pts_home) FROM game WHERE team_abbreviation_home = 'CHI' AND season_id = '21996'; 134.0 +How many games did the Boston Celtics win at home in the 1984 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'BOS' AND season_id = '21984' AND wl_home = 'W'; 35 +What is the average number of turnovers per game for the Philadelphia 76ers at home in the 2018 season? SELECT AVG(tov_home) FROM game WHERE team_abbreviation_home = 'PHI' AND season_id = '22018'; 14.2682926829268 +In the 1972 season, how many times did the New York Knicks and Brooklyn Nets play against each other? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'NYK' AND team_abbreviation_away = 'BKN') OR (team_abbreviation_home = 'BKN' AND team_abbreviation_away = 'NYK') AND season_id = '21972'; 21 +What was the highest-scoring game (total points combined) in the 2001 season? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE season_id = '22001' ORDER BY total_points DESC LIMIT 1; 0020100682|281.0 +What is the most points the Detroit Pistons have scored in an away game in the 2004 season? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'DET' AND season_id = '22004'; 114.0 +How many games did the San Antonio Spurs win on the road in the 1999 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'SAS' AND season_id = '21999' AND wl_away = 'W'; 22 +What was the average number of personal fouls committed by the Indiana Pacers in away games during the 2011 season? SELECT AVG(pf_away) FROM game WHERE team_abbreviation_away = 'IND' AND season_id = '22011'; 21.3939393939394 +What is the highest number of turnovers the Dallas Mavericks committed in a single away game during the 2016 season? SELECT MAX(tov_away) FROM game WHERE team_abbreviation_away = 'DAL' AND season_id = '22016'; 22.0 +How many total offensive rebounds did the Sacramento Kings record in all away games in the 1990 season? SELECT SUM(oreb_away) FROM game WHERE team_abbreviation_away = 'SAC' AND season_id = '21990'; 517.0 +What is the highest-scoring game (combined points) the Utah Jazz played in the 1998 season, home or away? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE (team_abbreviation_home = 'UTA' OR team_abbreviation_away = 'UTA') AND season_id = '21998' ORDER BY total_points DESC LIMIT 1; 0029800077|232.0 +How many fast break points did the Toronto Raptors score on the road in total during the 2002 season? SELECT SUM(pts_fb_away) FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE team_abbreviation_away = 'TOR' AND season_id = '22002' ); 465 +What is the highest number of three-pointers the Houston Rockets made in a single away game during the 2018 season? SELECT MAX(fg3m_away) FROM game WHERE team_abbreviation_away = 'HOU' AND season_id = '22018'; 26.0 +How many total rebounds did the New York Knicks grab in away games during the 1995 season? SELECT SUM(reb_away) FROM game WHERE team_abbreviation_away = 'NYK' AND season_id = '21995'; 1643.0 +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 margin of victory the Boston Celtics had in an away game during the 2010 season? SELECT MAX(ABS(pts_away - pts_home)) FROM game WHERE team_abbreviation_away = 'BOS' AND season_id = '22010' AND wl_away = 'W'; 31.0 +How many overtime games did the Portland Trail Blazers play in the 1994 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'POR' OR team_abbreviation_away = 'POR') AND season_id = '21994' AND min > 48; 82 +What was the highest number of assists the Philadelphia 76ers recorded in an away game during the 2001 season? SELECT MAX(ast_away) FROM game WHERE team_abbreviation_away = 'PHI' AND season_id = '22001'; 30.0 +How many times did the Milwaukee Bucks win an away game by 20 or more points in the 1983 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'MIL' AND season_id = '21983' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 3 +What is the highest number of points the Chicago Bulls scored in an away game during the 1997 season? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'CHI' AND season_id = '21997'; 123.0 +What was the highest-scoring combined total of any game the San Antonio Spurs played in during the 2007 season? SELECT MAX(pts_home + pts_away) FROM game WHERE team_abbreviation_home = 'SAS' OR team_abbreviation_away = 'SAS' AND season_id = '22007'; 301.0 +How many total three-pointers did the Cleveland Cavaliers make in away games during the 2016 season? SELECT SUM(fg3m_away) FROM game WHERE team_abbreviation_away = 'CLE' AND season_id = '22016'; 530.0 +What was the largest win margin for the Denver Nuggets in an away game during the 1985 season? SELECT MAX(pts_away - pts_home) FROM game WHERE team_abbreviation_away = 'DEN' AND season_id = '21985' AND wl_away = 'W'; 18.0 +What was the lowest-scoring game the Utah Jazz played in during the 2002 season? SELECT MIN(pts_home + pts_away) FROM game WHERE team_abbreviation_home = 'UTA' OR team_abbreviation_away = 'UTA' AND season_id = '22002'; 134.0 +How many times did the Detroit Pistons win an away game while holding their opponent to under 90 points in the 1990 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'DET' AND season_id = '21990' AND wl_away = 'W' AND pts_home < 90; 6 +How many times have the Boston Celtics won at home in the 2021 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'BOS' AND wl_home = 'W' AND season_id = '22021'; 28 +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 +How many points did the Golden State Warriors score in their first game of the 2005 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22005' ORDER BY game_date ASC LIMIT 1; 122.0 +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 +How many times did the Chicago Bulls lose at home in the 2015 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CHI' AND wl_home = 'L' AND season_id = '22015'; 15 +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 highest-scoring game played by the Boston Celtics at home? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'BOS' ORDER BY pts_home DESC LIMIT 1; 1959-02-27 00:00:00|173.0 +How many times have the Chicago Bulls won a home game while scoring at least 120 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CHI' AND pts_home >= 120 AND wl_home = 'W'; 236 +How many times have the Detroit Pistons won an away game in the 2004 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'DET' AND wl_away = 'W' AND season_id = '22004'; 22 +In how many home games did the Minnesota Timberwolves score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_home = 'MIN' AND pts_fb_home > pts_fb_away; 374 +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 was the highest field goal percentage the Denver Nuggets achieved in a single game in the 1999 season? SELECT MAX(fg_pct_home) FROM game WHERE team_abbreviation_home = 'DEN' AND season_id = '21999'; 0.631 +How many times have the Los Angeles Clippers won a game by 30 or more points? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'LAC' AND (pts_home - pts_away) >= 30 AND wl_home = 'W') OR (team_abbreviation_away = 'LAC' AND (pts_away - pts_home) >= 30 AND wl_away = 'W'); 48 +What is the highest-scoring away game played by the Los Angeles Lakers? SELECT game_date, pts_away FROM game WHERE team_abbreviation_away = 'LAL' ORDER BY pts_away DESC LIMIT 1; 1980-01-29 00:00:00|153.0 +How many times have the Houston Rockets won an away game while scoring at least 110 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'HOU' AND pts_away >= 110 AND wl_away = 'W'; 425 +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 +Which team had the most rebounds in a single away game during the 2010 season? SELECT team_abbreviation_away AS team, reb_away AS rebounds, game_date FROM game WHERE season_id = '22010' ORDER BY reb_away DESC LIMIT 1; SAC|60.0|2011-01-14 00:00:00 +How many lead changes were there in the closest away game the San Antonio Spurs played in the 2005 season? SELECT lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22005' AND team_abbreviation_away = 'SAS' ORDER BY ABS(pts_home - pts_away) ASC LIMIT 1 ); 26 +In how many away games did the Orlando Magic score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_away = 'ORL' AND pts_fb_away > pts_fb_home; 417 +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 +What was the highest field goal percentage the Dallas Mavericks achieved in a single away game in the 2008 season? SELECT MAX(fg_pct_away) FROM game WHERE team_abbreviation_away = 'DAL' AND season_id = '22008'; 0.603 +How many times have the Portland Trail Blazers won an away game by at least 25 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'POR' AND (pts_away - pts_home) >= 25 AND wl_away = 'W'; 33 +What is the highest-scoring home game for the Chicago Bulls? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'CHI' ORDER BY pts_home DESC LIMIT 1; 1990-12-04 00:00:00|155.0 +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 +How many games have the Boston Celtics won, both home and away, in the 2006 season? SELECT COUNT(*) FROM game WHERE season_id = '22006' AND ((team_abbreviation_home = 'BOS' AND wl_home = 'W') OR (team_abbreviation_away = 'BOS' AND wl_away = 'W')); 24 +Which team had the most rebounds in a single home game during the 2015 season? SELECT team_abbreviation_home AS team, reb_home AS rebounds, game_date FROM game WHERE season_id = '22015' ORDER BY reb_home DESC LIMIT 1; MIA|67.0|2016-02-20 00:00:00 +What was the lowest-scoring home game for the Golden State Warriors? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'GSW' ORDER BY pts_home ASC LIMIT 1; 1997-12-03 00:00:00|67.0 +How many games did the Los Angeles Lakers play at home in the 2010 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'LAL' AND season_id = '22010'; 41 +How many times has the Boston Celtics won an away game by at least 20 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'BOS' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 179 +How many times has a team won while shooting under 40% from the field (home or away)? SELECT COUNT(*) FROM game WHERE (fg_pct_home < 0.40 AND wl_home = 'W') OR (fg_pct_away < 0.40 AND wl_away = 'W'); 2437 +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 times has a team won while scoring fewer than 80 points? SELECT COUNT(*) FROM game WHERE (pts_home < 80 AND wl_home = 'W') OR (pts_away < 80 AND wl_away = 'W'); 1364 +How many times has a team lost while shooting over 55% from the field? SELECT COUNT(*) FROM game WHERE (fg_pct_home > 0.55 AND wl_home = 'L') OR (fg_pct_away > 0.55 AND wl_away = 'L'); 714 +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 +Which game had the highest combined total of turnovers and steals? SELECT game_id, (tov_home + tov_away + stl_home + stl_away) AS total FROM game ORDER BY total DESC LIMIT 1; 0028500026|102.0 +What was the largest lead the Golden State Warriors had in a game during the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_name_home = 'Golden State Warriors' AND game.season_id = '22018'; 44 +What is the most points the Cleveland Cavaliers have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Cleveland Cavaliers'; 154 +What is the most points the Minnesota Timberwolves have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Minnesota Timberwolves'; 150 +What is the most points the New York Knicks have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'New York Knicks'; 152 +What is the most points the Detroit Pistons have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Detroit Pistons'; 160 +What is the second-highest number of points the New York Knicks have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'New York Knicks' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 151 +What is the second-highest number of points the New Orleans Pelicans have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'New Orleans Pelicans' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 140 +What is the second-highest number of points the Brooklyn Nets have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Brooklyn Nets' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 144 +What is the second-highest number of points the Washington Wizards have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Washington Wizards' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 154 +How many home games did the Milwaukee Bucks win in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'MIL' AND wl_home = 'W' AND season_id = '22017'; 25 +What is the average number of assists by the Minnesota Timberwolves in home wins? SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'MIN' AND wl_home = 'W'; 25.92228739 +What is the average number of assists by the Atlanta Hawks in home wins? SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'ATL' AND wl_home = 'W'; 25.0786309 +What is the average number of assists by the Sacramento Kings in home wins? SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'SAC' AND wl_home = 'W'; 24.74970344 +What is the average number of assists by the Denver Nuggets in home wins? SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'DEN' AND wl_home = 'W'; 26.97093551 +How many times did the Chicago Bulls score over 120 points at home? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CHI' AND pts_home > 120; 237 +How many times did the Boston Celtics score over 120 points at home? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'BOS' AND pts_home > 120; 561 +How many times did the Memphis Grizzlies score over 120 points at home? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'MEM' AND pts_home > 120; 90 +How many times did the Utah Jazz score over 120 points at home? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'UTA' AND pts_home > 120; 99 +Which Cleveland Cavaliers home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Cleveland Cavaliers' ORDER BY os.lead_changes DESC LIMIT 1; 2010-04-09 00:00:00 | 31 +Which Denver Nuggets home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Denver Nuggets' ORDER BY os.lead_changes DESC LIMIT 1; 2006-01-10 00:00:00 | 32 +Which Detroit Pistons home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Detroit Pistons' ORDER BY os.lead_changes DESC LIMIT 1; 2022-03-07 00:00:00 | 30 +How many Charlotte Hornets home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'CHA' AND os.pts_paint_home > os.pts_paint_away; 293 +How many Brooklyn Nets home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'BKN' AND os.pts_paint_home > os.pts_paint_away; 178 +How many Miami Heat home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'MIA' AND os.pts_paint_home > os.pts_paint_away; 457 +How many Minnesota Timberwolves home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'MIN' AND os.pts_paint_home > os.pts_paint_away; 422 +How many Miami Heat home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Miami Heat' AND oreb_home > 15 AND stl_home >= 10; ('1988-11-11 00:00:00', 17.0, 11.0) | ('1988-11-15 00:00:00', 19.0, 14.0) | ('1988-12-23 00:00:00', 18.0, 13.0) | ('1988-12-26 00:00:00', 18.0, 19.0) | ('1989-01-15 00:00:00', 18.0, 14.0) | ('1989-02-26 00:00:00', 20.0, 12.0) | ('1989-04-08 00:00:00', 22.0, 13.0) | ('1989-12-02 00:00:00', 17.0, 12.0) | ('1989-12-08 00:00:00', 16.0, 16.0) | ('1990-01-17 00:00:00', 17.0, 11.0) | ('1990-02-02 00:00:00', 17.0, 10.0) | ('1990-02-06 00:00:00', 16.0, 10.0) | ('1990-11-02 00:00:00', 18.0, 11.0) | ('1990-11-24 00:00:00', 17.0, 13.0) | ('1990-12-15 00:00:00', 28.0, 10.0) | ('1991-01-15 00:00:00', 22.0, 10.0) | ('1991-01-30 00:00:00', 23.0, 15.0) | ('1991-02-01 00:00:00', 16.0, 13.0) | ('1991-04-19 00:00:00', 24.0, 12.0) | ('1991-11-22 00:00:00', 18.0, 11.0) | ('1991-12-03 00:00:00', 19.0, 10.0) | ('1991-12-11 00:00:00', 23.0, 11.0) | ('1991-12-18 00:00:00', 18.0, 14.0) | ('1991-12-21 00:00:00', 17.0, 10.0) | ('1992-01-10 00:00:00', 19.0, 11.0) | ('1992-01-22 00:00:00', 16.0, 11.0) | ('1992-02-11 00:00:00', 21.0, 10.0) | ('1992-04-07 00:00:00', 16.0, 10.0) | ('1992-04-11 00:00:00', 19.0, 10.0) | ('1992-04-16 00:00:00', 16.0, 10.0) | ('1992-11-27 00:00:00', 17.0, 12.0) | ('1993-01-20 00:00:00', 19.0, 10.0) | ('1993-02-17 00:00:00', 17.0, 11.0) | ('1993-04-20 00:00:00', 19.0, 10.0) | ('1993-04-23 00:00:00', 17.0, 11.0) | ('1993-12-26 00:00:00', 22.0, 11.0) | ('1994-02-05 00:00:00', 21.0, 20.0) | ('1994-03-09 00:00:00', 20.0, 13.0) | ('1994-03-29 00:00:00', 20.0, 11.0) | ('1994-04-19 00:00:00', 22.0, 10.0) | ('1995-03-12 00:00:00', 22.0, 10.0) | ('1995-04-02 00:00:00', 18.0, 10.0) | ('1995-11-28 00:00:00', 18.0, 14.0) | ('1996-02-25 00:00:00', 22.0, 10.0) | ('1996-04-21 00:00:00', 16.0, 14.0) | ('1996-11-12 00:00:00', 17.0, 10.0) | ('1996-11-16 00:00:00', 16.0, 11.0) | ('1996-12-17 00:00:00', 16.0, 11.0) | ('1997-03-28 00:00:00', 17.0, 10.0) | ('1997-11-03 00:00:00', 21.0, 13.0) | ('1997-11-08 00:00:00', 16.0, 10.0) | ('1997-11-11 00:00:00', 22.0, 11.0) | ('2000-02-15 00:00:00', 20.0, 12.0) | ('2002-03-29 00:00:00', 16.0, 11.0) | ('2003-02-01 00:00:00', 20.0, 13.0) | ('2007-12-20 00:00:00', 16.0, 11.0) | ('2010-01-06 00:00:00', 17.0, 10.0) | ('2012-04-08 00:00:00', 16.0, 13.0) | ('2012-04-22 00:00:00', 17.0, 10.0) | ('2016-11-15 00:00:00', 17.0, 11.0) | ('2017-03-21 00:00:00', 17.0, 13.0) | ('2017-12-26 00:00:00', 16.0, 11.0) | ('2018-03-05 00:00:00', 16.0, 12.0) | ('2021-03-16 00:00:00', 16.0, 11.0) | ('2022-01-29 00:00:00', 19.0, 12.0) +How many Milwaukee Bucks home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Milwaukee Bucks' AND oreb_home > 15 AND stl_home >= 10; ('1982-03-12 00:00:00', 16.0, 10.0) | ('1985-02-26 00:00:00', 17.0, 11.0) | ('1985-11-15 00:00:00', 22.0, 12.0) | ('1985-12-13 00:00:00', 17.0, 12.0) | ('1985-12-21 00:00:00', 21.0, 14.0) | ('1985-12-30 00:00:00', 17.0, 15.0) | ('1986-01-07 00:00:00', 26.0, 12.0) | ('1986-01-16 00:00:00', 20.0, 13.0) | ('1986-01-19 00:00:00', 19.0, 10.0) | ('1986-02-25 00:00:00', 18.0, 11.0) | ('1986-03-22 00:00:00', 17.0, 12.0) | ('1986-12-10 00:00:00', 20.0, 13.0) | ('1986-12-20 00:00:00', 23.0, 10.0) | ('1987-01-03 00:00:00', 16.0, 16.0) | ('1987-01-16 00:00:00', 27.0, 17.0) | ('1987-02-16 00:00:00', 16.0, 10.0) | ('1987-03-04 00:00:00', 29.0, 15.0) | ('1987-03-06 00:00:00', 29.0, 11.0) | ('1987-04-04 00:00:00', 16.0, 12.0) | ('1987-04-11 00:00:00', 16.0, 18.0) | ('1988-02-19 00:00:00', 16.0, 10.0) | ('1988-03-22 00:00:00', 16.0, 12.0) | ('1988-03-31 00:00:00', 18.0, 18.0) | ('1988-11-26 00:00:00', 16.0, 13.0) | ('1988-12-23 00:00:00', 20.0, 15.0) | ('1989-01-04 00:00:00', 20.0, 13.0) | ('1989-01-18 00:00:00', 17.0, 13.0) | ('1989-02-19 00:00:00', 17.0, 16.0) | ('1989-02-21 00:00:00', 19.0, 14.0) | ('1989-02-27 00:00:00', 19.0, 20.0) | ('1989-04-19 00:00:00', 17.0, 12.0) | ('1989-11-11 00:00:00', 16.0, 13.0) | ('1989-12-30 00:00:00', 16.0, 12.0) | ('1990-01-12 00:00:00', 17.0, 11.0) | ('1990-01-16 00:00:00', 22.0, 18.0) | ('1990-02-01 00:00:00', 21.0, 19.0) | ('1990-02-08 00:00:00', 18.0, 11.0) | ('1990-04-19 00:00:00', 17.0, 12.0) | ('1990-11-21 00:00:00', 20.0, 12.0) | ('1990-12-05 00:00:00', 16.0, 10.0) | ('1990-12-11 00:00:00', 18.0, 15.0) | ('1991-01-16 00:00:00', 16.0, 10.0) | ('1991-01-29 00:00:00', 22.0, 11.0) | ('1991-02-19 00:00:00', 16.0, 14.0) | ('1991-03-07 00:00:00', 18.0, 11.0) | ('1991-11-06 00:00:00', 18.0, 14.0) | ('1991-11-16 00:00:00', 20.0, 16.0) | ('1991-11-21 00:00:00', 25.0, 13.0) | ('1991-12-05 00:00:00', 18.0, 12.0) | ('1991-12-08 00:00:00', 18.0, 19.0) | ('1992-01-03 00:00:00', 16.0, 10.0) | ('1992-01-11 00:00:00', 21.0, 12.0) | ('1992-01-19 00:00:00', 22.0, 12.0) | ('1992-02-02 00:00:00', 16.0, 15.0) | ('1992-03-01 00:00:00', 18.0, 12.0) | ('1992-03-06 00:00:00', 21.0, 24.0) | ('1992-03-14 00:00:00', 17.0, 13.0) | ('1992-03-17 00:00:00', 20.0, 12.0) | ('1992-03-22 00:00:00', 16.0, 11.0) | ('1992-04-01 00:00:00', 20.0, 12.0) | ('1992-04-05 00:00:00', 16.0, 10.0) | ('1992-04-14 00:00:00', 17.0, 11.0) | ('1992-11-13 00:00:00', 17.0, 10.0) | ('1992-11-15 00:00:00', 16.0, 13.0) | ('1992-11-25 00:00:00', 20.0, 12.0) | ('1992-12-22 00:00:00', 21.0, 10.0) | ('1993-01-23 00:00:00', 20.0, 12.0) | ('1993-03-02 00:00:00', 17.0, 14.0) | ('1993-03-20 00:00:00', 19.0, 10.0) | ('1993-04-15 00:00:00', 17.0, 10.0) | ('1993-11-10 00:00:00', 17.0, 11.0) | ('1993-11-24 00:00:00', 16.0, 14.0) | ('1993-11-27 00:00:00', 16.0, 10.0) | ('1993-12-08 00:00:00', 21.0, 19.0) | ('1994-02-16 00:00:00', 19.0, 16.0) | ('1994-02-22 00:00:00', 17.0, 13.0) | ('1994-02-26 00:00:00', 16.0, 11.0) | ('1994-03-05 00:00:00', 16.0, 15.0) | ('1994-03-29 00:00:00', 16.0, 11.0) | ('1994-12-01 00:00:00', 16.0, 12.0) | ('1995-04-11 00:00:00', 21.0, 10.0) | ('1996-02-13 00:00:00', 19.0, 10.0) | ('1996-02-21 00:00:00', 19.0, 10.0) | ('1996-12-08 00:00:00', 17.0, 10.0) | ('1996-12-18 00:00:00', 17.0, 13.0) | ('1997-02-01 00:00:00', 16.0, 13.0) | ('1997-11-06 00:00:00', 19.0, 11.0) | ('1998-03-05 00:00:00', 17.0, 10.0) | ('1999-03-05 00:00:00', 19.0, 10.0) | ('2000-12-03 00:00:00', 16.0, 13.0) | ('2001-01-03 00:00:00', 18.0, 17.0) | ('2001-01-27 00:00:00', 16.0, 10.0) | ('2001-03-03 00:00:00', 20.0, 10.0) | ('2002-11-02 00:00:00', 16.0, 11.0) | ('2003-03-08 00:00:00', 20.0, 11.0) | ('2003-04-02 00:00:00', 16.0, 10.0) | ('2004-01-07 00:00:00', 16.0, 13.0) | ('2005-03-05 00:00:00', 17.0, 13.0) | ('2005-04-01 00:00:00', 17.0, 11.0) | ('2006-02-24 00:00:00', 16.0, 10.0) | ('2007-01-17 00:00:00', 16.0, 10.0) | ('2007-04-07 00:00:00', 20.0, 16.0) | ('2008-01-27 00:00:00', 16.0, 12.0) | ('2008-11-21 00:00:00', 17.0, 10.0) | ('2009-03-15 00:00:00', 21.0, 11.0) | ('2009-10-31 00:00:00', 16.0, 10.0) | ('2011-01-22 00:00:00', 16.0, 10.0) | ('2011-12-27 00:00:00', 16.0, 13.0) | ('2012-02-28 00:00:00', 20.0, 11.0) | ('2012-03-07 00:00:00', 16.0, 12.0) | ('2012-03-14 00:00:00', 16.0, 10.0) | ('2013-12-28 00:00:00', 16.0, 12.0) | ('2014-11-05 00:00:00', 18.0, 10.0) | ('2015-04-01 00:00:00', 20.0, 11.0) | ('2015-04-23 00:00:00', 17.0, 11.0) | ('2016-11-05 00:00:00', 17.0, 12.0) | ('2018-03-04 00:00:00', 16.0, 15.0) | ('2019-12-22 00:00:00', 16.0, 10.0) | ('2021-04-24 00:00:00', 16.0, 10.0) | ('2021-05-11 00:00:00', 17.0, 10.0) | ('2021-06-25 00:00:00', 16.0, 14.0) | ('2021-07-14 00:00:00', 17.0, 11.0) | ('2022-10-01 00:00:00', 17.0, 10.0) +How many Philadelphia 76ers home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Philadelphia 76ers' AND oreb_home > 15 AND stl_home >= 10; ('1977-05-22 00:00:00', 18.0, 16.0) | ('1982-01-09 00:00:00', 26.0, 12.0) | ('1982-01-23 00:00:00', 25.0, 11.0) | ('1982-05-27 00:00:00', 18.0, 11.0) | ('1982-12-11 00:00:00', 16.0, 19.0) | ('1983-04-27 00:00:00', 17.0, 10.0) | ('1983-05-08 00:00:00', 22.0, 13.0) | ('1983-05-22 00:00:00', 21.0, 11.0) | ('1983-05-26 00:00:00', 16.0, 10.0) | ('1983-12-07 00:00:00', 25.0, 11.0) | ('1985-04-17 00:00:00', 16.0, 15.0) | ('1985-05-03 00:00:00', 17.0, 13.0) | ('1985-05-18 00:00:00', 17.0, 13.0) | ('1985-05-19 00:00:00', 19.0, 12.0) | ('1985-11-08 00:00:00', 22.0, 13.0) | ('1985-11-10 00:00:00', 19.0, 16.0) | ('1985-12-04 00:00:00', 23.0, 11.0) | ('1985-12-06 00:00:00', 23.0, 10.0) | ('1985-12-18 00:00:00', 18.0, 14.0) | ('1985-12-21 00:00:00', 18.0, 11.0) | ('1986-01-08 00:00:00', 27.0, 14.0) | ('1986-01-10 00:00:00', 26.0, 19.0) | ('1986-01-20 00:00:00', 22.0, 14.0) | ('1986-03-09 00:00:00', 20.0, 12.0) | ('1986-04-02 00:00:00', 18.0, 14.0) | ('1986-04-04 00:00:00', 25.0, 14.0) | ('1986-04-06 00:00:00', 17.0, 16.0) | ('1986-05-03 00:00:00', 17.0, 12.0) | ('1986-12-03 00:00:00', 21.0, 17.0) | ('1986-12-10 00:00:00', 16.0, 10.0) | ('1986-12-17 00:00:00', 18.0, 10.0) | ('1987-01-05 00:00:00', 20.0, 21.0) | ('1987-01-28 00:00:00', 17.0, 11.0) | ('1987-02-11 00:00:00', 16.0, 11.0) | ('1987-04-01 00:00:00', 18.0, 10.0) | ('1987-04-13 00:00:00', 19.0, 10.0) | ('1987-11-06 00:00:00', 16.0, 13.0) | ('1987-11-13 00:00:00', 25.0, 10.0) | ('1987-11-24 00:00:00', 16.0, 13.0) | ('1987-12-12 00:00:00', 17.0, 10.0) | ('1988-02-11 00:00:00', 25.0, 14.0) | ('1988-03-11 00:00:00', 16.0, 11.0) | ('1988-04-08 00:00:00', 18.0, 11.0) | ('1988-04-13 00:00:00', 22.0, 10.0) | ('1988-11-04 00:00:00', 20.0, 17.0) | ('1988-11-16 00:00:00', 20.0, 11.0) | ('1988-11-26 00:00:00', 17.0, 10.0) | ('1988-11-30 00:00:00', 17.0, 15.0) | ('1989-01-27 00:00:00', 27.0, 10.0) | ('1989-03-22 00:00:00', 23.0, 13.0) | ('1990-01-27 00:00:00', 16.0, 10.0) | ('1990-03-23 00:00:00', 16.0, 10.0) | ('1990-04-03 00:00:00', 17.0, 13.0) | ('1990-04-26 00:00:00', 18.0, 11.0) | ('1990-11-14 00:00:00', 18.0, 10.0) | ('1990-11-16 00:00:00', 27.0, 12.0) | ('1991-11-22 00:00:00', 18.0, 15.0) | ('1992-01-24 00:00:00', 19.0, 12.0) | ('1992-01-29 00:00:00', 16.0, 11.0) | ('1992-02-05 00:00:00', 17.0, 11.0) | ('1992-03-23 00:00:00', 19.0, 10.0) | ('1992-04-01 00:00:00', 17.0, 11.0) | ('1992-11-20 00:00:00', 22.0, 14.0) | ('1992-12-21 00:00:00', 18.0, 12.0) | ('1993-01-29 00:00:00', 18.0, 10.0) | ('1993-11-17 00:00:00', 19.0, 13.0) | ('1993-12-15 00:00:00', 20.0, 14.0) | ('1994-01-29 00:00:00', 16.0, 11.0) | ('1995-01-21 00:00:00', 25.0, 10.0) | ('1995-03-08 00:00:00', 22.0, 10.0) | ('1995-03-22 00:00:00', 22.0, 13.0) | ('1995-11-03 00:00:00', 21.0, 15.0) | ('1996-03-15 00:00:00', 17.0, 11.0) | ('1996-11-05 00:00:00', 18.0, 13.0) | ('1996-11-26 00:00:00', 20.0, 10.0) | ('1997-01-17 00:00:00', 17.0, 11.0) | ('1997-12-10 00:00:00', 19.0, 10.0) | ('1998-01-15 00:00:00', 17.0, 13.0) | ('1998-02-17 00:00:00', 18.0, 10.0) | ('1998-03-04 00:00:00', 16.0, 12.0) | ('1998-04-03 00:00:00', 16.0, 11.0) | ('1999-02-06 00:00:00', 17.0, 14.0) | ('1999-02-09 00:00:00', 20.0, 18.0) | ('1999-02-20 00:00:00', 17.0, 13.0) | ('1999-02-24 00:00:00', 16.0, 13.0) | ('1999-03-03 00:00:00', 16.0, 14.0) | ('1999-03-05 00:00:00', 24.0, 12.0) | ('1999-03-07 00:00:00', 17.0, 12.0) | ('1999-03-10 00:00:00', 16.0, 17.0) | ('1999-05-05 00:00:00', 20.0, 11.0) | ('1999-05-13 00:00:00', 17.0, 20.0) | ('1999-05-21 00:00:00', 19.0, 14.0) | ('1999-11-08 00:00:00', 21.0, 12.0) | ('1999-12-08 00:00:00', 17.0, 14.0) | ('1999-12-15 00:00:00', 19.0, 12.0) | ('2000-01-05 00:00:00', 18.0, 13.0) | ('2000-01-14 00:00:00', 17.0, 12.0) | ('2000-02-06 00:00:00', 20.0, 13.0) | ('2000-02-18 00:00:00', 16.0, 10.0) | ('2000-02-23 00:00:00', 19.0, 12.0) | ('2000-11-01 00:00:00', 17.0, 11.0) | ('2001-01-05 00:00:00', 17.0, 11.0) | ('2001-01-26 00:00:00', 18.0, 11.0) | ('2001-02-21 00:00:00', 19.0, 13.0) | ('2001-03-26 00:00:00', 21.0, 15.0) | ('2001-03-28 00:00:00', 24.0, 14.0) | ('2001-04-24 00:00:00', 16.0, 12.0) | ('2001-05-30 00:00:00', 18.0, 13.0) | ('2001-06-03 00:00:00', 17.0, 11.0) | ('2002-02-20 00:00:00', 16.0, 16.0) | ('2002-04-15 00:00:00', 19.0, 13.0) | ('2002-12-20 00:00:00', 16.0, 14.0) | ('2003-01-06 00:00:00', 19.0, 12.0) | ('2003-02-12 00:00:00', 22.0, 15.0) | ('2003-03-14 00:00:00', 16.0, 17.0) | ('2003-03-28 00:00:00', 17.0, 12.0) | ('2003-04-06 00:00:00', 17.0, 14.0) | ('2004-01-30 00:00:00', 17.0, 11.0) | ('2005-04-08 00:00:00', 17.0, 10.0) | ('2006-03-09 00:00:00', 22.0, 11.0) | ('2005-10-25 00:00:00', 18.0, 16.0) | ('2007-11-07 00:00:00', 16.0, 17.0) | ('2008-01-08 00:00:00', 18.0, 12.0) | ('2008-01-11 00:00:00', 19.0, 13.0) | ('2008-03-22 00:00:00', 18.0, 10.0) | ('2008-04-11 00:00:00', 16.0, 12.0) | ('2009-01-31 00:00:00', 16.0, 10.0) | ('2009-02-05 00:00:00', 16.0, 12.0) | ('2009-02-18 00:00:00', 18.0, 10.0) | ('2009-12-14 00:00:00', 25.0, 11.0) | ('2010-03-10 00:00:00', 16.0, 11.0) | ('2011-03-06 00:00:00', 17.0, 14.0) | ('2011-03-09 00:00:00', 16.0, 11.0) | ('2012-03-16 00:00:00', 17.0, 12.0) | ('2013-12-03 00:00:00', 20.0, 10.0) | ('2014-01-17 00:00:00', 19.0, 11.0) | ('2014-01-25 00:00:00', 19.0, 15.0) | ('2013-10-23 00:00:00', 17.0, 11.0) | ('2014-11-29 00:00:00', 22.0, 10.0) | ('2014-12-05 00:00:00', 19.0, 13.0) | ('2014-12-15 00:00:00', 16.0, 11.0) | ('2015-03-07 00:00:00', 17.0, 14.0) | ('2015-03-11 00:00:00', 17.0, 12.0) | ('2015-03-30 00:00:00', 20.0, 11.0) | ('2015-04-08 00:00:00', 17.0, 11.0) | ('2018-04-11 00:00:00', 17.0, 15.0) | ('2018-11-30 00:00:00', 17.0, 11.0) | ('2019-10-30 00:00:00', 16.0, 14.0) | ('2021-01-12 00:00:00', 16.0, 10.0) +How many total free throws did the Charlotte Hornets make in the 2011 season? SELECT SUM(ftm) AS total_free_throws FROM ( SELECT ftm_home AS ftm FROM game WHERE team_abbreviation_home = 'CHA' AND season_id = '22011' UNION ALL SELECT ftm_away AS ftm FROM game WHERE team_abbreviation_away = 'CHA' AND season_id = '22011' ); 1090 +Which game had the lowest combined score when the Milwaukee Bucks played in the 2019 season? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE season_id = '22019' AND (team_abbreviation_home = 'MIL' OR team_abbreviation_away = 'MIL') ORDER BY total_points ASC LIMIT 1; 0021900895 | 178.0 +Which game had the lowest combined score when the Detroit Pistons played in the 2019 season? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE season_id = '22019' AND (team_abbreviation_home = 'DET' OR team_abbreviation_away = 'DET') ORDER BY total_points ASC LIMIT 1; 0021900793 | 163.0 +Which game had the lowest combined score when the Minnesota Timberwolves played in the 2019 season? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE season_id = '22019' AND (team_abbreviation_home = 'MIN' OR team_abbreviation_away = 'MIN') ORDER BY total_points ASC LIMIT 1; 0021900479 | 182.0 +What was the average three-point percentage for the Atlanta Hawks in away games during the 2020 season? SELECT AVG(fg3_pct_away) AS avg_3p_pct FROM game WHERE team_abbreviation_away = 'ATL' AND season_id = '22020'; 0.3589444444 +What was the average three-point percentage for the San Antonio Spurs in away games during the 2020 season? SELECT AVG(fg3_pct_away) AS avg_3p_pct FROM game WHERE team_abbreviation_away = 'SAS' AND season_id = '22020'; 0.3377222222 +How many games did the Indiana Pacers win on the road during the 2018 season? SELECT COUNT(*) AS away_wins FROM game WHERE team_name_away = 'Indiana Pacers' AND wl_away = 'W' AND season_id = '22018'; 19 +What was the total number of assists made by the Toronto Raptors in games where they scored more than 110 points at home? SELECT SUM(ast_home) AS total_assists FROM game WHERE team_name_home = 'Toronto Raptors' AND pts_home > 110; 8125 +What was the total number of assists made by the Chicago Bulls in games where they scored more than 110 points at home? SELECT SUM(ast_home) AS total_assists FROM game WHERE team_name_home = 'Chicago Bulls' AND pts_home > 110; 14266 +What was the total number of assists made by the Los Angeles Lakers in games where they scored more than 110 points at home? SELECT SUM(ast_home) AS total_assists FROM game WHERE team_name_home = 'Los Angeles Lakers' AND pts_home > 110; 23837 +What was the total number of assists made by the Detroit Pistons in games where they scored more than 110 points at home? SELECT SUM(ast_home) AS total_assists FROM game WHERE team_name_home = 'Detroit Pistons' AND pts_home > 110; 12408 +When did the Sacramento Kings score the most points in the paint in an away game? SELECT g.game_date, o.pts_paint_away FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Sacramento Kings' ORDER BY o.pts_paint_away DESC LIMIT 1; 2012-04-22 00:00:00 | 78 +When did the New York Knicks score the most points in the paint in an away game? SELECT g.game_date, o.pts_paint_away FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'New York Knicks' ORDER BY o.pts_paint_away DESC LIMIT 1; 2022-02-05 00:00:00 | 72 +When did the Utah Jazz score the most points in the paint in an away game? SELECT g.game_date, o.pts_paint_away FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Utah Jazz' ORDER BY o.pts_paint_away DESC LIMIT 1; 2019-04-10 00:00:00 | 76 +When did the Washington Wizards score the most points in the paint in an away game? SELECT g.game_date, o.pts_paint_away FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Washington Wizards' ORDER BY o.pts_paint_away DESC LIMIT 1; 2014-02-27 00:00:00 | 80 +What is the average number of turnovers committed by the Toronto Raptors in games they won at home? SELECT AVG(tov_home) AS avg_turnovers FROM game WHERE team_name_home = 'Toronto Raptors' AND wl_home = 'W'; 13.61777778 +What is the average number of turnovers committed by the Dallas Mavericks in games they won at home? SELECT AVG(tov_home) AS avg_turnovers FROM game WHERE team_name_home = 'Dallas Mavericks' AND wl_home = 'W'; 13.47395301 +What is the average number of turnovers committed by the Charlotte Hornets in games they won at home? SELECT AVG(tov_home) AS avg_turnovers FROM game WHERE team_name_home = 'Charlotte Hornets' AND wl_home = 'W'; 14.0019084 +What was the average number of rebounds grabbed by the Oklahoma City Thunder in games where they scored at least 40 points from fast breaks? SELECT AVG(rebounds) AS avg_rebounds FROM ( SELECT g.game_id, g.reb_home AS rebounds FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND o.pts_fb_home >= 40 UNION ALL SELECT g.game_id, g.reb_away AS rebounds FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Oklahoma City Thunder' AND o.pts_fb_away >= 40 ); 40 +What was the average number of rebounds grabbed by the San Antonio Spurs in games where they scored at least 40 points from fast breaks? SELECT AVG(rebounds) AS avg_rebounds FROM ( SELECT g.game_id, g.reb_home AS rebounds FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND o.pts_fb_home >= 40 UNION ALL SELECT g.game_id, g.reb_away AS rebounds FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'San Antonio Spurs' AND o.pts_fb_away >= 40 ); 46 +How many games did the Los Angeles Lakers lose by more than 20 points in the 2018 season? SELECT COUNT(*) AS blowout_losses FROM game WHERE (team_name_home = 'Los Angeles Lakers' AND wl_home = 'L' AND plus_minus_home < -20) OR (team_name_away = 'Los Angeles Lakers' AND wl_away = 'L' AND plus_minus_away < -20) AND season_id = '22018'; 71 +How many games did the Houston Rockets lose by more than 20 points in the 2018 season? SELECT COUNT(*) AS blowout_losses FROM game WHERE (team_name_home = 'Houston Rockets' AND wl_home = 'L' AND plus_minus_home < -20) OR (team_name_away = 'Houston Rockets' AND wl_away = 'L' AND plus_minus_away < -20) AND season_id = '22018'; 60 +How many games did the Detroit Pistons lose by more than 20 points in the 2018 season? SELECT COUNT(*) AS blowout_losses FROM game WHERE (team_name_home = 'Detroit Pistons' AND wl_home = 'L' AND plus_minus_home < -20) OR (team_name_away = 'Detroit Pistons' AND wl_away = 'L' AND plus_minus_away < -20) AND season_id = '22018'; 92 +What is the total number of points scored by the Memphis Grizzlies in games where they made more than 20 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Memphis Grizzlies' AND fg3m_home > 20 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Memphis Grizzlies' AND fg3m_away > 20 ); 546 +What is the total number of points scored by the Atlanta Hawks in games where they made more than 20 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Atlanta Hawks' AND fg3m_home > 20 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Atlanta Hawks' AND fg3m_away > 20 ); 1189 +What is the total number of points scored by the Los Angeles Lakers in games where they made more than 20 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Los Angeles Lakers' AND fg3m_home > 20 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Los Angeles Lakers' AND fg3m_away > 20 ); 129 +What is the total number of points scored by the Toronto Raptors in games where they made more than 20 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Toronto Raptors' AND fg3m_home > 20 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Toronto Raptors' AND fg3m_away > 20 ); 1504 +What was the average margin of victory for the Miami Heat in home wins during the 2021 season? SELECT AVG(plus_minus_home) AS avg_victory_margin FROM game WHERE team_name_home = 'Miami Heat' AND wl_home = 'W' AND season_id = '22021'; 13.20689655 +What was the average margin of victory for the Minnesota Timberwolves in home wins during the 2021 season? SELECT AVG(plus_minus_home) AS avg_victory_margin FROM game WHERE team_name_home = 'Minnesota Timberwolves' AND wl_home = 'W' AND season_id = '22021'; 15.84615385 +What was the average margin of victory for the Philadelphia 76ers in home wins during the 2021 season? SELECT AVG(plus_minus_home) AS avg_victory_margin FROM game WHERE team_name_home = 'Philadelphia 76ers' AND wl_home = 'W' AND season_id = '22021'; 12.20833333 +How many games did the Denver Nuggets play that went to overtime in the 2016 season? SELECT COUNT(*) AS overtime_games FROM game WHERE (team_name_home = 'Denver Nuggets' OR team_name_away = 'Denver Nuggets') AND min > 240 AND season_id = '22016'; 3 +How many games did the Boston Celtics play that went to overtime in the 2016 season? SELECT COUNT(*) AS overtime_games FROM game WHERE (team_name_home = 'Boston Celtics' OR team_name_away = 'Boston Celtics') AND min > 240 AND season_id = '22016'; 3 +What's the highest number of points the Sacramento Kings scored in the paint in any game during the 2020 season? SELECT MAX(pts_paint) AS max_paint_points FROM ( SELECT o.pts_paint_home AS pts_paint FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Sacramento Kings' AND g.season_id = '22020' UNION ALL SELECT o.pts_paint_away AS pts_paint FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Sacramento Kings' AND g.season_id = '22020' ); 68 +How many times did the Toronto Raptors score more than 120 points but still lose the game? SELECT COUNT(*) AS high_scoring_losses FROM game WHERE ((team_name_home = 'Toronto Raptors' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Toronto Raptors' AND pts_away > 120 AND wl_away = 'L')); 27 +How many times did the Boston Celtics score more than 120 points but still lose the game? SELECT COUNT(*) AS high_scoring_losses FROM game WHERE ((team_name_home = 'Boston Celtics' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Boston Celtics' AND pts_away > 120 AND wl_away = 'L')); 92 +How many times did the Milwaukee Bucks score more than 120 points but still lose the game? SELECT COUNT(*) AS high_scoring_losses FROM game WHERE ((team_name_home = 'Milwaukee Bucks' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Milwaukee Bucks' AND pts_away > 120 AND wl_away = 'L')); 78 +How many times did the Detroit Pistons score more than 120 points but still lose the game? SELECT COUNT(*) AS high_scoring_losses FROM game WHERE ((team_name_home = 'Detroit Pistons' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Detroit Pistons' AND pts_away > 120 AND wl_away = 'L')); 128 +What is the average number of points scored by the Detroit Pistons in games where they had at least 15 second-chance points? SELECT AVG(pts) AS avg_points FROM ( SELECT g.pts_home AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Detroit Pistons' AND o.pts_2nd_chance_home >= 15 UNION ALL SELECT g.pts_away AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Detroit Pistons' AND o.pts_2nd_chance_away >= 15 ); 99.97317437 +What is the average number of points scored by the Oklahoma City Thunder in games where they had at least 15 second-chance points? SELECT AVG(pts) AS avg_points FROM ( SELECT g.pts_home AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND o.pts_2nd_chance_home >= 15 UNION ALL SELECT g.pts_away AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Oklahoma City Thunder' AND o.pts_2nd_chance_away >= 15 ); 107.3780761 +What is the average number of points scored by the Cleveland Cavaliers in games where they had at least 15 second-chance points? SELECT AVG(pts) AS avg_points FROM ( SELECT g.pts_home AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Cleveland Cavaliers' AND o.pts_2nd_chance_home >= 15 UNION ALL SELECT g.pts_away AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Cleveland Cavaliers' AND o.pts_2nd_chance_away >= 15 ); 100.0884831 +What is the average number of points scored by the Memphis Grizzlies in games where they had at least 15 second-chance points? SELECT AVG(pts) AS avg_points FROM ( SELECT g.pts_home AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Memphis Grizzlies' AND o.pts_2nd_chance_home >= 15 UNION ALL SELECT g.pts_away AS pts FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_away = 'Memphis Grizzlies' AND o.pts_2nd_chance_away >= 15 ); 103.8890815 +How many games did the Miami Heat win when they scored fewer points in the paint than their opponents? SELECT COUNT(*) AS wins_with_fewer_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE ((g.team_name_home = 'Miami Heat' AND g.wl_home = 'W' AND o.pts_paint_home < o.pts_paint_away) OR (g.team_name_away = 'Miami Heat' AND g.wl_away = 'W' AND o.pts_paint_away < o.pts_paint_home)); 528 +How many games did the Philadelphia 76ers win when they scored fewer points in the paint than their opponents? SELECT COUNT(*) AS wins_with_fewer_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE ((g.team_name_home = 'Philadelphia 76ers' AND g.wl_home = 'W' AND o.pts_paint_home < o.pts_paint_away) OR (g.team_name_away = 'Philadelphia 76ers' AND g.wl_away = 'W' AND o.pts_paint_away < o.pts_paint_home)); 415 +How many games did the Atlanta Hawks win when they scored fewer points in the paint than their opponents? SELECT COUNT(*) AS wins_with_fewer_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE ((g.team_name_home = 'Atlanta Hawks' AND g.wl_home = 'W' AND o.pts_paint_home < o.pts_paint_away) OR (g.team_name_away = 'Atlanta Hawks' AND g.wl_away = 'W' AND o.pts_paint_away < o.pts_paint_home)); 396 +How many games did the Washington Wizards win when they scored fewer points in the paint than their opponents? SELECT COUNT(*) AS wins_with_fewer_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE ((g.team_name_home = 'Washington Wizards' AND g.wl_home = 'W' AND o.pts_paint_home < o.pts_paint_away) OR (g.team_name_away = 'Washington Wizards' AND g.wl_away = 'W' AND o.pts_paint_away < o.pts_paint_home)); 352 +What's the highest number of blocks recorded by the Minnesota Timberwolves in any game? SELECT MAX(blocks) AS max_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Minnesota Timberwolves' UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Minnesota Timberwolves' ); 16 +What's the highest number of blocks recorded by the Oklahoma City Thunder in any game? SELECT MAX(blocks) AS max_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Oklahoma City Thunder' UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Oklahoma City Thunder' ); 17 +What's the highest number of blocks recorded by the Houston Rockets in any game? SELECT MAX(blocks) AS max_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Houston Rockets' UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Houston Rockets' ); 19 +What's the highest number of blocks recorded by the Los Angeles Lakers in any game? SELECT MAX(blocks) AS max_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Los Angeles Lakers' UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Los Angeles Lakers' ); 20 +What was the average free throw percentage for the Washington Wizards in games where they attempted at least 25 free throws? SELECT AVG(ft_pct) AS avg_ft_percentage FROM ( SELECT ft_pct_home AS ft_pct FROM game WHERE team_name_home = 'Washington Wizards' AND fta_home >= 25 UNION ALL SELECT ft_pct_away AS ft_pct FROM game WHERE team_name_away = 'Washington Wizards' AND fta_away >= 25 ); 0.7497743491 +What was the average free throw percentage for the Detroit Pistons in games where they attempted at least 25 free throws? SELECT AVG(ft_pct) AS avg_ft_percentage FROM ( SELECT ft_pct_home AS ft_pct FROM game WHERE team_name_home = 'Detroit Pistons' AND fta_home >= 25 UNION ALL SELECT ft_pct_away AS ft_pct FROM game WHERE team_name_away = 'Detroit Pistons' AND fta_away >= 25 ); 0.7426415293 +What was the average free throw percentage for the Milwaukee Bucks in games where they attempted at least 25 free throws? SELECT AVG(ft_pct) AS avg_ft_percentage FROM ( SELECT ft_pct_home AS ft_pct FROM game WHERE team_name_home = 'Milwaukee Bucks' AND fta_home >= 25 UNION ALL SELECT ft_pct_away AS ft_pct FROM game WHERE team_name_away = 'Milwaukee Bucks' AND fta_away >= 25 ); 0.7566056099 +What was the average free throw percentage for the Golden State Warriors in games where they attempted at least 25 free throws? SELECT AVG(ft_pct) AS avg_ft_percentage FROM ( SELECT ft_pct_home AS ft_pct FROM game WHERE team_name_home = 'Golden State Warriors' AND fta_home >= 25 UNION ALL SELECT ft_pct_away AS ft_pct FROM game WHERE team_name_away = 'Golden State Warriors' AND fta_away >= 25 ); 0.754899115 +How many games did the Washington Wizards play in the 2010 season where both teams scored more than 100 points? SELECT COUNT(*) AS high_scoring_games FROM game WHERE (team_name_home = 'Washington Wizards' OR team_name_away = 'Washington Wizards') AND pts_home > 100 AND pts_away > 100 AND season_id = '22010'; 23 +How many games did the Oklahoma City Thunder play in the 2010 season where both teams scored more than 100 points? SELECT COUNT(*) AS high_scoring_games FROM game WHERE (team_name_home = 'Oklahoma City Thunder' OR team_name_away = 'Oklahoma City Thunder') AND pts_home > 100 AND pts_away > 100 AND season_id = '22010'; 36 +How many games did the Phoenix Suns play in the 2010 season where both teams scored more than 100 points? SELECT COUNT(*) AS high_scoring_games FROM game WHERE (team_name_home = 'Phoenix Suns' OR team_name_away = 'Phoenix Suns') AND pts_home > 100 AND pts_away > 100 AND season_id = '22010'; 36 +What is the total number of points scored by the Milwaukee Bucks in games where they made more than 15 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Milwaukee Bucks' AND fg3m_home > 15 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Milwaukee Bucks' AND fg3m_away > 15 ) AS combined_games 19453 +What is the total number of points scored by the Memphis Grizzlies in games where they made more than 15 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Memphis Grizzlies' AND fg3m_home > 15 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Memphis Grizzlies' AND fg3m_away > 15 ) AS combined_games 7559 +What is the total number of points scored by the Brooklyn Nets in games where they made more than 15 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Brooklyn Nets' AND fg3m_home > 15 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Brooklyn Nets' AND fg3m_away > 15 ) AS combined_games 16458 +What is the total number of points scored by the Portland Trail Blazers in games where they made more than 15 three-pointers? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Portland Trail Blazers' AND fg3m_home > 15 UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Portland Trail Blazers' AND fg3m_away > 15 ) AS combined_games 17779 +How many total rebounds did the Charlotte Hornets get in games where they scored at least 110 points? SELECT SUM(rebounds) AS total_rebounds FROM ( SELECT reb_home AS rebounds FROM game WHERE team_name_home = 'Charlotte Hornets' AND pts_home >= 110 UNION ALL SELECT reb_away AS rebounds FROM game WHERE team_name_away = 'Charlotte Hornets' AND pts_away >= 110 ) AS combined_games 25073 +How many total rebounds did the Los Angeles Lakers get in games where they scored at least 110 points? SELECT SUM(rebounds) AS total_rebounds FROM ( SELECT reb_home AS rebounds FROM game WHERE team_name_home = 'Los Angeles Lakers' AND pts_home >= 110 UNION ALL SELECT reb_away AS rebounds FROM game WHERE team_name_away = 'Los Angeles Lakers' AND pts_away >= 110 ) AS combined_games 65281 +How many total rebounds did the Cleveland Cavaliers get in games where they scored at least 110 points? SELECT SUM(rebounds) AS total_rebounds FROM ( SELECT reb_home AS rebounds FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND pts_home >= 110 UNION ALL SELECT reb_away AS rebounds FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND pts_away >= 110 ) AS combined_games 37890 +What is the highest number of steals the Orlando Magic recorded in a single game during the 2019 season? SELECT MAX(steals) AS max_steals FROM ( SELECT stl_home AS steals FROM game WHERE team_name_home = 'Orlando Magic' AND season_id = '22019' UNION ALL SELECT stl_away AS steals FROM game WHERE team_name_away = 'Orlando Magic' AND season_id = '22019' ) AS all_games 18 +What is the total number of points the Phoenix Suns scored in the paint during the 2020 season? SELECT SUM(paint_points) AS total_paint_points FROM ( SELECT os.pts_paint_home AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.season_id = '22020' UNION ALL SELECT os.pts_paint_away AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Phoenix Suns' AND g.season_id = '22020' ) AS all_games 2960 +What is the total number of points the Atlanta Hawks scored in the paint during the 2020 season? SELECT SUM(paint_points) AS total_paint_points FROM ( SELECT os.pts_paint_home AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Atlanta Hawks' AND g.season_id = '22020' UNION ALL SELECT os.pts_paint_away AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Atlanta Hawks' AND g.season_id = '22020' ) AS all_games 2914 +What is the total number of points the Toronto Raptors scored in the paint during the 2020 season? SELECT SUM(paint_points) AS total_paint_points FROM ( SELECT os.pts_paint_home AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Toronto Raptors' AND g.season_id = '22020' UNION ALL SELECT os.pts_paint_away AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Toronto Raptors' AND g.season_id = '22020' ) AS all_games 2416 +How many games did the Indiana Pacers play where they had more than 25 assists and won? SELECT COUNT(*) AS total_games FROM ( SELECT game_id FROM game WHERE team_name_home = 'Indiana Pacers' AND ast_home > 25 AND wl_home = 'W' UNION ALL SELECT game_id FROM game WHERE team_name_away = 'Indiana Pacers' AND ast_away > 25 AND wl_away = 'W' ) AS winning_games_with_assists 718 +How many games did the San Antonio Spurs play where they had more than 25 assists and won? SELECT COUNT(*) AS total_games FROM ( SELECT game_id FROM game WHERE team_name_home = 'San Antonio Spurs' AND ast_home > 25 AND wl_home = 'W' UNION ALL SELECT game_id FROM game WHERE team_name_away = 'San Antonio Spurs' AND ast_away > 25 AND wl_away = 'W' ) AS winning_games_with_assists 950 +How many games did the Sacramento Kings play where they had more than 25 assists and won? SELECT COUNT(*) AS total_games FROM ( SELECT game_id FROM game WHERE team_name_home = 'Sacramento Kings' AND ast_home > 25 AND wl_home = 'W' UNION ALL SELECT game_id FROM game WHERE team_name_away = 'Sacramento Kings' AND ast_away > 25 AND wl_away = 'W' ) AS winning_games_with_assists 583 +How many games did the Detroit Pistons play where they had more than 25 assists and won? SELECT COUNT(*) AS total_games FROM ( SELECT game_id FROM game WHERE team_name_home = 'Detroit Pistons' AND ast_home > 25 AND wl_home = 'W' UNION ALL SELECT game_id FROM game WHERE team_name_away = 'Detroit Pistons' AND ast_away > 25 AND wl_away = 'W' ) AS winning_games_with_assists 667 +What was the average number of fast break points scored by the Golden State Warriors in games they lost during the 2017 season? SELECT AVG(fastbreak_points) AS avg_fastbreak_points FROM ( SELECT os.pts_fb_home AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Golden State Warriors' AND g.wl_home = 'L' AND g.season_id = '22017' UNION ALL SELECT os.pts_fb_away AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Golden State Warriors' AND g.wl_away = 'L' AND g.season_id = '22017' ) AS losing_games 13.5 +What was the average number of fast break points scored by the Phoenix Suns in games they lost during the 2017 season? SELECT AVG(fastbreak_points) AS avg_fastbreak_points FROM ( SELECT os.pts_fb_home AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'L' AND g.season_id = '22017' UNION ALL SELECT os.pts_fb_away AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Phoenix Suns' AND g.wl_away = 'L' AND g.season_id = '22017' ) AS losing_games 14.02 +What was the average number of fast break points scored by the Utah Jazz in games they lost during the 2017 season? SELECT AVG(fastbreak_points) AS avg_fastbreak_points FROM ( SELECT os.pts_fb_home AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Utah Jazz' AND g.wl_home = 'L' AND g.season_id = '22017' UNION ALL SELECT os.pts_fb_away AS fastbreak_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Utah Jazz' AND g.wl_away = 'L' AND g.season_id = '22017' ) AS losing_games 8.678571429 +What is the total number of points scored by the Chicago Bulls in fourth quarters during the 2021 season? SELECT SUM(points_off_turnovers) AS total_points_off_turnovers FROM ( SELECT os.pts_off_to_home AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Chicago Bulls' AND g.season_id = '22021' UNION ALL SELECT os.pts_off_to_away AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Chicago Bulls' AND g.season_id = '22021' ) AS all_games 1054 +What is the total number of points scored by the Orlando Magic in fourth quarters during the 2021 season? SELECT SUM(points_off_turnovers) AS total_points_off_turnovers FROM ( SELECT os.pts_off_to_home AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.season_id = '22021' UNION ALL SELECT os.pts_off_to_away AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Orlando Magic' AND g.season_id = '22021' ) AS all_games 1122 +What is the total number of points scored by the Atlanta Hawks in fourth quarters during the 2021 season? SELECT SUM(points_off_turnovers) AS total_points_off_turnovers FROM ( SELECT os.pts_off_to_home AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Atlanta Hawks' AND g.season_id = '22021' UNION ALL SELECT os.pts_off_to_away AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Atlanta Hawks' AND g.season_id = '22021' ) AS all_games 1068 +What is the total number of points scored by the Golden State Warriors in fourth quarters during the 2021 season? SELECT SUM(points_off_turnovers) AS total_points_off_turnovers FROM ( SELECT os.pts_off_to_home AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Golden State Warriors' AND g.season_id = '22021' UNION ALL SELECT os.pts_off_to_away AS points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Golden State Warriors' AND g.season_id = '22021' ) AS all_games 1228 +What is the average shooting percentage of the Houston Rockets in games where they scored at least 100 points during the 2019 season? SELECT AVG(fg_pct) AS avg_shooting_percentage FROM ( SELECT fg_pct_home AS fg_pct FROM game WHERE team_name_home = 'Houston Rockets' AND pts_home >= 100 AND season_id = '22019' UNION ALL SELECT fg_pct_away AS fg_pct FROM game WHERE team_name_away = 'Houston Rockets' AND pts_away >= 100 AND season_id = '22019' ) AS high_scoring_games 0.4548656716 +How many total blocks did the Golden State Warriors record in games where they had more than 10 turnovers? SELECT SUM(blocks) AS total_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Golden State Warriors' AND tov_home > 10 UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Golden State Warriors' AND tov_away > 10 ) AS turnover_games 15563 +How many total blocks did the Phoenix Suns record in games where they had more than 10 turnovers? SELECT SUM(blocks) AS total_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Phoenix Suns' AND tov_home > 10 UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Phoenix Suns' AND tov_away > 10 ) AS turnover_games 14272 +How many total blocks did the Cleveland Cavaliers record in games where they had more than 10 turnovers? SELECT SUM(blocks) AS total_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND tov_home > 10 UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND tov_away > 10 ) AS turnover_games 14149 +How many total blocks did the Indiana Pacers record in games where they had more than 10 turnovers? SELECT SUM(blocks) AS total_blocks FROM ( SELECT blk_home AS blocks FROM game WHERE team_name_home = 'Indiana Pacers' AND tov_home > 10 UNION ALL SELECT blk_away AS blocks FROM game WHERE team_name_away = 'Indiana Pacers' AND tov_away > 10 ) AS turnover_games 14375 +What was the average number of rebounds per game for the Philadelphia 76ers in 1989? SELECT AVG(rebounds) AS avg_rebounds FROM ( SELECT reb_home AS rebounds FROM game WHERE team_name_home = 'Philadelphia 76ers' AND season_id = '21989' UNION ALL SELECT reb_away AS rebounds FROM game WHERE team_name_away = 'Philadelphia 76ers' AND season_id = '21989' ) AS all_games 42.8902439 +What was the average number of rebounds per game for the Indiana Pacers in 1989? SELECT AVG(rebounds) AS avg_rebounds FROM ( SELECT reb_home AS rebounds FROM game WHERE team_name_home = 'Indiana Pacers' AND season_id = '21989' UNION ALL SELECT reb_away AS rebounds FROM game WHERE team_name_away = 'Indiana Pacers' AND season_id = '21989' ) AS all_games 40.58536585 +What was the total number of points scored by the Orlando Magic in the 2014 season? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Orlando Magic' AND season_id = '22014' UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Orlando Magic' AND season_id = '22014' ) AS season_games 7847 +What was the total number of points scored by the Boston Celtics in the 2014 season? SELECT SUM(points) AS total_points FROM ( SELECT pts_home AS points FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '22014' UNION ALL SELECT pts_away AS points FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22014' ) AS season_games 8312 +How many points did Michael Jordan's Orlando Magic score in the paint during the 1997 season? SELECT SUM(paint_points) AS total_paint_points FROM ( SELECT os.pts_paint_home AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.season_id = '21997' UNION ALL SELECT os.pts_paint_away AS paint_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Orlando Magic' AND g.season_id = '21997' ) AS all_games 2808 +What was the average margin of victory for the Brooklyn Nets during the 2013 NBA season? SELECT AVG(victory_margin) AS avg_victory_margin FROM ( SELECT plus_minus_home AS victory_margin FROM game WHERE team_name_home = 'Brooklyn Nets' AND wl_home = 'W' AND season_id = '22013' UNION ALL SELECT plus_minus_away AS victory_margin FROM game WHERE team_name_away = 'Brooklyn Nets' AND wl_away = 'W' AND season_id = '22013' ) AS victories 9.590909091 +What was the average margin of victory for the Phoenix Suns during the 2013 NBA season? SELECT AVG(victory_margin) AS avg_victory_margin FROM ( SELECT plus_minus_home AS victory_margin FROM game WHERE team_name_home = 'Phoenix Suns' AND wl_home = 'W' AND season_id = '22013' UNION ALL SELECT plus_minus_away AS victory_margin FROM game WHERE team_name_away = 'Phoenix Suns' AND wl_away = 'W' AND season_id = '22013' ) AS victories 10.25 +What was the average margin of victory for the Cleveland Cavaliers during the 2013 NBA season? SELECT AVG(victory_margin) AS avg_victory_margin FROM ( SELECT plus_minus_home AS victory_margin FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND wl_home = 'W' AND season_id = '22013' UNION ALL SELECT plus_minus_away AS victory_margin FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND wl_away = 'W' AND season_id = '22013' ) AS victories 9.848484848 +How many times have the Memphis Grizzlies scored more than 120 points in a game but still lost? SELECT COUNT(*) AS high_scoring_losses FROM ( SELECT game_id FROM game WHERE (team_name_home = 'Memphis Grizzlies' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Memphis Grizzlies' AND pts_away > 120 AND wl_away = 'L') ) AS games 25 +How many times have the Charlotte Hornets scored more than 120 points in a game but still lost? SELECT COUNT(*) AS high_scoring_losses FROM ( SELECT game_id FROM game WHERE (team_name_home = 'Charlotte Hornets' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Charlotte Hornets' AND pts_away > 120 AND wl_away = 'L') ) AS games 33 +How many times have the Miami Heat scored more than 120 points in a game but still lost? SELECT COUNT(*) AS high_scoring_losses FROM ( SELECT game_id FROM game WHERE (team_name_home = 'Miami Heat' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Miami Heat' AND pts_away > 120 AND wl_away = 'L') ) AS games 19 +How many times have the Toronto Raptors scored more than 120 points in a game but still lost? SELECT COUNT(*) AS high_scoring_losses FROM ( SELECT game_id FROM game WHERE (team_name_home = 'Toronto Raptors' AND pts_home > 120 AND wl_home = 'L') OR (team_name_away = 'Toronto Raptors' AND pts_away > 120 AND wl_away = 'L') ) AS games 27 +What was the highest number of points scored by the Phoenix Suns in a home game during the 2020 season? SELECT MAX(pts_home) AS max_points, team_name_home, season_id FROM game WHERE team_name_home = 'Phoenix Suns' AND season_id = '22020' GROUP BY team_name_home, season_id; 140.0 | Phoenix Suns | 22020 +How many fastbreak points did the Indiana Pacers score at home in their highest scoring game of the 2019 season? SELECT o.pts_fb_home AS fastbreak_points, g.pts_home AS total_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Indiana Pacers' AND g.season_id = '22019' ORDER BY g.pts_home DESC LIMIT 1; 13 | 127.0 +How many fastbreak points did the Utah Jazz score at home in their highest scoring game of the 2019 season? SELECT o.pts_fb_home AS fastbreak_points, g.pts_home AS total_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Utah Jazz' AND g.season_id = '22019' ORDER BY g.pts_home DESC LIMIT 1; 5 | 129.0 +What is the average number of points scored in the paint by the Indiana Pacers at home in games they won versus games they lost? SELECT (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Indiana Pacers' AND g.wl_home = 'W') AS avg_paint_points_wins, (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Indiana Pacers' AND g.wl_home = 'L') AS avg_paint_points_losses FROM game LIMIT 1; 39.110743801652895 | 39.765060240963855 +What is the average number of points scored in the paint by the San Antonio Spurs at home in games they won versus games they lost? SELECT (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.wl_home = 'W') AS avg_paint_points_wins, (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.wl_home = 'L') AS avg_paint_points_losses FROM game LIMIT 1; 41.113233287858115 | 42.29962546816479 +What is the average number of points scored in the paint by the Dallas Mavericks at home in games they won versus games they lost? SELECT (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Dallas Mavericks' AND g.wl_home = 'W') AS avg_paint_points_wins, (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Dallas Mavericks' AND g.wl_home = 'L') AS avg_paint_points_losses FROM game LIMIT 1; 40.436708860759495 | 41.01457725947522 +What is the average number of points scored in the paint by the Milwaukee Bucks at home in games they won versus games they lost? SELECT (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Milwaukee Bucks' AND g.wl_home = 'W') AS avg_paint_points_wins, (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Milwaukee Bucks' AND g.wl_home = 'L') AS avg_paint_points_losses FROM game LIMIT 1; 41.95454545454545 | 40.8578811369509 +What was the average free throw percentage for the Boston Celtics in games where they scored more than 100 points at home during the 2018 season? SELECT AVG(ft_pct_home) AS avg_ft_percentage FROM game WHERE team_name_home = 'Boston Celtics' AND pts_home > 100 AND season_id = '22018'; 0.8231351351 +What was the average free throw percentage for the Charlotte Hornets in games where they scored more than 100 points at home during the 2018 season? SELECT AVG(ft_pct_home) AS avg_ft_percentage FROM game WHERE team_name_home = 'Charlotte Hornets' AND pts_home > 100 AND season_id = '22018'; 0.8074285714 +In which season did the Brooklyn Nets have the highest average points in the paint at home? SELECT g.season_id, AVG(o.pts_paint_home) AS avg_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Brooklyn Nets' GROUP BY g.season_id ORDER BY avg_paint_points DESC LIMIT 1; 22018 | 53.0625 +In which season did the Cleveland Cavaliers have the highest average points in the paint at home? SELECT g.season_id, AVG(o.pts_paint_home) AS avg_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Cleveland Cavaliers' GROUP BY g.season_id ORDER BY avg_paint_points DESC LIMIT 1; 22020 | 54.13793103448276 +In which season did the Philadelphia 76ers have the highest average points in the paint at home? SELECT g.season_id, AVG(o.pts_paint_home) AS avg_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Philadelphia 76ers' GROUP BY g.season_id ORDER BY avg_paint_points DESC LIMIT 1; 42018 | 53.6 +In which season did the Boston Celtics have the highest average points in the paint at home? SELECT g.season_id, AVG(o.pts_paint_home) AS avg_paint_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Boston Celtics' GROUP BY g.season_id ORDER BY avg_paint_points DESC LIMIT 1; 12022 | 58.0 +What's the total number of blocks the Miami Heat recorded at home in the 2019 season compared to the 2020 season? SELECT (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22019') AS blocks_2019, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22020') AS blocks_2020, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22020') - (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '22019') AS blocks_difference FROM game LIMIT 1; 164.0 | 151.0 | -13.0 +What's the total number of blocks the Memphis Grizzlies recorded at home in the 2019 season compared to the 2020 season? SELECT (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22019') AS blocks_2019, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22020') AS blocks_2020, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22020') - (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22019') AS blocks_difference FROM game LIMIT 1; 214.0 | 189.0 | -25.0 +What's the total number of blocks the Chicago Bulls recorded at home in the 2019 season compared to the 2020 season? SELECT (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Chicago Bulls' AND season_id = '22019') AS blocks_2019, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Chicago Bulls' AND season_id = '22020') AS blocks_2020, (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Chicago Bulls' AND season_id = '22020') - (SELECT SUM(blk_home) FROM game WHERE team_name_home = 'Chicago Bulls' AND season_id = '22019') AS blocks_difference FROM game LIMIT 1; 151.0 | 146.0 | -5.0 +Which opponent did the Memphis Grizzlies have the most lead changes against in a single home game? SELECT o.team_city_away AS opponent, o.lead_changes FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Memphis Grizzlies' ORDER BY o.lead_changes DESC LIMIT 1; Memphis | 22 +Which opponent did the Washington Wizards have the most lead changes against in a single home game? SELECT o.team_city_away AS opponent, o.lead_changes FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Washington Wizards' ORDER BY o.lead_changes DESC LIMIT 1; Washington | 26 +Which opponent did the Sacramento Kings have the most lead changes against in a single home game? SELECT o.team_city_away AS opponent, o.lead_changes FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Sacramento Kings' ORDER BY o.lead_changes DESC LIMIT 1; Los Angeles | 27 +What was the shooting efficiency (field goal percentage) difference between the Atlanta Hawks and their opponents in home games they won during the 2019 season? SELECT AVG(fg_pct_home - fg_pct_away) AS fg_pct_differential FROM game WHERE team_name_home = 'Atlanta Hawks' AND wl_home = 'W' AND season_id = '22019'; 0.05 +What was the shooting efficiency (field goal percentage) difference between the Oklahoma City Thunder and their opponents in home games they won during the 2019 season? SELECT AVG(fg_pct_home - fg_pct_away) AS fg_pct_differential FROM game WHERE team_name_home = 'Oklahoma City Thunder' AND wl_home = 'W' AND season_id = '22019'; 0.0677826087 +In games where the Memphis Grizzlies scored more than 110 points at home, what was their average rebounding advantage over opponents? SELECT AVG(reb_home - reb_away) AS avg_rebound_advantage FROM game WHERE team_name_home = 'Memphis Grizzlies' AND pts_home > 110; 4.561946903 +In games where the Charlotte Hornets scored more than 110 points at home, what was their average rebounding advantage over opponents? SELECT AVG(reb_home - reb_away) AS avg_rebound_advantage FROM game WHERE team_name_home = 'Charlotte Hornets' AND pts_home > 110; 2.312280702 +How many points did the Milwaukee Bucks score from fastbreaks and points off turnovers combined in their highest scoring home game of the 2017 season? SELECT (o.pts_fb_home + o.pts_off_to_home) AS transition_points, g.pts_home FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Milwaukee Bucks' AND g.season_id = '22017' ORDER BY g.pts_home DESC LIMIT 1; 34 | 123.0 +How many points did the Phoenix Suns score from fastbreaks and points off turnovers combined in their highest scoring home game of the 2017 season? SELECT (o.pts_fb_home + o.pts_off_to_home) AS transition_points, g.pts_home FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.season_id = '22017' ORDER BY g.pts_home DESC LIMIT 1; 33 | 130.0 +In which season did the Atlanta Hawks have the best home court free throw shooting percentage in games they lost? SELECT season_id, AVG(ft_pct_home) AS avg_ft_pct FROM game WHERE team_name_home = 'Atlanta Hawks' AND wl_home = 'L' GROUP BY season_id ORDER BY avg_ft_pct DESC LIMIT 1; 42013 | 0.9375 +In which season did the Orlando Magic have the best home court free throw shooting percentage in games they lost? SELECT season_id, AVG(ft_pct_home) AS avg_ft_pct FROM game WHERE team_name_home = 'Orlando Magic' AND wl_home = 'L' GROUP BY season_id ORDER BY avg_ft_pct DESC LIMIT 1; 12020 | 0.917 +In which season did the Cleveland Cavaliers have the best home court free throw shooting percentage in games they lost? SELECT season_id, AVG(ft_pct_home) AS avg_ft_pct FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND wl_home = 'L' GROUP BY season_id ORDER BY avg_ft_pct DESC LIMIT 1; 41984 | 0.882 +What is the average number of points in the paint scored by the Phoenix Suns at home in the first half of the 2018 season compared to the second half? SELECT (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.season_id = '22018' AND CAST(strftime('%m', g.game_date) AS INTEGER) <= 6) AS first_half_avg, (SELECT AVG(o.pts_paint_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.season_id = '22018' AND CAST(strftime('%m', g.game_date) AS INTEGER) > 6) AS second_half_avg FROM game LIMIT 1; 51.523809523809526 | 49.1764705882353 +What was the largest lead held by the Toronto Raptors in any game where they eventually lost at home? SELECT o.largest_lead_home AS largest_lead, g.game_date FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Toronto Raptors' AND g.wl_home = 'L' ORDER BY o.largest_lead_home DESC LIMIT 1; 40 | 2020-08-07 00:00:00 +What was the largest lead held by the Cleveland Cavaliers in any game where they eventually lost at home? SELECT o.largest_lead_home AS largest_lead, g.game_date FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Cleveland Cavaliers' AND g.wl_home = 'L' ORDER BY o.largest_lead_home DESC LIMIT 1; 45 | 2020-02-09 00:00:00 +What was the largest lead held by the Dallas Mavericks in any game where they eventually lost at home? SELECT o.largest_lead_home AS largest_lead, g.game_date FROM other_stats o JOIN game g ON o.game_id = g.game_id WHERE g.team_name_home = 'Dallas Mavericks' AND g.wl_home = 'L' ORDER BY o.largest_lead_home DESC LIMIT 1; 39 | 2016-02-05 00:00:00 +What's the combined assist-to-turnover ratio for the Boston Celtics in home games during their best winning streak? WITH streaks AS ( SELECT g.game_id, g.ast_home, o.total_turnovers_home, ROW_NUMBER() OVER (ORDER BY g.game_date) - ROW_NUMBER() OVER (PARTITION BY g.wl_home ORDER BY g.game_date) AS streak_id FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Boston Celtics' AND g.wl_home = 'W' ) SELECT SUM(ast_home) / CASE WHEN SUM(total_turnovers_home) = 0 THEN 1 ELSE SUM(total_turnovers_home) END AS assist_turnover_ratio FROM streaks GROUP BY streak_id ORDER BY COUNT(*) DESC, assist_turnover_ratio DESC LIMIT 1; 1.662931224 +What's the combined assist-to-turnover ratio for the Oklahoma City Thunder in home games during their best winning streak? WITH streaks AS ( SELECT g.game_id, g.ast_home, o.total_turnovers_home, ROW_NUMBER() OVER (ORDER BY g.game_date) - ROW_NUMBER() OVER (PARTITION BY g.wl_home ORDER BY g.game_date) AS streak_id FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND g.wl_home = 'W' ) SELECT SUM(ast_home) / CASE WHEN SUM(total_turnovers_home) = 0 THEN 1 ELSE SUM(total_turnovers_home) END AS assist_turnover_ratio FROM streaks GROUP BY streak_id ORDER BY COUNT(*) DESC, assist_turnover_ratio DESC LIMIT 1; 1.519992121 +What's the combined assist-to-turnover ratio for the Portland Trail Blazers in home games during their best winning streak? WITH streaks AS ( SELECT g.game_id, g.ast_home, o.total_turnovers_home, ROW_NUMBER() OVER (ORDER BY g.game_date) - ROW_NUMBER() OVER (PARTITION BY g.wl_home ORDER BY g.game_date) AS streak_id FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Portland Trail Blazers' AND g.wl_home = 'W' ) SELECT SUM(ast_home) / CASE WHEN SUM(total_turnovers_home) = 0 THEN 1 ELSE SUM(total_turnovers_home) END AS assist_turnover_ratio FROM streaks GROUP BY streak_id ORDER BY COUNT(*) DESC, assist_turnover_ratio DESC LIMIT 1; 1.73976718 +In games where the Atlanta Hawks outscored their opponents in fastbreak points at home, what was their win percentage? SELECT COUNT(CASE WHEN g.wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Atlanta Hawks' AND o.pts_fb_home > o.pts_fb_away; 55.36105033 +In games where the Oklahoma City Thunder outscored their opponents in fastbreak points at home, what was their win percentage? SELECT COUNT(CASE WHEN g.wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND o.pts_fb_home > o.pts_fb_away; 63.33333333 +In games where the Portland Trail Blazers outscored their opponents in fastbreak points at home, what was their win percentage? SELECT COUNT(CASE WHEN g.wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Portland Trail Blazers' AND o.pts_fb_home > o.pts_fb_away; 65.30612245 +What was the average points per game for the Denver Nuggets in home games where they attempted more three-pointers than their season average? WITH season_avg AS ( SELECT AVG(fg3a_home) AS avg_3pa FROM game WHERE team_name_home = 'Denver Nuggets' AND season_id = '22018' ) SELECT AVG(g.pts_home) AS avg_points FROM game g, season_avg s WHERE g.team_name_home = 'Denver Nuggets' AND g.season_id = '22018' AND g.fg3a_home > s.avg_3pa; 115.7142857 +What was the average points per game for the Charlotte Hornets in home games where they attempted more three-pointers than their season average? WITH season_avg AS ( SELECT AVG(fg3a_home) AS avg_3pa FROM game WHERE team_name_home = 'Charlotte Hornets' AND season_id = '22018' ) SELECT AVG(g.pts_home) AS avg_points FROM game g, season_avg s WHERE g.team_name_home = 'Charlotte Hornets' AND g.season_id = '22018' AND g.fg3a_home > s.avg_3pa; 113.7647059 +What was the average points per game for the Orlando Magic in home games where they attempted more three-pointers than their season average? WITH season_avg AS ( SELECT AVG(fg3a_home) AS avg_3pa FROM game WHERE team_name_home = 'Orlando Magic' AND season_id = '22018' ) SELECT AVG(g.pts_home) AS avg_points FROM game g, season_avg s WHERE g.team_name_home = 'Orlando Magic' AND g.season_id = '22018' AND g.fg3a_home > s.avg_3pa; 113.1578947 +What was the difference in three-point shooting volume (attempts) between the Los Angeles Lakers and their opponents in home games during their record-breaking 2016 season? SELECT AVG(fg3a_home - fg3a_away) AS three_point_attempt_diff FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22016'; -1.170731707 +What was the difference in three-point shooting volume (attempts) between the Boston Celtics and their opponents in home games during their record-breaking 2016 season? SELECT AVG(fg3a_home - fg3a_away) AS three_point_attempt_diff FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '22016'; 6.073170732 +What was the difference in three-point shooting volume (attempts) between the Detroit Pistons and their opponents in home games during their record-breaking 2016 season? SELECT AVG(fg3a_home - fg3a_away) AS three_point_attempt_diff FROM game WHERE team_name_home = 'Detroit Pistons' AND season_id = '22016'; -2.048780488 +In games where the Phoenix Suns recorded more than 10 steals at home, what was their win percentage during the 1998 season? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Phoenix Suns' AND stl_home > 10 AND season_id = '21998'; 50 +In games where the New York Knicks recorded more than 10 steals at home, what was their win percentage during the 1998 season? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'New York Knicks' AND stl_home > 10 AND season_id = '21998'; 100 +In games where the Atlanta Hawks recorded more than 10 steals at home, what was their win percentage during the 1998 season? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Atlanta Hawks' AND stl_home > 10 AND season_id = '21998'; 100 +What was the average points scored by the New York Knicks in games where they had a higher field goal percentage than their opponent but still lost at home? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'New York Knicks' AND fg_pct_home > fg_pct_away AND wl_home = 'L'; 99.52121212 +What was the average points scored by the Atlanta Hawks in games where they had a higher field goal percentage than their opponent but still lost at home? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Atlanta Hawks' AND fg_pct_home > fg_pct_away AND wl_home = 'L'; 101.3474576 +What was the average points scored by the Toronto Raptors in games where they had a higher field goal percentage than their opponent but still lost at home? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Toronto Raptors' AND fg_pct_home > fg_pct_away AND wl_home = 'L'; 99.39805825 +What was the average points scored by the Chicago Bulls in games where they had a higher field goal percentage than their opponent but still lost at home? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Chicago Bulls' AND fg_pct_home > fg_pct_away AND wl_home = 'L'; 98.77272727 +What was the average points per game the Orlando Magic scored at home in games where they grabbed more offensive rebounds than their opponents during the 2018 season? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Orlando Magic' AND oreb_home > oreb_away AND season_id = '22018'; 108.2727273 +What was the average points per game the Milwaukee Bucks scored at home in games where they grabbed more offensive rebounds than their opponents during the 2018 season? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Milwaukee Bucks' AND oreb_home > oreb_away AND season_id = '22018'; 118.7142857 +What was the average points per game the Chicago Bulls scored at home in games where they grabbed more offensive rebounds than their opponents during the 2018 season? SELECT AVG(pts_home) AS avg_points FROM game WHERE team_name_home = 'Chicago Bulls' AND oreb_home > oreb_away AND season_id = '22018'; 106.6 +What was the average margin of victory for the New York Knicks in home games where they scored more than 100 points and allowed fewer than 90 points? SELECT AVG(pts_home - pts_away) AS avg_victory_margin FROM game WHERE team_name_home = 'New York Knicks' AND pts_home > 100 AND pts_away < 90; 24.33793103 +What was the average margin of victory for the Portland Trail Blazers in home games where they scored more than 100 points and allowed fewer than 90 points? SELECT AVG(pts_home - pts_away) AS avg_victory_margin FROM game WHERE team_name_home = 'Portland Trail Blazers' AND pts_home > 100 AND pts_away < 90; 26.78832117 +What was the average margin of victory for the Golden State Warriors in home games where they scored more than 100 points and allowed fewer than 90 points? SELECT AVG(pts_home - pts_away) AS avg_victory_margin FROM game WHERE team_name_home = 'Golden State Warriors' AND pts_home > 100 AND pts_away < 90; 25.47252747 +What was the average margin of victory for the Toronto Raptors in home games where they scored more than 100 points and allowed fewer than 90 points? SELECT AVG(pts_home - pts_away) AS avg_victory_margin FROM game WHERE team_name_home = 'Toronto Raptors' AND pts_home > 100 AND pts_away < 90; 23.72857143 +In which season did the Memphis Grizzlies have the highest ratio of assists to turnovers in home games? SELECT season_id, SUM(ast_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS assist_to_turnover_ratio FROM game WHERE team_name_home = 'Memphis Grizzlies' GROUP BY season_id ORDER BY assist_to_turnover_ratio DESC LIMIT 1; 42020 | 2.7222222222222223 +In which season did the Minnesota Timberwolves have the highest ratio of assists to turnovers in home games? SELECT season_id, SUM(ast_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS assist_to_turnover_ratio FROM game WHERE team_name_home = 'Minnesota Timberwolves' GROUP BY season_id ORDER BY assist_to_turnover_ratio DESC LIMIT 1; 41996 | 3.75 +In which season did the Sacramento Kings have the highest ratio of assists to turnovers in home games? SELECT season_id, SUM(ast_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS assist_to_turnover_ratio FROM game WHERE team_name_home = 'Sacramento Kings' GROUP BY season_id ORDER BY assist_to_turnover_ratio DESC LIMIT 1; 22022 | 2.142056074766355 +In which season did the Utah Jazz have the highest ratio of assists to turnovers in home games? SELECT season_id, SUM(ast_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS assist_to_turnover_ratio FROM game WHERE team_name_home = 'Utah Jazz' GROUP BY season_id ORDER BY assist_to_turnover_ratio DESC LIMIT 1; 21984 | 92.08333333333333 +Which opponent did the Oklahoma City Thunder have the most fastbreak points against in a home game during the 2019 season? SELECT g.team_name_away, o.pts_fb_home AS fastbreak_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND g.season_id = '22019' ORDER BY o.pts_fb_home DESC LIMIT 1; Memphis Grizzlies | 23 +Which opponent did the Washington Wizards have the most fastbreak points against in a home game during the 2019 season? SELECT g.team_name_away, o.pts_fb_home AS fastbreak_points FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Washington Wizards' AND g.season_id = '22019' ORDER BY o.pts_fb_home DESC LIMIT 1; Houston Rockets | 21 +What was the difference in three-point shooting accuracy between the Orlando Magic and their opponents in home games during the 2018 season? SELECT AVG(fg3_pct_home - fg3_pct_away) AS three_pt_percentage_diff FROM game WHERE team_name_home = 'Orlando Magic' AND season_id = '22018'; 0.00143902439 +What was the difference in three-point shooting accuracy between the Los Angeles Lakers and their opponents in home games during the 2018 season? SELECT AVG(fg3_pct_home - fg3_pct_away) AS three_pt_percentage_diff FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22018'; -0.01895121951 +What was the average number of lead changes in games where the Detroit Pistons won at home by less than 5 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Detroit Pistons' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 5; 8.487179487 +What was the average number of lead changes in games where the Denver Nuggets won at home by less than 5 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Denver Nuggets' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 5; 9.0625 +What was the average number of lead changes in games where the Los Angeles Lakers won at home by less than 5 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Los Angeles Lakers' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 5; 9.530864198 +What was the average number of lead changes in games where the Miami Heat won at home by less than 5 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Miami Heat' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 5; 8.221153846 +What was the highest number of points the Chicago Bulls scored in a game where they shot below their season average from three-point range? WITH season_avg AS ( SELECT AVG(fg3_pct_home) AS avg_3pt_pct FROM game WHERE team_name_home = 'Chicago Bulls' AND season_id = '22016' ) SELECT MAX(g.pts_home) AS max_points FROM game g, season_avg s WHERE g.team_name_home = 'Chicago Bulls' AND g.season_id = '22016' AND g.fg3_pct_home < s.avg_3pt_pct; 118 +What was the points in the paint difference between the Phoenix Suns and their opponents in home games they won by double digits during the 2020 season? SELECT AVG(o.pts_paint_home - o.pts_paint_away) AS paint_points_diff FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) >= 10 AND g.season_id = '22020'; -3.428571429 +What was the points in the paint difference between the Oklahoma City Thunder and their opponents in home games they won by double digits during the 2020 season? SELECT AVG(o.pts_paint_home - o.pts_paint_away) AS paint_points_diff FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) >= 10 AND g.season_id = '22020'; 8 +What was the largest deficit overcome by the San Antonio Spurs in any home victory? SELECT o.largest_lead_away AS max_deficit_overcome FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.wl_home = 'W' ORDER BY o.largest_lead_away DESC LIMIT 1; 44 +What was the largest deficit overcome by the Charlotte Hornets in any home victory? SELECT o.largest_lead_away AS max_deficit_overcome FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Charlotte Hornets' AND g.wl_home = 'W' ORDER BY o.largest_lead_away DESC LIMIT 1; 35 +What was the largest deficit overcome by the Houston Rockets in any home victory? SELECT o.largest_lead_away AS max_deficit_overcome FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Houston Rockets' AND g.wl_home = 'W' ORDER BY o.largest_lead_away DESC LIMIT 1; 62 +What was the largest deficit overcome by the Los Angeles Lakers in any home victory? SELECT o.largest_lead_away AS max_deficit_overcome FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Los Angeles Lakers' AND g.wl_home = 'W' ORDER BY o.largest_lead_away DESC LIMIT 1; 56 +What was the difference in points per field goal attempt between the Milwaukee Bucks and their opponents in home games during the 2018 season? SELECT AVG((pts_home / NULLIF(fga_home, 0)) - (pts_away / NULLIF(fga_away, 0))) AS ppfga_diff FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22018'; 0.156449043 +What was the difference in points per field goal attempt between the Denver Nuggets and their opponents in home games during the 2018 season? SELECT AVG((pts_home / NULLIF(fga_home, 0)) - (pts_away / NULLIF(fga_away, 0))) AS ppfga_diff FROM game WHERE team_name_home = 'Denver Nuggets' AND season_id = '22018'; 0.07093616668 +What was the difference in points per field goal attempt between the Memphis Grizzlies and their opponents in home games during the 2018 season? SELECT AVG((pts_home / NULLIF(fga_home, 0)) - (pts_away / NULLIF(fga_away, 0))) AS ppfga_diff FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22018'; -0.0221110495 +Which season saw the Denver Nuggets record their highest average steal-to-turnover ratio in home games? SELECT season_id, SUM(stl_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS steal_to_turnover_ratio FROM game WHERE team_name_home = 'Denver Nuggets' GROUP BY season_id ORDER BY steal_to_turnover_ratio DESC LIMIT 1; 41989 | 1.5 +Which season saw the New York Knicks record their highest average steal-to-turnover ratio in home games? SELECT season_id, SUM(stl_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS steal_to_turnover_ratio FROM game WHERE team_name_home = 'New York Knicks' GROUP BY season_id ORDER BY steal_to_turnover_ratio DESC LIMIT 1; 41989 | 0.9069767441860465 +Which season saw the Houston Rockets record their highest average steal-to-turnover ratio in home games? SELECT season_id, SUM(stl_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS steal_to_turnover_ratio FROM game WHERE team_name_home = 'Houston Rockets' GROUP BY season_id ORDER BY steal_to_turnover_ratio DESC LIMIT 1; 12017 | 0.9310344827586207 +Which season saw the Atlanta Hawks record their highest average steal-to-turnover ratio in home games? SELECT season_id, SUM(stl_home) * 1.0 / NULLIF(SUM(tov_home), 0) AS steal_to_turnover_ratio FROM game WHERE team_name_home = 'Atlanta Hawks' GROUP BY season_id ORDER BY steal_to_turnover_ratio DESC LIMIT 1; 21993 | 0.8769771528998243 +What was the average rebounding margin for the Brooklyn Nets in home games where they shot above 50% from the field? SELECT AVG(reb_home - reb_away) AS avg_rebound_margin FROM game WHERE team_name_home = 'Brooklyn Nets' AND fg_pct_home > 0.5; 1.87628866 +What was the average rebounding margin for the Chicago Bulls in home games where they shot above 50% from the field? SELECT AVG(reb_home - reb_away) AS avg_rebound_margin FROM game WHERE team_name_home = 'Chicago Bulls' AND fg_pct_home > 0.5; 5.482546201 +What was the average rebounding margin for the Miami Heat in home games where they shot above 50% from the field? SELECT AVG(reb_home - reb_away) AS avg_rebound_margin FROM game WHERE team_name_home = 'Miami Heat' AND fg_pct_home > 0.5; 3.857855362 +Which opponent gave up the most points in the paint to the Orlando Magic in a home game during the 2019 season? SELECT g.team_name_away, o.pts_paint_home FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.season_id = '22019' ORDER BY o.pts_paint_home DESC LIMIT 1; Atlanta Hawks | 58 +Which opponent gave up the most points in the paint to the Portland Trail Blazers in a home game during the 2019 season? SELECT g.team_name_away, o.pts_paint_home FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Portland Trail Blazers' AND g.season_id = '22019' ORDER BY o.pts_paint_home DESC LIMIT 1; Indiana Pacers | 56 +What was the average free throw attempt difference between the Milwaukee Bucks and their opponents in home games they lost during the 2017 season? SELECT AVG(fta_home - fta_away) AS avg_fta_diff FROM game WHERE team_name_home = 'Milwaukee Bucks' AND wl_home = 'L' AND season_id = '22017'; -0.1875 +What was the average free throw attempt difference between the New Orleans Pelicans and their opponents in home games they lost during the 2017 season? SELECT AVG(fta_home - fta_away) AS avg_fta_diff FROM game WHERE team_name_home = 'New Orleans Pelicans' AND wl_home = 'L' AND season_id = '22017'; -0.5294117647 +What was the average free throw attempt difference between the San Antonio Spurs and their opponents in home games they lost during the 2017 season? SELECT AVG(fta_home - fta_away) AS avg_fta_diff FROM game WHERE team_name_home = 'San Antonio Spurs' AND wl_home = 'L' AND season_id = '22017'; -3.375 +What is the ratio of team rebounds to total rebounds for the Indiana Pacers in their highest scoring home game? SELECT o.team_rebounds_home * 1.0 / NULLIF(g.reb_home, 0) AS team_to_total_reb_ratio FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Indiana Pacers' ORDER BY g.pts_home DESC LIMIT 1; 0.1333333333 +What is the ratio of team rebounds to total rebounds for the Sacramento Kings in their highest scoring home game? SELECT o.team_rebounds_home * 1.0 / NULLIF(g.reb_home, 0) AS team_to_total_reb_ratio FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Sacramento Kings' ORDER BY g.pts_home DESC LIMIT 1; 0.1395348837 +What is the ratio of team rebounds to total rebounds for the New York Knicks in their highest scoring home game? SELECT o.team_rebounds_home * 1.0 / NULLIF(g.reb_home, 0) AS team_to_total_reb_ratio FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'New York Knicks' ORDER BY g.pts_home DESC LIMIT 1; 0.3191489362 +What was the highest combined total of second chance points in any game involving the Charlotte Hornets during the 2017 season? SELECT MAX(o.pts_2nd_chance_home + o.pts_2nd_chance_away) AS max_combined_second_chance FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_name_home = 'Charlotte Hornets' OR g.team_name_away = 'Charlotte Hornets') AND g.season_id = '22017'; 40 +What was the highest combined total of second chance points in any game involving the Golden State Warriors during the 2017 season? SELECT MAX(o.pts_2nd_chance_home + o.pts_2nd_chance_away) AS max_combined_second_chance FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_name_home = 'Golden State Warriors' OR g.team_name_away = 'Golden State Warriors') AND g.season_id = '22017'; 40 +What was the highest combined total of second chance points in any game involving the Toronto Raptors during the 2017 season? SELECT MAX(o.pts_2nd_chance_home + o.pts_2nd_chance_away) AS max_combined_second_chance FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_name_home = 'Toronto Raptors' OR g.team_name_away = 'Toronto Raptors') AND g.season_id = '22017'; 46 +What was the highest number of points scored by the Washington Wizards in any home game during the 2019 season? SELECT MAX(pts_home) AS max_points FROM game WHERE team_name_home = 'Washington Wizards' AND season_id = '22019'; 158 +What was the highest number of points scored by the Sacramento Kings in any home game during the 2019 season? SELECT MAX(pts_home) AS max_points FROM game WHERE team_name_home = 'Sacramento Kings' AND season_id = '22019'; 140 +What is the average number of assists per game for the Dallas Mavericks when playing at home versus away? SELECT (SELECT AVG(ast_home) FROM game WHERE team_name_home = 'Dallas Mavericks') AS avg_home_assists, (SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Dallas Mavericks') AS avg_away_assists FROM game LIMIT 1; 22.7425799086758 | 21.782312925170068 +What is the average number of assists per game for the Orlando Magic when playing at home versus away? SELECT (SELECT AVG(ast_home) FROM game WHERE team_name_home = 'Orlando Magic') AS avg_home_assists, (SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Orlando Magic') AS avg_away_assists FROM game LIMIT 1; 22.146461107217938 | 21.407977606717985 +What is the average number of assists per game for the Charlotte Hornets when playing at home versus away? SELECT (SELECT AVG(ast_home) FROM game WHERE team_name_home = 'Charlotte Hornets') AS avg_home_assists, (SELECT AVG(ast_away) FROM game WHERE team_name_away = 'Charlotte Hornets') AS avg_away_assists FROM game LIMIT 1; 25.46153846153846 | 23.086368366285118 +What is the average number of assists per game for the San Antonio Spurs when playing at home versus away? SELECT (SELECT AVG(ast_home) FROM game WHERE team_name_home = 'San Antonio Spurs') AS avg_home_assists, (SELECT AVG(ast_away) FROM game WHERE team_name_away = 'San Antonio Spurs') AS avg_away_assists FROM game LIMIT 1; 24.695700110253583 | 22.720596355604638 +What was the total number of blocks recorded by the Brooklyn Nets in home games during the 2018 season? SELECT SUM(blk_home) AS total_blocks FROM game WHERE team_name_home = 'Brooklyn Nets' AND season_id = '22018'; 160 +What was the total number of blocks recorded by the Detroit Pistons in home games during the 2018 season? SELECT SUM(blk_home) AS total_blocks FROM game WHERE team_name_home = 'Detroit Pistons' AND season_id = '22018'; 169 +What was the total number of blocks recorded by the New Orleans Pelicans in home games during the 2018 season? SELECT SUM(blk_home) AS total_blocks FROM game WHERE team_name_home = 'New Orleans Pelicans' AND season_id = '22018'; 215 +What is the win percentage for the Atlanta Hawks in home games where they scored more than 100 points? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Atlanta Hawks' AND pts_home > 100; 74.29805616 +What is the win percentage for the Denver Nuggets in home games where they scored more than 100 points? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Denver Nuggets' AND pts_home > 100; 74.58100559 +What is the win percentage for the New York Knicks in home games where they scored more than 100 points? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'New York Knicks' AND pts_home > 100; 69.94434137 +What is the win percentage for the Washington Wizards in home games where they scored more than 100 points? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Washington Wizards' AND pts_home > 100; 68.37748344 +Which opponent did the Boston Celtics have their largest margin of victory against in a home game? SELECT team_name_away, MAX(pts_home - pts_away) AS victory_margin FROM game WHERE team_name_home = 'Boston Celtics' AND wl_home = 'W' GROUP BY team_name_away ORDER BY victory_margin DESC LIMIT 1; Sacramento Kings | 53.0 +Which opponent did the San Antonio Spurs have their largest margin of victory against in a home game? SELECT team_name_away, MAX(pts_home - pts_away) AS victory_margin FROM game WHERE team_name_home = 'San Antonio Spurs' AND wl_home = 'W' GROUP BY team_name_away ORDER BY victory_margin DESC LIMIT 1; Vancouver Grizzlies | 49.0 +Which opponent did the Golden State Warriors have their largest margin of victory against in a home game? SELECT team_name_away, MAX(pts_home - pts_away) AS victory_margin FROM game WHERE team_name_home = 'Golden State Warriors' AND wl_home = 'W' GROUP BY team_name_away ORDER BY victory_margin DESC LIMIT 1; Sacramento Kings | 62.0 +What is the difference in free throw percentage between the Denver Nuggets and their opponents in home games? SELECT AVG(ft_pct_home - ft_pct_away) AS ft_pct_diff FROM game WHERE team_name_home = 'Denver Nuggets'; 0.008081012658 +What is the difference in free throw percentage between the Miami Heat and their opponents in home games? SELECT AVG(ft_pct_home - ft_pct_away) AS ft_pct_diff FROM game WHERE team_name_home = 'Miami Heat'; -0.009185760518 +What is the difference in free throw percentage between the Memphis Grizzlies and their opponents in home games? SELECT AVG(ft_pct_home - ft_pct_away) AS ft_pct_diff FROM game WHERE team_name_home = 'Memphis Grizzlies'; -0.0113573701 +What is the difference in free throw percentage between the Los Angeles Lakers and their opponents in home games? SELECT AVG(ft_pct_home - ft_pct_away) AS ft_pct_diff FROM game WHERE team_name_home = 'Los Angeles Lakers'; 0.002106870229 +What was the average points in the paint for the New York Knicks in games they won versus games they lost at home? SELECT AVG(CASE WHEN g.wl_home = 'W' THEN o.pts_paint_home END) AS avg_paint_pts_wins, AVG(CASE WHEN g.wl_home = 'L' THEN o.pts_paint_home END) AS avg_paint_pts_losses FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'New York Knicks'; 39.03950103950104 | 40.95945945945946 +What was the average points in the paint for the Los Angeles Lakers in games they won versus games they lost at home? SELECT AVG(CASE WHEN g.wl_home = 'W' THEN o.pts_paint_home END) AS avg_paint_pts_wins, AVG(CASE WHEN g.wl_home = 'L' THEN o.pts_paint_home END) AS avg_paint_pts_losses FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Los Angeles Lakers'; 45.28637059724349 | 45.103641456582636 +What was the average points in the paint for the Golden State Warriors in games they won versus games they lost at home? SELECT AVG(CASE WHEN g.wl_home = 'W' THEN o.pts_paint_home END) AS avg_paint_pts_wins, AVG(CASE WHEN g.wl_home = 'L' THEN o.pts_paint_home END) AS avg_paint_pts_losses FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Golden State Warriors'; 44.50498338870432 | 42.919220055710305 +What was the average points in the paint for the Minnesota Timberwolves in games they won versus games they lost at home? SELECT AVG(CASE WHEN g.wl_home = 'W' THEN o.pts_paint_home END) AS avg_paint_pts_wins, AVG(CASE WHEN g.wl_home = 'L' THEN o.pts_paint_home END) AS avg_paint_pts_losses FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Minnesota Timberwolves'; 40.809034907597535 | 41.574074074074076 +What was the field goal percentage difference between the Cleveland Cavaliers and their opponents in home games they lost by less than 5 points? SELECT AVG(fg_pct_home - fg_pct_away) AS fg_pct_diff FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND wl_home = 'L' AND (pts_away - pts_home) < 5; -0.01460119048 +What was the field goal percentage difference between the New Orleans Pelicans and their opponents in home games they lost by less than 5 points? SELECT AVG(fg_pct_home - fg_pct_away) AS fg_pct_diff FROM game WHERE team_name_home = 'New Orleans Pelicans' AND wl_home = 'L' AND (pts_away - pts_home) < 5; -0.009204545455 +What was the field goal percentage difference between the Toronto Raptors and their opponents in home games they lost by less than 5 points? SELECT AVG(fg_pct_home - fg_pct_away) AS fg_pct_diff FROM game WHERE team_name_home = 'Toronto Raptors' AND wl_home = 'L' AND (pts_away - pts_home) < 5; -0.02115436242 +What was the average three-point shooting percentage for the Orlando Magic in games where they scored over 110 points at home? SELECT AVG(fg3_pct_home) AS avg_3pt_percentage FROM game WHERE team_name_home = 'Orlando Magic' AND pts_home > 110; 0.4145505319 +What was the average three-point shooting percentage for the Milwaukee Bucks in games where they scored over 110 points at home? SELECT AVG(fg3_pct_home) AS avg_3pt_percentage FROM game WHERE team_name_home = 'Milwaukee Bucks' AND pts_home > 110; 0.3933064833 +What was the average three-point shooting percentage for the New Orleans Pelicans in games where they scored over 110 points at home? SELECT AVG(fg3_pct_home) AS avg_3pt_percentage FROM game WHERE team_name_home = 'New Orleans Pelicans' AND pts_home > 110; 0.387 +What was the average margin of victory for the Portland Trail Blazers in home games where they had more assists than their opponent? SELECT AVG(pts_home - pts_away) AS avg_margin FROM game WHERE team_name_home = 'Portland Trail Blazers' AND wl_home = 'W' AND ast_home > ast_away; 14.5455665 +What was the average margin of victory for the Phoenix Suns in home games where they had more assists than their opponent? SELECT AVG(pts_home - pts_away) AS avg_margin FROM game WHERE team_name_home = 'Phoenix Suns' AND wl_home = 'W' AND ast_home > ast_away; 14.00434783 +What was the average margin of victory for the Cleveland Cavaliers in home games where they had more assists than their opponent? SELECT AVG(pts_home - pts_away) AS avg_margin FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND wl_home = 'W' AND ast_home > ast_away; 14.04697987 +What was the average margin of victory for the Sacramento Kings in home games where they had more assists than their opponent? SELECT AVG(pts_home - pts_away) AS avg_margin FROM game WHERE team_name_home = 'Sacramento Kings' AND wl_home = 'W' AND ast_home > ast_away; 12.6792144 +Which opponent did the Portland Trail Blazers have the best rebounding differential against in home games during the 2017 season? SELECT team_name_away, AVG(reb_home - reb_away) AS reb_diff FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '22017' GROUP BY team_name_away ORDER BY reb_diff DESC LIMIT 1; Cleveland Cavaliers | 16.0 +What is the win percentage for the Milwaukee Bucks in home games where they made fewer three-pointers than their opponent? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Milwaukee Bucks' AND fg3m_home < fg3m_away; 51.80878553 +What is the win percentage for the Washington Wizards in home games where they made fewer three-pointers than their opponent? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Washington Wizards' AND fg3m_home < fg3m_away; 41.37323944 +What is the win percentage for the Brooklyn Nets in home games where they made fewer three-pointers than their opponent? SELECT COUNT(CASE WHEN wl_home = 'W' THEN 1 END) * 100.0 / COUNT(*) AS win_percentage FROM game WHERE team_name_home = 'Brooklyn Nets' AND fg3m_home < fg3m_away; 34.83146067 +What is the average difference in points in the paint between the Washington Wizards and their opponents in home games? SELECT AVG(o.pts_paint_home - o.pts_paint_away) AS avg_paint_diff FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Washington Wizards'; 0.2579908676 +What is the average difference in points in the paint between the Chicago Bulls and their opponents in home games? SELECT AVG(o.pts_paint_home - o.pts_paint_away) AS avg_paint_diff FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Chicago Bulls'; 0.5323741007 +What is the average difference in points in the paint between the New York Knicks and their opponents in home games? SELECT AVG(o.pts_paint_home - o.pts_paint_away) AS avg_paint_diff FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'New York Knicks'; -0.3610810811 +Which season saw the Miami Heat record their highest average number of steals per game at home? SELECT season_id, AVG(stl_home) AS avg_steals FROM game WHERE team_name_home = 'Miami Heat' GROUP BY season_id ORDER BY avg_steals DESC LIMIT 1; 42017 | 12.5 +Which season saw the Boston Celtics record their highest average number of steals per game at home? SELECT season_id, AVG(stl_home) AS avg_steals FROM game WHERE team_name_home = 'Boston Celtics' GROUP BY season_id ORDER BY avg_steals DESC LIMIT 1; 12020 | 13.0 +Which season saw the Los Angeles Lakers record their highest average number of steals per game at home? SELECT season_id, AVG(stl_home) AS avg_steals FROM game WHERE team_name_home = 'Los Angeles Lakers' GROUP BY season_id ORDER BY avg_steals DESC LIMIT 1; 41981 | 12.333333333333334 +What was the shooting percentage from the field for the Los Angeles Lakers in their highest scoring home game of the 2019 season? SELECT fg_pct_home AS shooting_percentage FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22019' ORDER BY pts_home DESC LIMIT 1; 0.585 +What is the average number of lead changes in games where the Oklahoma City Thunder won at home by less than 10 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 10; 6.884057971 +What is the average number of lead changes in games where the New Orleans Pelicans won at home by less than 10 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'New Orleans Pelicans' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 10; 9.03960396 +What is the average number of lead changes in games where the Orlando Magic won at home by less than 10 points? SELECT AVG(o.lead_changes) AS avg_lead_changes FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.wl_home = 'W' AND (g.pts_home - g.pts_away) < 10; 7.601626016 +Which opponent did the Orlando Magic score the most points against in a single home game? SELECT team_name_away, MAX(pts_home) AS max_points FROM game WHERE team_name_home = 'Orlando Magic' GROUP BY team_name_away ORDER BY max_points DESC LIMIT 1; Denver Nuggets | 155.0 +Which opponent did the Minnesota Timberwolves score the most points against in a single home game? SELECT team_name_away, MAX(pts_home) AS max_points FROM game WHERE team_name_home = 'Minnesota Timberwolves' GROUP BY team_name_away ORDER BY max_points DESC LIMIT 1; Chicago Bulls | 150.0 +Which opponent did the Detroit Pistons score the most points against in a single home game? SELECT team_name_away, MAX(pts_home) AS max_points FROM game WHERE team_name_home = 'Detroit Pistons' GROUP BY team_name_away ORDER BY max_points DESC LIMIT 1; Boston Celtics | 160.0 +What is the average combined offensive rebounds for the Portland Trail Blazers and their opponents in games where the Thunder won at home? SELECT AVG(oreb_home + oreb_away) AS avg_combined_oreb FROM game WHERE team_name_home = 'Portland Trail Blazers' AND wl_home = 'W'; 24.50967742 +What is the average combined offensive rebounds for the Miami Heat and their opponents in games where the Thunder won at home? SELECT AVG(oreb_home + oreb_away) AS avg_combined_oreb FROM game WHERE team_name_home = 'Miami Heat' AND wl_home = 'W'; 21.84720759 +What is the average combined offensive rebounds for the New York Knicks and their opponents in games where the Thunder won at home? SELECT AVG(oreb_home + oreb_away) AS avg_combined_oreb FROM game WHERE team_name_home = 'New York Knicks' AND wl_home = 'W'; 24.20994475 +What is the average combined offensive rebounds for the Orlando Magic and their opponents in games where the Thunder won at home? SELECT AVG(oreb_home + oreb_away) AS avg_combined_oreb FROM game WHERE team_name_home = 'Orlando Magic' AND wl_home = 'W'; 23.70048309 +What state are the Miami Heat based in according to the team table? SELECT state FROM team WHERE full_name = 'Miami Heat'; Florida +What state are the Washington Wizards based in according to the team table? SELECT state FROM team WHERE full_name = 'Washington Wizards'; District of Columbia +What state are the Denver Nuggets based in according to the team table? SELECT state FROM team WHERE full_name = 'Denver Nuggets'; Colorado +What is the abbreviation for the Sacramento Kings in the team table? SELECT abbreviation FROM team WHERE full_name = 'Sacramento Kings'; SAC +What is the abbreviation for the Atlanta Hawks in the team table? SELECT abbreviation FROM team WHERE full_name = 'Atlanta Hawks'; ATL +What is the abbreviation for the Miami Heat in the team table? SELECT abbreviation FROM team WHERE full_name = 'Miami Heat'; MIA +What is the abbreviation for the Dallas Mavericks in the team table? SELECT abbreviation FROM team WHERE full_name = 'Dallas Mavericks'; DAL +How many times did the Atlanta Hawks lose at home in the 2012 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'ATL' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22012'; 0 +How many times did the Cleveland Cavaliers lose at home in the 2012 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'CLE' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22012'; 0 +In games from the 2003 season, how often did the Charlotte Hornets win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'CHA' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'CHA' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22003'; 0 +In games from the 2003 season, how often did the Detroit Pistons win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'DET' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'DET' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22003'; 4 +In games from the 2007 season, how often did the Oklahoma City Thunder win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'OKC' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'OKC' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22007'; 0 +In games from the 2007 season, how often did the Indiana Pacers win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'IND' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'IND' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22007'; 5 +How many times did the Chicago Bulls lose at home in the 2015 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'CHI' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22015'; 0 +In games from the 2010 season, how often did the Memphis Grizzlies win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'MEM' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'MEM' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22010'; 0 +In 2013, what was the average number of rebounds by the Houston Rockets in games with at least 10 ties and fewer than 10 lead changes? SELECT AVG(g.reb_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'HOU' AND o.times_tied >= 10 AND o.lead_changes < 10 AND g.season_id = '22013'; 49 +In 2013, what was the average number of rebounds by the Boston Celtics in games with at least 10 ties and fewer than 10 lead changes? SELECT AVG(g.reb_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'BOS' AND o.times_tied >= 10 AND o.lead_changes < 10 AND g.season_id = '22013'; 40.25 +In 2013, what was the average number of rebounds by the Chicago Bulls in games with at least 10 ties and fewer than 10 lead changes? SELECT AVG(g.reb_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CHI' AND o.times_tied >= 10 AND o.lead_changes < 10 AND g.season_id = '22013'; 40 +How many points did the Minnesota Timberwolves score as visitors in their most turnover-heavy game? SELECT pts_away FROM game WHERE team_abbreviation_away = 'MIN' ORDER BY tov_away DESC LIMIT 1; 82 +How many points did the New York Knicks score as visitors in their most turnover-heavy game? SELECT pts_away FROM game WHERE team_abbreviation_away = 'NYK' ORDER BY tov_away DESC LIMIT 1; 80 +How many points did the Detroit Pistons score as visitors in their most turnover-heavy game? SELECT pts_away FROM game WHERE team_abbreviation_away = 'DET' ORDER BY tov_away DESC LIMIT 1; 103 +How many points did the Houston Rockets score as visitors in their most turnover-heavy game? SELECT pts_away FROM game WHERE team_abbreviation_away = 'HOU' ORDER BY tov_away DESC LIMIT 1; 94 +How many points did the Atlanta Hawks score in their last home game? SELECT pts_home FROM game WHERE team_abbreviation_home = 'ATL' ORDER BY game_date DESC LIMIT 1; 120 +How many points did the Boston Celtics score in their last home game? SELECT pts_home FROM game WHERE team_abbreviation_home = 'BOS' ORDER BY game_date DESC LIMIT 1; 84 +How many points did the Minnesota Timberwolves score in their last home game? SELECT pts_home FROM game WHERE team_abbreviation_home = 'MIN' ORDER BY game_date DESC LIMIT 1; 114 +How many points did the Oklahoma City Thunder score in their last home game? SELECT pts_home FROM game WHERE team_abbreviation_home = 'OKC' ORDER BY game_date DESC LIMIT 1; 115 +How many points did the Minnesota Timberwolves score in their first away game in 2010? SELECT pts_away FROM game WHERE team_abbreviation_away = 'MIN' AND season_id = '22010' ORDER BY game_date ASC LIMIT 1; 89 +How many points did the Toronto Raptors score in their first away game in 2010? SELECT pts_away FROM game WHERE team_abbreviation_away = 'TOR' AND season_id = '22010' ORDER BY game_date ASC LIMIT 1; 108 +How many points did the Cleveland Cavaliers score in their lowest-scoring game at home? SELECT MIN(pts_home) FROM game WHERE team_abbreviation_home = 'CLE'; 62 +How many points did the Portland Trail Blazers score in their lowest-scoring game at home? SELECT MIN(pts_home) FROM game WHERE team_abbreviation_home = 'POR'; 60 +How many points did the Detroit Pistons score in their lowest-scoring game at home? SELECT MIN(pts_home) FROM game WHERE team_abbreviation_home = 'DET'; 64 +How many points did the Toronto Raptors score in their final game of the 1996 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'TOR' AND season_id = '21996' ORDER BY game_date DESC LIMIT 1; 89 +How many points did the Philadelphia 76ers score in their final game of the 1996 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'PHI' AND season_id = '21996' ORDER BY game_date DESC LIMIT 1; 113 +How many points did the Indiana Pacers score as a home team in the game where they had the most blocks? SELECT pts_home FROM game WHERE team_abbreviation_home = 'IND' ORDER BY blk_home DESC LIMIT 1; 97 +How many points did the New York Knicks score as a home team in the game where they had the most blocks? SELECT pts_home FROM game WHERE team_abbreviation_home = 'NYK' ORDER BY blk_home DESC LIMIT 1; 89 +How many points did the Orlando Magic score as a home team in the game where they had the most blocks? SELECT pts_home FROM game WHERE team_abbreviation_home = 'ORL' ORDER BY blk_home DESC LIMIT 1; 90 +How many points did the Milwaukee Bucks score in their lowest scoring home win? SELECT pts_home FROM game WHERE team_abbreviation_home = 'MIL' AND wl_home = 'W' ORDER BY pts_home ASC LIMIT 1; 78 +How many points did the Philadelphia 76ers score in their lowest scoring home win? SELECT pts_home FROM game WHERE team_abbreviation_home = 'PHI' AND wl_home = 'W' ORDER BY pts_home ASC LIMIT 1; 72 +How many points were scored by the New York Knicks at home in a game with more than 100 combined rebounds? SELECT pts_home FROM game WHERE team_abbreviation_home = 'NYK' AND (reb_home + reb_away) > 100 ORDER BY game_date DESC LIMIT 1; 105 +How many points were scored by the Los Angeles Lakers at home in a game with more than 100 combined rebounds? SELECT pts_home FROM game WHERE team_abbreviation_home = 'LAL' AND (reb_home + reb_away) > 100 ORDER BY game_date DESC LIMIT 1; 117 +How many points were scored by the Dallas Mavericks at home in a game with more than 100 combined rebounds? SELECT pts_home FROM game WHERE team_abbreviation_home = 'DAL' AND (reb_home + reb_away) > 100 ORDER BY game_date DESC LIMIT 1; 117 +Which home team had the most wins when playing against the Cleveland Cavaliers? SELECT team_name_home FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND wl_home = 'W' GROUP BY team_name_home ORDER BY COUNT(*) DESC LIMIT 1; Boston Celtics +Which home team had the most wins when playing against the Orlando Magic? SELECT team_name_home FROM game WHERE team_name_away = 'Orlando Magic' AND wl_home = 'W' GROUP BY team_name_home ORDER BY COUNT(*) DESC LIMIT 1; Detroit Pistons +Which home team had the most wins when playing against the Houston Rockets? SELECT team_name_home FROM game WHERE team_name_away = 'Houston Rockets' AND wl_home = 'W' GROUP BY team_name_home ORDER BY COUNT(*) DESC LIMIT 1; San Antonio Spurs +Which home team had the most wins when playing against the Milwaukee Bucks? SELECT team_name_home FROM game WHERE team_name_away = 'Milwaukee Bucks' AND wl_home = 'W' GROUP BY team_name_home ORDER BY COUNT(*) DESC LIMIT 1; Chicago Bulls +Which home team had the most blocks in a game where the away team was the Chicago Bulls? SELECT team_name_home FROM game WHERE team_name_away = 'Chicago Bulls' ORDER BY blk_home DESC LIMIT 1; San Antonio Spurs +Which home team had the most blocks in a game where the away team was the Phoenix Suns? SELECT team_name_home FROM game WHERE team_name_away = 'Phoenix Suns' ORDER BY blk_home DESC LIMIT 1; New Jersey Nets +Which home team had the most blocks in a game where the away team was the Washington Wizards? SELECT team_name_home FROM game WHERE team_name_away = 'Washington Wizards' ORDER BY blk_home DESC LIMIT 1; Los Angeles Lakers +Which home team had the most blocks in a game where the away team was the Utah Jazz? SELECT team_name_home FROM game WHERE team_name_away = 'Utah Jazz' ORDER BY blk_home DESC LIMIT 1; New Orleans Pelicans +Which team was founded in the same year as the Golden State Warriors? SELECT full_name FROM team WHERE year_founded = (SELECT year_founded FROM team WHERE full_name = 'Golden State Warriors'); ('Boston Celtics',) | ('Golden State Warriors',) | ('New York Knicks',) +Which team was founded in the same year as the Chicago Bulls? SELECT full_name FROM team WHERE year_founded = (SELECT year_founded FROM team WHERE full_name = 'Chicago Bulls'); Chicago Bulls +Which team was founded in the same year as the Los Angeles Lakers? SELECT full_name FROM team WHERE year_founded = (SELECT year_founded FROM team WHERE full_name = 'Los Angeles Lakers'); ('Los Angeles Lakers',) | ('Sacramento Kings',) | ('Detroit Pistons',) +Which team was founded in the same year as the Memphis Grizzlies? SELECT full_name FROM team WHERE year_founded = (SELECT year_founded FROM team WHERE full_name = 'Memphis Grizzlies'); ('Toronto Raptors',) | ('Memphis Grizzlies',) +Which teams share the same city as the Brooklyn Nets? SELECT full_name FROM team WHERE city = (SELECT city FROM team WHERE full_name = 'Brooklyn Nets'); Brooklyn Nets +Which teams share the same city as the Dallas Mavericks? SELECT full_name FROM team WHERE city = (SELECT city FROM team WHERE full_name = 'Dallas Mavericks'); Dallas Mavericks +Which teams were founded in the same state as the Brooklyn Nets? SELECT full_name FROM team WHERE state = (SELECT state FROM team WHERE full_name = 'Brooklyn Nets'); ('Brooklyn Nets',) | ('New York Knicks',) +Which teams were founded in the same state as the Chicago Bulls? SELECT full_name FROM team WHERE state = (SELECT state FROM team WHERE full_name = 'Chicago Bulls'); Chicago Bulls +Which teams were founded in the same state as the Orlando Magic? SELECT full_name FROM team WHERE state = (SELECT state FROM team WHERE full_name = 'Orlando Magic'); ('Miami Heat',) | ('Orlando Magic',) +What is the most points the Portland Trail Blazers have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Portland Trail Blazers'; 156 +What is the most points the Washington Wizards have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Washington Wizards'; 158 +What is the most points the Milwaukee Bucks have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Milwaukee Bucks'; 158 +What is the second-highest number of points the Minnesota Timberwolves have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Minnesota Timberwolves' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 144 +What is the second-highest number of points the Denver Nuggets have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Denver Nuggets' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 168 +What is the second-highest number of points the Oklahoma City Thunder have ever scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Oklahoma City Thunder' ORDER BY pts_home DESC LIMIT 1 OFFSET 1; 150 +How many home games did the Minnesota Timberwolves win in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'MIN' AND wl_home = 'W' AND season_id = '22017'; 30 +How many home games did the Denver Nuggets win in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'DEN' AND wl_home = 'W' AND season_id = '22017'; 31 +How many home games did the New York Knicks win in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'NYK' AND wl_home = 'W' AND season_id = '22017'; 19 +What is the average number of assists by the Oklahoma City Thunder in home wins? SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'OKC' AND wl_home = 'W'; 22.64691358 +What is the average number of assists by the New York Knicks in home wins? SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'NYK' AND wl_home = 'W'; 24.16334661 +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 +How many times did the Atlanta Hawks score over 120 points at home? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'ATL' AND pts_home > 120; 316 +How many times did the Sacramento Kings score over 120 points at home? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'SAC' AND pts_home > 120; 180 +How many times did the Toronto Raptors score over 120 points at home? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'TOR' AND pts_home > 120; 108 +Which Toronto Raptors home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Toronto Raptors' ORDER BY os.lead_changes DESC LIMIT 1; 2006-02-05 00:00:00 | 37 +Which Chicago Bulls home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Chicago Bulls' ORDER BY os.lead_changes DESC LIMIT 1; 2009-04-26 00:00:00 | 28 +Which Milwaukee Bucks home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Milwaukee Bucks' ORDER BY os.lead_changes DESC LIMIT 1; 2013-12-18 00:00:00 | 30 +Which New Orleans Pelicans home game had the most lead changes? SELECT g.game_date, os.lead_changes FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'New Orleans Pelicans' ORDER BY os.lead_changes DESC LIMIT 1; 2016-03-31 00:00:00 | 27 +How many Dallas Mavericks home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'DAL' AND os.pts_paint_home > os.pts_paint_away; 448 +How many Detroit Pistons home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'DET' AND os.pts_paint_home > os.pts_paint_away; 467 +How many Houston Rockets home games were there where they scored more paint points than their opponents? SELECT COUNT(*) FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_abbreviation_home = 'HOU' AND os.pts_paint_home > os.pts_paint_away; 441 +How many Dallas Mavericks home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Dallas Mavericks' AND oreb_home > 15 AND stl_home >= 10; ('1985-04-18 00:00:00', 24.0, 11.0) | ('1985-11-09 00:00:00', 22.0, 17.0) | ('1986-01-04 00:00:00', 16.0, 15.0) | ('1986-01-31 00:00:00', 16.0, 10.0) | ('1986-11-04 00:00:00', 18.0, 11.0) | ('1986-11-15 00:00:00', 23.0, 17.0) | ('1987-01-21 00:00:00', 18.0, 12.0) | ('1987-02-14 00:00:00', 16.0, 11.0) | ('1987-03-11 00:00:00', 20.0, 12.0) | ('1987-03-31 00:00:00', 20.0, 12.0) | ('1987-04-03 00:00:00', 23.0, 14.0) | ('1987-04-18 00:00:00', 19.0, 15.0) | ('1987-11-18 00:00:00', 22.0, 10.0) | ('1987-12-05 00:00:00', 18.0, 12.0) | ('1987-12-09 00:00:00', 19.0, 13.0) | ('1987-12-29 00:00:00', 16.0, 10.0) | ('1988-01-22 00:00:00', 17.0, 11.0) | ('1988-02-19 00:00:00', 18.0, 12.0) | ('1988-03-02 00:00:00', 28.0, 13.0) | ('1988-03-14 00:00:00', 26.0, 11.0) | ('1988-04-08 00:00:00', 23.0, 12.0) | ('1988-06-02 00:00:00', 18.0, 10.0) | ('1988-11-04 00:00:00', 19.0, 13.0) | ('1989-01-27 00:00:00', 18.0, 12.0) | ('1989-04-12 00:00:00', 20.0, 12.0) | ('1989-11-03 00:00:00', 16.0, 10.0) | ('1990-02-13 00:00:00', 16.0, 13.0) | ('1990-03-02 00:00:00', 17.0, 10.0) | ('1990-04-01 00:00:00', 24.0, 15.0) | ('1990-11-03 00:00:00', 18.0, 10.0) | ('1991-01-29 00:00:00', 17.0, 12.0) | ('1991-02-21 00:00:00', 22.0, 10.0) | ('1991-11-27 00:00:00', 20.0, 10.0) | ('1991-12-21 00:00:00', 21.0, 10.0) | ('1992-01-18 00:00:00', 24.0, 13.0) | ('1992-04-01 00:00:00', 20.0, 10.0) | ('1992-11-11 00:00:00', 19.0, 11.0) | ('1992-11-14 00:00:00', 18.0, 10.0) | ('1992-11-27 00:00:00', 17.0, 11.0) | ('1993-01-09 00:00:00', 17.0, 12.0) | ('1993-02-10 00:00:00', 19.0, 11.0) | ('1993-02-13 00:00:00', 16.0, 11.0) | ('1993-02-24 00:00:00', 23.0, 10.0) | ('1993-04-02 00:00:00', 23.0, 11.0) | ('1993-04-16 00:00:00', 17.0, 12.0) | ('1993-04-20 00:00:00', 22.0, 10.0) | ('1993-12-14 00:00:00', 23.0, 12.0) | ('1994-01-29 00:00:00', 18.0, 12.0) | ('1994-02-10 00:00:00', 21.0, 19.0) | ('1994-02-17 00:00:00', 23.0, 10.0) | ('1994-03-08 00:00:00', 17.0, 14.0) | ('1994-03-13 00:00:00', 30.0, 11.0) | ('1994-04-24 00:00:00', 17.0, 13.0) | ('1994-12-01 00:00:00', 25.0, 10.0) | ('1994-12-30 00:00:00', 24.0, 11.0) | ('1995-01-03 00:00:00', 28.0, 12.0) | ('1995-02-28 00:00:00', 21.0, 11.0) | ('1995-03-25 00:00:00', 17.0, 10.0) | ('1995-04-07 00:00:00', 28.0, 10.0) | ('1995-11-07 00:00:00', 21.0, 10.0) | ('1995-12-28 00:00:00', 37.0, 11.0) | ('1996-02-19 00:00:00', 16.0, 11.0) | ('1996-02-25 00:00:00', 20.0, 12.0) | ('1996-03-22 00:00:00', 30.0, 11.0) | ('1996-04-02 00:00:00', 23.0, 12.0) | ('1996-04-16 00:00:00', 24.0, 10.0) | ('1996-11-29 00:00:00', 17.0, 10.0) | ('1997-04-14 00:00:00', 23.0, 10.0) | ('1998-01-06 00:00:00', 17.0, 10.0) | ('1998-01-08 00:00:00', 17.0, 12.0) | ('1998-03-05 00:00:00', 19.0, 13.0) | ('1999-03-13 00:00:00', 16.0, 11.0) | ('2001-01-20 00:00:00', 23.0, 10.0) | ('2001-03-09 00:00:00', 18.0, 11.0) | ('2002-03-09 00:00:00', 16.0, 11.0) | ('2003-11-01 00:00:00', 16.0, 10.0) | ('2003-12-02 00:00:00', 22.0, 11.0) | ('2003-12-06 00:00:00', 21.0, 10.0) | ('2004-03-08 00:00:00', 24.0, 12.0) | ('2004-03-19 00:00:00', 16.0, 11.0) | ('2004-03-30 00:00:00', 17.0, 12.0) | ('2004-04-24 00:00:00', 23.0, 19.0) | ('2004-11-06 00:00:00', 16.0, 11.0) | ('2004-11-22 00:00:00', 16.0, 10.0) | ('2004-12-18 00:00:00', 16.0, 14.0) | ('2005-02-24 00:00:00', 23.0, 11.0) | ('2005-04-07 00:00:00', 16.0, 10.0) | ('2005-05-13 00:00:00', 24.0, 11.0) | ('2005-11-26 00:00:00', 17.0, 11.0) | ('2006-01-07 00:00:00', 19.0, 10.0) | ('2006-04-16 00:00:00', 18.0, 12.0) | ('2007-03-30 00:00:00', 16.0, 10.0) | ('2006-10-21 00:00:00', 17.0, 10.0) | ('2007-04-22 00:00:00', 19.0, 10.0) | ('2007-12-19 00:00:00', 19.0, 11.0) | ('2008-04-02 00:00:00', 17.0, 10.0) | ('2008-11-11 00:00:00', 20.0, 10.0) | ('2008-11-14 00:00:00', 16.0, 11.0) | ('2009-11-20 00:00:00', 17.0, 10.0) | ('2009-12-12 00:00:00', 20.0, 14.0) | ('2010-02-17 00:00:00', 16.0, 11.0) | ('2010-11-12 00:00:00', 16.0, 10.0) | ('2010-12-07 00:00:00', 16.0, 12.0) | ('2012-01-04 00:00:00', 19.0, 10.0) | ('2012-02-22 00:00:00', 21.0, 10.0) | ('2012-02-28 00:00:00', 17.0, 13.0) | ('2014-11-26 00:00:00', 20.0, 12.0) | ('2014-12-13 00:00:00', 17.0, 11.0) | ('2015-02-07 00:00:00', 20.0, 11.0) | ('2015-12-26 00:00:00', 16.0, 10.0) +How many Chicago Bulls home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Chicago Bulls' AND oreb_home > 15 AND stl_home >= 10; ('1986-01-30 00:00:00', 16.0, 12.0) | ('1986-02-01 00:00:00', 20.0, 11.0) | ('1986-02-22 00:00:00', 21.0, 13.0) | ('1986-11-22 00:00:00', 17.0, 11.0) | ('1986-12-23 00:00:00', 16.0, 11.0) | ('1987-01-15 00:00:00', 18.0, 13.0) | ('1987-02-26 00:00:00', 18.0, 11.0) | ('1987-03-06 00:00:00', 17.0, 11.0) | ('1987-04-28 00:00:00', 19.0, 11.0) | ('1987-12-29 00:00:00', 20.0, 13.0) | ('1988-01-02 00:00:00', 18.0, 14.0) | ('1988-01-05 00:00:00', 16.0, 10.0) | ('1988-01-07 00:00:00', 18.0, 13.0) | ('1988-02-15 00:00:00', 17.0, 10.0) | ('1988-03-10 00:00:00', 21.0, 12.0) | ('1988-03-18 00:00:00', 20.0, 12.0) | ('1988-04-08 00:00:00', 20.0, 11.0) | ('1989-01-03 00:00:00', 19.0, 12.0) | ('1989-01-24 00:00:00', 17.0, 10.0) | ('1989-01-31 00:00:00', 18.0, 10.0) | ('1989-02-07 00:00:00', 16.0, 17.0) | ('1989-03-28 00:00:00', 21.0, 10.0) | ('1989-04-02 00:00:00', 16.0, 11.0) | ('1989-04-04 00:00:00', 16.0, 15.0) | ('1989-05-13 00:00:00', 23.0, 10.0) | ('1990-01-21 00:00:00', 16.0, 11.0) | ('1990-03-02 00:00:00', 17.0, 14.0) | ('1990-03-26 00:00:00', 16.0, 17.0) | ('1990-11-02 00:00:00', 17.0, 14.0) | ('1990-12-07 00:00:00', 16.0, 13.0) | ('1990-12-15 00:00:00', 17.0, 12.0) | ('1990-12-29 00:00:00', 25.0, 13.0) | ('1991-01-05 00:00:00', 17.0, 13.0) | ('1991-01-25 00:00:00', 17.0, 12.0) | ('1991-03-01 00:00:00', 22.0, 10.0) | ('1991-03-05 00:00:00', 16.0, 10.0) | ('1991-03-18 00:00:00', 16.0, 13.0) | ('1991-12-28 00:00:00', 19.0, 11.0) | ('1992-01-04 00:00:00', 23.0, 12.0) | ('1992-03-06 00:00:00', 16.0, 17.0) | ('1992-03-11 00:00:00', 19.0, 10.0) | ('1992-03-24 00:00:00', 18.0, 16.0) | ('1992-04-13 00:00:00', 18.0, 11.0) | ('1992-04-26 00:00:00', 19.0, 15.0) | ('1992-05-27 00:00:00', 16.0, 13.0) | ('1992-12-09 00:00:00', 16.0, 10.0) | ('1992-12-21 00:00:00', 16.0, 11.0) | ('1993-01-16 00:00:00', 23.0, 11.0) | ('1993-01-18 00:00:00', 24.0, 10.0) | ('1993-02-15 00:00:00', 18.0, 16.0) | ('1993-03-09 00:00:00', 19.0, 16.0) | ('1993-03-23 00:00:00', 16.0, 10.0) | ('1993-04-02 00:00:00', 19.0, 16.0) | ('1993-04-22 00:00:00', 18.0, 11.0) | ('1993-05-13 00:00:00', 16.0, 12.0) | ('1993-12-07 00:00:00', 18.0, 15.0) | ('1994-01-08 00:00:00', 16.0, 12.0) | ('1994-01-17 00:00:00', 17.0, 16.0) | ('1994-01-21 00:00:00', 17.0, 10.0) | ('1994-03-12 00:00:00', 20.0, 12.0) | ('1994-03-15 00:00:00', 23.0, 16.0) | ('1994-03-26 00:00:00', 16.0, 11.0) | ('1994-04-05 00:00:00', 22.0, 12.0) | ('1994-11-04 00:00:00', 16.0, 11.0) | ('1994-11-07 00:00:00', 21.0, 10.0) | ('1994-11-12 00:00:00', 22.0, 16.0) | ('1994-12-27 00:00:00', 16.0, 11.0) | ('1995-02-15 00:00:00', 17.0, 15.0) | ('1995-02-17 00:00:00', 24.0, 12.0) | ('1995-03-17 00:00:00', 19.0, 14.0) | ('1995-05-04 00:00:00', 16.0, 12.0) | ('1995-12-16 00:00:00', 22.0, 11.0) | ('1996-01-03 00:00:00', 18.0, 11.0) | ('1996-02-27 00:00:00', 17.0, 10.0) | ('1996-03-07 00:00:00', 16.0, 12.0) | ('1996-03-30 00:00:00', 19.0, 10.0) | ('1996-04-20 00:00:00', 22.0, 10.0) | ('1996-11-05 00:00:00', 21.0, 10.0) | ('1996-12-14 00:00:00', 19.0, 10.0) | ('1996-12-17 00:00:00', 24.0, 11.0) | ('1996-12-25 00:00:00', 24.0, 10.0) | ('1997-01-14 00:00:00', 19.0, 11.0) | ('1997-02-16 00:00:00', 21.0, 12.0) | ('1997-02-18 00:00:00', 20.0, 11.0) | ('1997-02-22 00:00:00', 16.0, 15.0) | ('1997-03-05 00:00:00', 26.0, 16.0) | ('1997-04-07 00:00:00', 28.0, 11.0) | ('1997-05-20 00:00:00', 20.0, 10.0) | ('1997-11-01 00:00:00', 16.0, 15.0) | ('1997-11-03 00:00:00', 26.0, 12.0) | ('1997-11-08 00:00:00', 17.0, 11.0) | ('1997-11-15 00:00:00', 16.0, 12.0) | ('1997-12-05 00:00:00', 23.0, 11.0) | ('1997-12-13 00:00:00', 22.0, 12.0) | ('1998-01-06 00:00:00', 23.0, 12.0) | ('1998-02-10 00:00:00', 27.0, 12.0) | ('1998-03-23 00:00:00', 19.0, 11.0) | ('1998-04-26 00:00:00', 18.0, 10.0) | ('1998-05-13 00:00:00', 18.0, 10.0) | ('1999-03-02 00:00:00', 16.0, 11.0) | ('1999-12-04 00:00:00', 19.0, 11.0) | ('2000-01-03 00:00:00', 16.0, 12.0) | ('2000-01-28 00:00:00', 16.0, 11.0) | ('2000-03-02 00:00:00', 17.0, 10.0) | ('2000-12-16 00:00:00', 17.0, 10.0) | ('2002-01-12 00:00:00', 22.0, 11.0) | ('2002-01-19 00:00:00', 24.0, 12.0) | ('2002-01-26 00:00:00', 17.0, 10.0) | ('2003-02-15 00:00:00', 23.0, 10.0) | ('2003-10-31 00:00:00', 16.0, 10.0) | ('2003-12-22 00:00:00', 19.0, 11.0) | ('2003-12-27 00:00:00', 18.0, 17.0) | ('2004-01-05 00:00:00', 18.0, 12.0) | ('2004-02-17 00:00:00', 19.0, 10.0) | ('2005-02-22 00:00:00', 18.0, 11.0) | ('2007-01-13 00:00:00', 16.0, 15.0) | ('2008-01-29 00:00:00', 17.0, 13.0) | ('2008-12-20 00:00:00', 17.0, 11.0) | ('2009-02-28 00:00:00', 19.0, 10.0) | ('2009-04-07 00:00:00', 18.0, 12.0) | ('2010-01-04 00:00:00', 25.0, 12.0) | ('2010-02-20 00:00:00', 17.0, 10.0) | ('2010-12-11 00:00:00', 17.0, 11.0) | ('2010-10-15 00:00:00', 16.0, 12.0) | ('2011-04-18 00:00:00', 20.0, 11.0) | ('2011-05-15 00:00:00', 19.0, 11.0) | ('2012-01-01 00:00:00', 17.0, 10.0) | ('2012-03-24 00:00:00', 21.0, 12.0) | ('2012-10-09 00:00:00', 17.0, 17.0) | ('2012-10-12 00:00:00', 24.0, 11.0) | ('2013-05-13 00:00:00', 19.0, 10.0) | ('2014-01-04 00:00:00', 20.0, 12.0) | ('2014-01-20 00:00:00', 19.0, 13.0) | ('2014-04-04 00:00:00', 16.0, 13.0) | ('2015-01-03 00:00:00', 24.0, 10.0) | ('2015-01-05 00:00:00', 17.0, 10.0) | ('2015-12-07 00:00:00', 16.0, 11.0) | ('2015-10-06 00:00:00', 24.0, 12.0) | ('2016-12-02 00:00:00', 16.0, 11.0) | ('2016-12-26 00:00:00', 16.0, 10.0) | ('2017-01-14 00:00:00', 21.0, 10.0) | ('2017-11-04 00:00:00', 16.0, 10.0) | ('2020-03-06 00:00:00', 17.0, 12.0) | ('2021-12-19 00:00:00', 16.0, 10.0) +How many Indiana Pacers home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Indiana Pacers' AND oreb_home > 15 AND stl_home >= 10; ('1982-11-24 00:00:00', 24.0, 12.0) | ('1983-10-29 00:00:00', 20.0, 13.0) | ('1985-12-11 00:00:00', 17.0, 13.0) | ('1986-02-04 00:00:00', 17.0, 11.0) | ('1986-03-11 00:00:00', 16.0, 11.0) | ('1986-11-04 00:00:00', 25.0, 13.0) | ('1986-11-08 00:00:00', 18.0, 11.0) | ('1986-12-03 00:00:00', 17.0, 12.0) | ('1986-12-11 00:00:00', 21.0, 17.0) | ('1986-12-30 00:00:00', 22.0, 15.0) | ('1987-03-01 00:00:00', 17.0, 12.0) | ('1987-03-09 00:00:00', 17.0, 11.0) | ('1987-03-13 00:00:00', 16.0, 10.0) | ('1987-11-25 00:00:00', 19.0, 14.0) | ('1988-04-11 00:00:00', 17.0, 13.0) | ('1989-01-06 00:00:00', 22.0, 12.0) | ('1989-01-28 00:00:00', 16.0, 10.0) | ('1989-03-27 00:00:00', 24.0, 10.0) | ('1991-03-20 00:00:00', 16.0, 12.0) | ('1991-12-06 00:00:00', 17.0, 15.0) | ('1991-12-30 00:00:00', 16.0, 17.0) | ('1992-01-31 00:00:00', 18.0, 10.0) | ('1992-04-01 00:00:00', 16.0, 11.0) | ('1992-04-14 00:00:00', 18.0, 12.0) | ('1993-01-21 00:00:00', 16.0, 10.0) | ('1993-02-26 00:00:00', 17.0, 10.0) | ('1993-03-17 00:00:00', 34.0, 10.0) | ('1993-04-21 00:00:00', 17.0, 10.0) | ('1993-11-16 00:00:00', 24.0, 11.0) | ('1993-12-07 00:00:00', 16.0, 14.0) | ('1994-02-25 00:00:00', 17.0, 11.0) | ('1994-03-16 00:00:00', 19.0, 11.0) | ('1994-03-28 00:00:00', 22.0, 11.0) | ('1994-04-22 00:00:00', 18.0, 13.0) | ('1994-04-23 00:00:00', 18.0, 12.0) | ('1995-01-20 00:00:00', 21.0, 13.0) | ('1995-03-19 00:00:00', 16.0, 10.0) | ('1995-03-31 00:00:00', 16.0, 11.0) | ('1995-04-16 00:00:00', 16.0, 10.0) | ('1996-04-15 00:00:00', 17.0, 10.0) | ('1997-02-20 00:00:00', 22.0, 11.0) | ('1997-02-23 00:00:00', 18.0, 10.0) | ('2000-11-17 00:00:00', 17.0, 10.0) | ('2001-04-13 00:00:00', 16.0, 16.0) | ('2002-03-24 00:00:00', 22.0, 11.0) | ('2002-10-30 00:00:00', 18.0, 13.0) | ('2002-11-22 00:00:00', 20.0, 14.0) | ('2003-01-26 00:00:00', 16.0, 11.0) | ('2003-02-11 00:00:00', 16.0, 12.0) | ('2003-02-14 00:00:00', 16.0, 10.0) | ('2003-03-17 00:00:00', 16.0, 11.0) | ('2003-04-16 00:00:00', 17.0, 12.0) | ('2003-12-19 00:00:00', 20.0, 10.0) | ('2004-03-24 00:00:00', 17.0, 15.0) | ('2004-05-22 00:00:00', 16.0, 12.0) | ('2004-12-11 00:00:00', 20.0, 16.0) | ('2005-02-02 00:00:00', 20.0, 10.0) | ('2005-03-11 00:00:00', 16.0, 12.0) | ('2006-02-21 00:00:00', 16.0, 11.0) | ('2005-10-18 00:00:00', 25.0, 11.0) | ('2007-02-21 00:00:00', 20.0, 14.0) | ('2006-10-11 00:00:00', 16.0, 10.0) | ('2008-01-02 00:00:00', 19.0, 10.0) | ('2007-10-17 00:00:00', 18.0, 11.0) | ('2007-10-19 00:00:00', 24.0, 10.0) | ('2008-12-17 00:00:00', 20.0, 12.0) | ('2009-12-11 00:00:00', 17.0, 10.0) | ('2010-10-30 00:00:00', 16.0, 10.0) | ('2012-01-14 00:00:00', 20.0, 12.0) | ('2012-02-28 00:00:00', 16.0, 11.0) | ('2012-04-21 00:00:00', 18.0, 11.0) | ('2012-04-23 00:00:00', 22.0, 13.0) | ('2014-02-25 00:00:00', 21.0, 11.0) | ('2014-05-28 00:00:00', 16.0, 12.0) | ('2015-11-04 00:00:00', 21.0, 10.0) | ('2016-02-01 00:00:00', 17.0, 11.0) | ('2016-03-31 00:00:00', 17.0, 11.0) | ('2015-10-03 00:00:00', 18.0, 10.0) | ('2018-12-23 00:00:00', 16.0, 12.0) | ('2020-12-18 00:00:00', 20.0, 10.0) | ('2022-03-30 00:00:00', 18.0, 11.0) +How many Houston Rockets home games had over 15 offensive rebounds and 10+ steals? SELECT game_date, oreb_home, stl_home FROM game WHERE team_name_home = 'Houston Rockets' AND oreb_home > 15 AND stl_home >= 10; ('1985-04-21 00:00:00', 20.0, 10.0) | ('1985-11-14 00:00:00', 17.0, 10.0) | ('1985-12-03 00:00:00', 23.0, 11.0) | ('1985-12-10 00:00:00', 23.0, 14.0) | ('1985-12-12 00:00:00', 17.0, 10.0) | ('1986-01-09 00:00:00', 18.0, 12.0) | ('1986-01-25 00:00:00', 18.0, 10.0) | ('1986-02-03 00:00:00', 16.0, 10.0) | ('1986-03-08 00:00:00', 30.0, 12.0) | ('1986-03-15 00:00:00', 16.0, 14.0) | ('1986-04-01 00:00:00', 21.0, 11.0) | ('1986-11-16 00:00:00', 16.0, 21.0) | ('1986-11-18 00:00:00', 19.0, 12.0) | ('1987-01-03 00:00:00', 17.0, 11.0) | ('1987-03-10 00:00:00', 26.0, 14.0) | ('1987-03-28 00:00:00', 20.0, 12.0) | ('1987-11-14 00:00:00', 29.0, 13.0) | ('1987-11-28 00:00:00', 16.0, 11.0) | ('1988-01-04 00:00:00', 23.0, 10.0) | ('1988-01-09 00:00:00', 20.0, 12.0) | ('1988-01-21 00:00:00', 17.0, 10.0) | ('1988-02-16 00:00:00', 22.0, 11.0) | ('1988-02-28 00:00:00', 16.0, 11.0) | ('1988-05-03 00:00:00', 24.0, 13.0) | ('1988-11-05 00:00:00', 17.0, 13.0) | ('1988-11-08 00:00:00', 17.0, 16.0) | ('1988-11-17 00:00:00', 16.0, 12.0) | ('1988-12-15 00:00:00', 26.0, 12.0) | ('1988-12-18 00:00:00', 16.0, 11.0) | ('1989-01-03 00:00:00', 23.0, 13.0) | ('1989-01-26 00:00:00', 21.0, 14.0) | ('1989-03-11 00:00:00', 22.0, 10.0) | ('1989-03-25 00:00:00', 17.0, 15.0) | ('1989-11-07 00:00:00', 19.0, 10.0) | ('1989-11-16 00:00:00', 20.0, 10.0) | ('1989-11-19 00:00:00', 16.0, 15.0) | ('1989-12-12 00:00:00', 16.0, 14.0) | ('1990-01-03 00:00:00', 17.0, 11.0) | ('1990-01-27 00:00:00', 16.0, 10.0) | ('1990-02-17 00:00:00', 25.0, 14.0) | ('1990-03-03 00:00:00', 17.0, 17.0) | ('1990-03-29 00:00:00', 16.0, 10.0) | ('1990-03-31 00:00:00', 17.0, 10.0) | ('1990-04-17 00:00:00', 16.0, 15.0) | ('1990-04-22 00:00:00', 21.0, 13.0) | ('1990-11-17 00:00:00', 19.0, 11.0) | ('1990-12-06 00:00:00', 18.0, 10.0) | ('1990-12-20 00:00:00', 22.0, 11.0) | ('1991-01-05 00:00:00', 21.0, 13.0) | ('1991-02-03 00:00:00', 16.0, 15.0) | ('1991-02-21 00:00:00', 21.0, 11.0) | ('1991-03-05 00:00:00', 17.0, 10.0) | ('1991-03-09 00:00:00', 25.0, 12.0) | ('1991-03-12 00:00:00', 16.0, 11.0) | ('1991-03-21 00:00:00', 18.0, 13.0) | ('1991-04-03 00:00:00', 18.0, 11.0) | ('1991-04-18 00:00:00', 16.0, 10.0) | ('1991-11-01 00:00:00', 19.0, 12.0) | ('1992-04-11 00:00:00', 16.0, 13.0) | ('1992-11-11 00:00:00', 18.0, 15.0) | ('1993-02-25 00:00:00', 17.0, 10.0) | ('1993-05-08 00:00:00', 19.0, 12.0) | ('1993-11-20 00:00:00', 16.0, 10.0) | ('1995-03-16 00:00:00', 18.0, 11.0) | ('1995-04-15 00:00:00', 16.0, 14.0) | ('1995-11-07 00:00:00', 16.0, 11.0) | ('1996-01-09 00:00:00', 21.0, 14.0) | ('1996-01-21 00:00:00', 16.0, 12.0) | ('1996-04-13 00:00:00', 16.0, 11.0) | ('1996-11-01 00:00:00', 17.0, 20.0) | ('1996-12-28 00:00:00', 17.0, 10.0) | ('1997-05-07 00:00:00', 16.0, 10.0) | ('1997-11-20 00:00:00', 18.0, 14.0) | ('1998-02-10 00:00:00', 19.0, 10.0) | ('2001-11-01 00:00:00', 17.0, 10.0) | ('2002-02-12 00:00:00', 16.0, 12.0) | ('2002-02-23 00:00:00', 17.0, 11.0) | ('2002-04-14 00:00:00', 17.0, 15.0) | ('2003-03-26 00:00:00', 17.0, 10.0) | ('2004-03-07 00:00:00', 16.0, 10.0) | ('2006-03-05 00:00:00', 17.0, 11.0) | ('2006-04-12 00:00:00', 17.0, 11.0) | ('2007-11-14 00:00:00', 20.0, 12.0) | ('2007-11-24 00:00:00', 19.0, 10.0) | ('2007-12-19 00:00:00', 17.0, 10.0) | ('2008-03-26 00:00:00', 20.0, 11.0) | ('2007-10-23 00:00:00', 16.0, 12.0) | ('2008-12-05 00:00:00', 16.0, 10.0) | ('2010-01-13 00:00:00', 17.0, 11.0) | ('2010-01-31 00:00:00', 18.0, 11.0) | ('2010-12-29 00:00:00', 16.0, 11.0) | ('2011-02-12 00:00:00', 16.0, 10.0) | ('2011-04-11 00:00:00', 17.0, 11.0) | ('2012-01-17 00:00:00', 17.0, 11.0) | ('2012-01-27 00:00:00', 19.0, 12.0) | ('2014-01-08 00:00:00', 16.0, 12.0) | ('2014-03-27 00:00:00', 17.0, 13.0) | ('2013-10-21 00:00:00', 16.0, 13.0) | ('2014-11-08 00:00:00', 16.0, 14.0) | ('2014-12-03 00:00:00', 23.0, 14.0) | ('2015-01-03 00:00:00', 17.0, 13.0) | ('2015-02-23 00:00:00', 22.0, 11.0) | ('2014-10-09 00:00:00', 16.0, 10.0) | ('2016-04-03 00:00:00', 22.0, 11.0) | ('2016-04-10 00:00:00', 16.0, 11.0) | ('2015-10-17 00:00:00', 17.0, 13.0) | ('2016-12-20 00:00:00', 20.0, 10.0) | ('2017-03-12 00:00:00', 20.0, 10.0) | ('2017-04-12 00:00:00', 16.0, 11.0) | ('2017-11-09 00:00:00', 17.0, 11.0) | ('2018-05-28 00:00:00', 17.0, 13.0) | ('2018-10-26 00:00:00', 16.0, 11.0) | ('2020-01-22 00:00:00', 18.0, 10.0) | ('2021-04-14 00:00:00', 16.0, 12.0) | ('2022-12-15 00:00:00', 18.0, 10.0) | ('2022-12-19 00:00:00', 16.0, 13.0) | ('2023-04-04 00:00:00', 20.0, 12.0) +How many home games did the Miami Heat win in the 2020 season when the away team committed fewer personal fouls but had a higher plus-minus? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'MIA' AND g.wl_home = 'W' AND g.pf_away < g.pf_home AND g.plus_minus_away > g.plus_minus_home AND g.season_id = '22020'; 0 +How many home games did the Charlotte Hornets win in the 2014 season when the away team committed fewer personal fouls but had a higher plus-minus? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'CHA' AND g.wl_home = 'W' AND g.pf_away < g.pf_home AND g.plus_minus_away > g.plus_minus_home AND g.season_id = '22014'; 0 +How many home games did the Washington Wizards win in the 2014 season when the away team committed fewer personal fouls but had a higher plus-minus? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'WAS' AND g.wl_home = 'W' AND g.pf_away < g.pf_home AND g.plus_minus_away > g.plus_minus_home AND g.season_id = '22014'; 0 +How many times did the Atlanta Hawks lose at home in the 2016 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'ATL' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22016'; 1 +How many times did the Milwaukee Bucks lose at home in the 2016 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'MIL' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22016'; 4 +In the 2016 season, what was the average number of second chance points allowed by the Oklahoma City Thunder in games they won by less than 5 points? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE ((g.team_abbreviation_home = 'OKC' AND g.wl_home = 'W' AND ABS(g.pts_home - g.pts_away) < 5) OR (g.team_abbreviation_away = 'OKC' AND g.wl_away = 'W' AND ABS(g.pts_home - g.pts_away) < 5)) AND g.season_id = '22016'; 14.71428571 +In what year was the Toronto Raptors founded? SELECT year_founded FROM team WHERE full_name = 'Toronto Raptors'; 1995 +In what year was the Denver Nuggets founded? SELECT year_founded FROM team WHERE full_name = 'Denver Nuggets'; 1976 +In what year was the Atlanta Hawks founded? SELECT year_founded FROM team WHERE full_name = 'Atlanta Hawks'; 1949 +In what year was the New York Knicks founded? SELECT year_founded FROM team WHERE full_name = 'New York Knicks'; 1946 +In the 2005 season, what was the average number of second chance points scored by the opponents when the Dallas Mavericks played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DAL' AND g.wl_home = 'L' AND g.season_id = '22005'; 11.4 +In the 2004 season, what was the average number of second chance points scored by the opponents when the Toronto Raptors played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'TOR' AND g.wl_home = 'L' AND g.season_id = '22004'; 10.61538462 +In the 2004 season, what was the average number of second chance points scored by the opponents when the Houston Rockets played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'HOU' AND g.wl_home = 'L' AND g.season_id = '22004'; 12.18181818 +In the 2000 season, what was the average number of second chance points scored by the opponents when the Milwaukee Bucks played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIL' AND g.wl_home = 'L' AND g.season_id = '22000'; 13.88888889 +In the 2000 season, what was the average number of second chance points scored by the opponents when the Philadelphia 76ers played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'PHI' AND g.wl_home = 'L' AND g.season_id = '22000'; 13.77777778 +In the 2000 season, what was the average number of second chance points scored by the opponents when the Utah Jazz played at home and lost? SELECT AVG(o.pts_2nd_chance_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'UTA' AND g.wl_home = 'L' AND g.season_id = '22000'; 14.88888889 +In games from the 2005 season, how often did the New Orleans Pelicans win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'NOP' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'NOP' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22005'; 0 +How many times did the Houston Rockets lose at home in the 2004 season despite recording more steals and blocks than their opponent? SELECT COUNT(*) FROM game g WHERE g.team_abbreviation_home = 'HOU' AND g.wl_home = 'L' AND g.stl_home > g.stl_away AND g.blk_home > g.blk_away AND g.season_id = '22004'; 3 +What is the average number of points in the paint allowed by the Orlando Magic when playing at home in the 2003 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.season_id = '22003' AND o.lead_changes > 15; 34 +What is the average number of points in the paint allowed by the Detroit Pistons when playing at home in the 2003 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DET' AND g.season_id = '22003' AND o.lead_changes > 15; 38 +What is the average number of points in the paint allowed by the Cleveland Cavaliers when playing at home in the 2002 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CLE' AND g.season_id = '22002' AND o.lead_changes > 15; 33 +What is the average number of points in the paint allowed by the Orlando Magic when playing at home in the 2017 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.season_id = '22017' AND o.lead_changes > 15; 40 +What is the average number of points in the paint allowed by the Utah Jazz when playing at home in the 2017 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'UTA' AND g.season_id = '22017' AND o.lead_changes > 15; 40 +What is the average number of points in the paint allowed by the Portland Trail Blazers when playing at home in the 2017 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'POR' AND g.season_id = '22017' AND o.lead_changes > 15; 42 +What is the average number of points in the paint allowed by the Utah Jazz when playing at home in the 2007 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'UTA' AND g.season_id = '22007' AND o.lead_changes > 15; 44 +What is the average number of points in the paint allowed by the Chicago Bulls when playing at home in the 2007 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CHI' AND g.season_id = '22007' AND o.lead_changes > 15; 20 +What is the average number of points in the paint allowed by the Orlando Magic when playing at home in the 2021 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.season_id = '22021' AND o.lead_changes > 15; 45 +What is the average number of points in the paint allowed by the Toronto Raptors when playing at home in the 2021 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'TOR' AND g.season_id = '22021' AND o.lead_changes > 15; 45.33333333 +What is the average number of points in the paint allowed by the Atlanta Hawks when playing at home in the 2021 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ATL' AND g.season_id = '22021' AND o.lead_changes > 15; 53.33333333 +What is the average number of points in the paint allowed by the Charlotte Hornets when playing at home in the 2016 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CHA' AND g.season_id = '22016' AND o.lead_changes > 15; 42 +What is the average number of points in the paint allowed by the Sacramento Kings when playing at home in the 2019 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'SAC' AND g.season_id = '22019' AND o.lead_changes > 15; 62 +What is the average number of points in the paint allowed by the New Orleans Pelicans when playing at home in the 2019 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'NOP' AND g.season_id = '22019' AND o.lead_changes > 15; 51 +What is the average number of points in the paint allowed by the Brooklyn Nets when playing at home in the 2019 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'BKN' AND g.season_id = '22019' AND o.lead_changes > 15; 53.33333333 +What is the average number of points in the paint allowed by the Minnesota Timberwolves when playing at home in the 2013 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIN' AND g.season_id = '22013' AND o.lead_changes > 15; 42 +What is the average number of points in the paint allowed by the Cleveland Cavaliers when playing at home in the 2013 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CLE' AND g.season_id = '22013' AND o.lead_changes > 15; 46 +What is the average number of points in the paint allowed by the Orlando Magic when playing at home in the 2001 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.season_id = '22001' AND o.lead_changes > 15; 42 +What is the average number of points in the paint allowed by the Minnesota Timberwolves when playing at home in the 2001 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIN' AND g.season_id = '22001' AND o.lead_changes > 15; 27 +What is the average number of points in the paint allowed by the Golden State Warriors when playing at home in the 2001 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'GSW' AND g.season_id = '22001' AND o.lead_changes > 15; 52 +What is the average number of points in the paint allowed by the Houston Rockets when playing at home in the 2001 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'HOU' AND g.season_id = '22001' AND o.lead_changes > 15; 34.66666667 +What is the average number of points in the paint allowed by the Charlotte Hornets when playing at home in the 2017 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CHA' AND g.season_id = '22017' AND o.lead_changes > 15; 49 +What is the average number of points in the paint allowed by the Golden State Warriors when playing at home in the 2009 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'GSW' AND g.season_id = '22009' AND o.lead_changes > 15; 47 +What is the average number of points in the paint allowed by the Orlando Magic when playing at home in the 2009 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.season_id = '22009' AND o.lead_changes > 15; 34 +What is the average number of points in the paint allowed by the Orlando Magic when playing at home in the 2014 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.season_id = '22014' AND o.lead_changes > 15; 49 +What is the average number of points in the paint allowed by the Golden State Warriors when playing at home in the 2015 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'GSW' AND g.season_id = '22015' AND o.lead_changes > 15; 42.66666667 +What is the average number of points in the paint allowed by the Miami Heat when playing at home in the 2006 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIA' AND g.season_id = '22006' AND o.lead_changes > 15; 50 +What is the average number of points in the paint allowed by the Milwaukee Bucks when playing at home in the 2006 season in games with more than 15 lead changes? SELECT AVG(o.pts_paint_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIL' AND g.season_id = '22006' AND o.lead_changes > 15; 57 +What was the highest number of lead changes in a game where the Charlotte Hornets won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'CHA' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'CHA' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22008'; 29 +What was the highest number of lead changes in a game where the Milwaukee Bucks won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'MIL' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'MIL' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22008'; 25 +What was the highest number of lead changes in a game where the Phoenix Suns won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'PHX' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'PHX' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22008'; 24 +What was the highest number of lead changes in a game where the Golden State Warriors won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'GSW' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'GSW' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22000'; 25 +What was the highest number of lead changes in a game where the Phoenix Suns won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'PHX' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'PHX' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22000'; 24 +What was the highest number of lead changes in a game where the Detroit Pistons won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'DET' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'DET' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22000'; 30 +What was the highest number of lead changes in a game where the Atlanta Hawks won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'ATL' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'ATL' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22007'; 27 +What was the highest number of lead changes in a game where the Los Angeles Lakers won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'LAL' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'LAL' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22007'; 33 +What was the highest number of lead changes in a game where the San Antonio Spurs won and committed more fouls than their opponent? SELECT MAX(o.lead_changes) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE (g.team_abbreviation_home = 'SAS' AND g.wl_home = 'W' AND g.pf_home > g.pf_away) OR (g.team_abbreviation_away = 'SAS' AND g.wl_away = 'W' AND g.pf_away > g.pf_home) AND g.season_id = '22007'; 22 +What is the total number of games the Washington Wizards played at home where they had more offensive rebounds than the away team and still lost? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'WAS' AND g.wl_home = 'L' AND g.oreb_home > g.oreb_away AND g.season_id = '22008'; 14 +What is the total number of games the Dallas Mavericks played at home where they had more offensive rebounds than the away team and still lost? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DAL' AND g.wl_home = 'L' AND g.oreb_home > g.oreb_away AND g.season_id = '22008'; 3 +In the 2007 season, how many games did the San Antonio Spurs lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'SAS' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22007'; 1 +In the 2007 season, how many games did the Orlando Magic lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ORL' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22007'; 5 +In the 2007 season, how many games did the Oklahoma City Thunder lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'OKC' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22007'; 0 +In 2003, what was the average number of fast break points scored by opponents of the Washington Wizards when the home team had more than 10 steals? SELECT AVG(o.pts_fb_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'WAS' AND g.stl_home > 10 AND g.season_id = '22003'; 16.75 +In 2003, what was the average number of fast break points scored by opponents of the Toronto Raptors when the home team had more than 10 steals? SELECT AVG(o.pts_fb_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'TOR' AND g.stl_home > 10 AND g.season_id = '22003'; 11.375 +In 2003, what was the average number of fast break points scored by opponents of the Milwaukee Bucks when the home team had more than 10 steals? SELECT AVG(o.pts_fb_away) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIL' AND g.stl_home > 10 AND g.season_id = '22003'; 20.5 +In the 2006 season, how many games did the Philadelphia 76ers lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'PHI' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22006'; 7 +What is the average plus-minus for the Denver Nuggets in games where they allowed more second chance points than they scored? SELECT AVG(g.plus_minus_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DEN' AND o.pts_2nd_chance_away > o.pts_2nd_chance_home AND g.season_id = '22003'; 5.75 +In the 2006 season, how many games did the Toronto Raptors lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'TOR' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22006'; 3 +In the 2006 season, how many games did the Miami Heat lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'MIA' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22006'; 6 +In the 2006 season, how many games did the Atlanta Hawks lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'ATL' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22006'; 6 +In the 2006 season, how many games did the Chicago Bulls lose at home despite having fewer turnovers than their opponent? SELECT COUNT(*) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'CHI' AND g.wl_home = 'L' AND o.total_turnovers_home < o.total_turnovers_away AND g.season_id = '22006'; 3 +What is the average plus-minus for the Dallas Mavericks in games where they allowed more second chance points than they scored? SELECT AVG(g.plus_minus_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'DAL' AND o.pts_2nd_chance_away > o.pts_2nd_chance_home AND g.season_id = '22002'; 16.05882353 +What is the average plus-minus for the Boston Celtics in games where they allowed more second chance points than they scored? SELECT AVG(g.plus_minus_home) FROM game g JOIN other_stats o ON g.game_id = o.game_id WHERE g.team_abbreviation_home = 'BOS' AND o.pts_2nd_chance_away > o.pts_2nd_chance_home AND g.season_id = '22002'; 3.266666667 +In games from the 2012 season, how often did the New Orleans Pelicans win despite committing more turnovers and having fewer rebounds than their opponent? SELECT COUNT(*) FROM game g WHERE ((g.team_abbreviation_home = 'NOP' AND g.wl_home = 'W' AND g.tov_home > g.tov_away AND g.reb_home < g.reb_away) OR (g.team_abbreviation_away = 'NOP' AND g.wl_away = 'W' AND g.tov_away > g.tov_home AND g.reb_away < g.reb_home)) AND g.season_id = '22012'; 0 +How many home games did the Boston Celtics play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '22018'; 41 +How many home games did the Brooklyn Nets play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Brooklyn Nets' AND season_id = '22018'; 41 +How many home games did the Denver Nuggets play in the 2008 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Denver Nuggets' AND season_id = '22008'; 41 +What is the average number of ft_pct in away games by the Oklahoma City Thunder? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Oklahoma City Thunder'; 0.7744767802 +What is the average number of ft_pct in away games by the Denver Nuggets? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Denver Nuggets'; 0.7586835067 +What is the average number of ft_pct in away games by the Sacramento Kings? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Sacramento Kings'; 0.755547954 +How many home games did the Indiana Pacers play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Indiana Pacers' AND season_id = '22020'; 36 +How many home games did the Memphis Grizzlies play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22020'; 36 +What is the average number of reb in home games by the Orlando Magic? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Miami Heat'; 42.2 +How many home games did the Cleveland Cavaliers play in the 2007 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND season_id = '22007'; 41 +What is the highest combined pts in any game involving the Boston Celtics? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Boston Celtics' OR team_name_away = 'Boston Celtics'; 312 +What is the highest combined pts in any game involving the Detroit Pistons? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Detroit Pistons' OR team_name_away = 'Detroit Pistons'; 370 +What is the highest combined pts in any game involving the New York Knicks? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'New York Knicks' OR team_name_away = 'New York Knicks'; 302 +What is the highest combined pts in any game involving the San Antonio Spurs? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'San Antonio Spurs' OR team_name_away = 'San Antonio Spurs'; 337 +What is the highest combined pts in any game involving the Golden State Warriors? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Golden State Warriors' OR team_name_away = 'Golden State Warriors'; 320 +What is the highest combined pts in any game involving the Philadelphia 76ers? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Philadelphia 76ers' OR team_name_away = 'Philadelphia 76ers'; 290 +What is the highest combined pts in any game involving the Chicago Bulls? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Chicago Bulls' OR team_name_away = 'Chicago Bulls'; 329 +What is the average number of reb in home games by the Utah Jazz? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Utah Jazz'; 44.24052066 +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.96598639 +What is the average number of reb in home games by the San Antonio Spurs? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'San Antonio Spurs'; 44.41597796 +What is the average number of reb in home games by the Detroit Pistons? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Detroit Pistons'; 44.08547486 +How many away games did the Utah Jazz play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Utah Jazz' AND season_id = '22019'; 37 +How many away games did the Orlando Magic play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Orlando Magic' AND season_id = '22019'; 38 +How many away games did the Cleveland Cavaliers play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND season_id = '22019'; 29 +What is the highest combined pts in any game involving the Washington Wizards? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Washington Wizards' OR team_name_away = 'Washington Wizards'; 317 +How many away games did the Detroit Pistons play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Detroit Pistons' AND season_id = '22018'; 41 +How many away games did the Charlotte Hornets play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Charlotte Hornets' AND season_id = '22018'; 41 +How many away games did the Los Angeles Lakers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '22018'; 41 +How many away games did the New Orleans Pelicans play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'New Orleans Pelicans' AND season_id = '22022'; 41 +How many away games did the Atlanta Hawks play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Atlanta Hawks' AND season_id = '22022'; 41 +How many home games did the Philadelphia 76ers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Philadelphia 76ers' AND season_id = '22018'; 41 +How many home games did the Washington Wizards play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Washington Wizards' AND season_id = '22020'; 36 +How many home games did the Oklahoma City Thunder play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Oklahoma City Thunder' AND season_id = '22020'; 36 +How many away games did the Los Angeles Lakers play in the 1999 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '21999'; 41 +How many away games did the Detroit Pistons play in the 1999 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Detroit Pistons' AND season_id = '21999'; 41 +How many away games did the Boston Celtics play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22022'; 41 +How many away games did the Minnesota Timberwolves play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Minnesota Timberwolves' AND season_id = '22022'; 41 +How many away games did the Denver Nuggets play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Denver Nuggets' AND season_id = '22018'; 41 +How many away games did the Orlando Magic play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Orlando Magic' AND season_id = '22018'; 41 +What is the highest combined tov in any game involving the Memphis Grizzlies? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Memphis Grizzlies' OR team_name_away = 'Memphis Grizzlies'; 54 +What is the highest combined tov in any game involving the Denver Nuggets? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Denver Nuggets' OR team_name_away = 'Denver Nuggets'; 69 +What is the highest combined tov in any game involving the Los Angeles Lakers? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Los Angeles Lakers' OR team_name_away = 'Los Angeles Lakers'; 66 +What is the highest combined tov in any game involving the Dallas Mavericks? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Dallas Mavericks' OR team_name_away = 'Dallas Mavericks'; 53 +How many away games did the Portland Trail Blazers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Portland Trail Blazers' AND season_id = '22018'; 41 +How many away games did the Memphis Grizzlies play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Memphis Grizzlies' AND season_id = '22018'; 41 +How many home games did the Utah Jazz play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Utah Jazz' AND season_id = '22018'; 41 +How many away games did the Milwaukee Bucks play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Milwaukee Bucks' AND season_id = '22018'; 41 +How many home games did the Utah Jazz play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Utah Jazz' AND season_id = '22019'; 35 +How many away games did the Philadelphia 76ers play in the 2007 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Philadelphia 76ers' AND season_id = '22007'; 41 +What is the average number of pts in home games by the Cleveland Cavaliers? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Cleveland Cavaliers'; 102.834576 +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.409324 +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.2784891 +What is the average number of pts in home games by the San Antonio Spurs? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'San Antonio Spurs'; 106.6730392 +What is the average number of pts in home games by the Detroit Pistons? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Detroit Pistons'; 104.4078585 +What is the average number of pts in home games by the Phoenix Suns? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Phoenix Suns'; 109.7381269 +What is the average number of pts in home games by the Washington Wizards? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Washington Wizards'; 102.9063387 +What is the average number of pts in home games by the Oklahoma City Thunder? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Oklahoma City Thunder'; 107.40553 +In which season did the Golden State Warriors have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Golden State Warriors' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 21989 | 121.36585365853658 +In which season did the Houston Rockets have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Houston Rockets' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 12016 | 127.25 +In which season did the New Orleans Pelicans have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'New Orleans Pelicans' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 12020 | 127.0 +In which season did the Sacramento Kings have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Sacramento Kings' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 12022 | 129.5 +What is the highest combined tov in any game involving the New Orleans Pelicans? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'New Orleans Pelicans' OR team_name_away = 'New Orleans Pelicans'; 53 +What is the highest combined tov in any game involving the Cleveland Cavaliers? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Cleveland Cavaliers' OR team_name_away = 'Cleveland Cavaliers'; 55 +What is the highest combined tov in any game involving the Orlando Magic? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Orlando Magic' OR team_name_away = 'Orlando Magic'; 57 +What is the highest combined tov in any game involving the Washington Wizards? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Washington Wizards' OR team_name_away = 'Washington Wizards'; 54 +In which season did the Memphis Grizzlies have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Memphis Grizzlies' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 12020 | 122.0 +In which season did the Atlanta Hawks have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Atlanta Hawks' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 42022 | 123.66666666666667 +In which season did the Orlando Magic have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Orlando Magic' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 12020 | 117.5 +What is the average number of ft_pct in away games by the Detroit Pistons? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Detroit Pistons'; 0.7430191602 +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.7538615611 +What is the average number of ft_pct in away games by the Toronto Raptors? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Toronto Raptors'; 0.7667325383 +What is the average number of ft_pct in away games by the Atlanta Hawks? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Atlanta Hawks'; 0.7592745186 +What is the highest combined pts in any game involving the Phoenix Suns? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Phoenix Suns' OR team_name_away = 'Phoenix Suns'; 318 +What is the highest combined pts in any game involving the Los Angeles Lakers? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Los Angeles Lakers' OR team_name_away = 'Los Angeles Lakers'; 307 +What is the highest combined pts in any game involving the Utah Jazz? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Utah Jazz' OR team_name_away = 'Utah Jazz'; 299 +What is the average number of reb in home games by the Washington Wizards? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Washington Wizards'; 42.70577105 +What is the average number of reb in home games by the Los Angeles Lakers? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Los Angeles Lakers'; 44.57032854 +What is the average number of reb in home games by the Sacramento Kings? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Sacramento Kings'; 43.40463918 +What is the average number of reb in home games by the Dallas Mavericks? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Dallas Mavericks'; 44.11028571 +In which season did the Denver Nuggets have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Denver Nuggets' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 21981 | 129.8048780487805 +In which season did the Portland Trail Blazers have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Portland Trail Blazers' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 21986 | 119.65853658536585 +In which season did the Toronto Raptors have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Toronto Raptors' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 12017 | 118.5 +In which season did the San Antonio Spurs have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'San Antonio Spurs' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 21978 | 124.6829268292683 +How many away games did the Memphis Grizzlies play in the 2011 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Memphis Grizzlies' AND season_id = '22011'; 33 +How many away games did the New York Knicks play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'New York Knicks' AND season_id = '22019'; 33 +How many home games did the Washington Wizards play in the 2021 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Washington Wizards' AND season_id = '22021'; 41 +How many home games did the Sacramento Kings play in the 2021 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Sacramento Kings' AND season_id = '22021'; 41 +How many away games did the Indiana Pacers play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Indiana Pacers' AND season_id = '22022'; 41 +What is the highest combined fg_pct in any game involving the Sacramento Kings? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Sacramento Kings' OR team_name_away = 'Sacramento Kings'; 1.195 +What is the highest combined fg_pct in any game involving the Boston Celtics? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Boston Celtics' OR team_name_away = 'Boston Celtics'; 1.265 +What is the highest combined fg_pct in any game involving the Atlanta Hawks? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Atlanta Hawks' OR team_name_away = 'Atlanta Hawks'; 1.179 +What is the highest combined fg_pct in any game involving the Detroit Pistons? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Detroit Pistons' OR team_name_away = 'Detroit Pistons'; 1.217 +What is the average number of pts in home games by the Charlotte Hornets? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Charlotte Hornets'; 103.8556375 +How many home games did the Detroit Pistons play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Detroit Pistons' AND season_id = '22018'; 41 +What is the highest combined fg_pct in any game involving the Cleveland Cavaliers? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Cleveland Cavaliers' OR team_name_away = 'Cleveland Cavaliers'; 1.172 +What is the highest combined fg_pct in any game involving the Chicago Bulls? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Chicago Bulls' OR team_name_away = 'Chicago Bulls'; 1.245 +What is the highest combined fg_pct in any game involving the Phoenix Suns? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Phoenix Suns' OR team_name_away = 'Phoenix Suns'; 1.226 +How many away games did the Brooklyn Nets play in the 2011 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Brooklyn Nets' AND season_id = '22011'; 0 +How many away games did the Minnesota Timberwolves play in the 2011 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Minnesota Timberwolves' AND season_id = '22011'; 33 +What is the highest combined fg_pct in any game involving the Philadelphia 76ers? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Philadelphia 76ers' OR team_name_away = 'Philadelphia 76ers'; 1.23 +What is the highest combined fg_pct in any game involving the Milwaukee Bucks? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Milwaukee Bucks' OR team_name_away = 'Milwaukee Bucks'; 1.245 +What is the highest combined fg_pct in any game involving the Memphis Grizzlies? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Memphis Grizzlies' OR team_name_away = 'Memphis Grizzlies'; 1.153 +What is the average number of reb in away games by the Utah Jazz? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Utah Jazz'; 41.59128978 +What is the average number of reb in away games by the Charlotte Hornets? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Charlotte Hornets'; 41.99271592 +What is the average number of reb in away games by the New York Knicks? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'New York Knicks'; 41.82023742 +What is the average number of reb in away games by the Miami Heat? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Miami Heat'; 41.39449541 +What is the average number of reb in away games by the Oklahoma City Thunder? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Oklahoma City Thunder'; 44.84674923 +What is the average number of reb in away games by the Philadelphia 76ers? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Philadelphia 76ers'; 42.07578254 +How many away games did the Memphis Grizzlies play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Memphis Grizzlies' AND season_id = '22019'; 36 +How many away games did the Boston Celtics play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22019'; 36 +How many away games did the San Antonio Spurs play in the 2014 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'San Antonio Spurs' AND season_id = '22014'; 41 +How many away games did the Phoenix Suns play in the 2007 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Phoenix Suns' AND season_id = '22007'; 41 +How many away games did the Golden State Warriors play in the 2007 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Golden State Warriors' AND season_id = '22007'; 41 +How many away games did the Minnesota Timberwolves play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Minnesota Timberwolves' AND season_id = '22019'; 32 +How many away games did the Brooklyn Nets play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Brooklyn Nets' AND season_id = '22019'; 36 +How many away games did the New Orleans Pelicans play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'New Orleans Pelicans' AND season_id = '22019'; 36 +How many away games did the Boston Celtics play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Boston Celtics' AND season_id = '22009'; 41 +How many away games did the Sacramento Kings play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Sacramento Kings' AND season_id = '22009'; 41 +What is the highest combined pts in any game involving the Indiana Pacers? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Cleveland Cavaliers' OR team_name_away = 'Cleveland Cavaliers'; 307 +What is the highest combined pts in any game involving the Miami Heat? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Miami Heat' OR team_name_away = 'Miami Heat'; 290 +What is the highest combined pts in any game involving the Portland Trail Blazers? SELECT MAX(pts_home + pts_away) FROM game WHERE team_name_home = 'Portland Trail Blazers' OR team_name_away = 'Portland Trail Blazers'; 311 +How many away games did the New York Knicks play in the 2001 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'New York Knicks' AND season_id = '22001'; 41 +How many away games did the Portland Trail Blazers play in the 2002 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Portland Trail Blazers' AND season_id = '22002'; 41 +How many home games did the Chicago Bulls play in the 2005 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Chicago Bulls' AND season_id = '22005'; 41 +How many home games did the Memphis Grizzlies play in the 2003 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22003'; 41 +How many home games did the Brooklyn Nets play in the 2003 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Brooklyn Nets' AND season_id = '22003'; 0 +How many home games did the Detroit Pistons play in the 2003 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Detroit Pistons' AND season_id = '22003'; 41 +How many home games did the Denver Nuggets play in the 2003 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Denver Nuggets' AND season_id = '22003'; 41 +What is the average number of reb in away games by the Atlanta Hawks? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Atlanta Hawks'; 41.72979084 +What is the average number of reb in away games by the Orlando Magic? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Orlando Magic'; 42.08327502 +What is the average number of reb in away games by the Minnesota Timberwolves? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'Minnesota Timberwolves'; 41.34935438 +What is the average number of reb in away games by the New Orleans Pelicans? SELECT AVG(reb_away) FROM game WHERE team_name_away = 'New Orleans Pelicans'; 44.15172414 +In which season did the Portland Orlando Magic have the highest average ast at home? SELECT season_id, AVG(ast_home) as avg_stat FROM game WHERE team_name_home = 'Orlando Magic' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 21994 | 28.24390243902439 +In which season did the Portland Brooklyn Nets have the highest average ast at home? SELECT season_id, AVG(ast_home) as avg_stat FROM game WHERE team_name_home = 'Brooklyn Nets' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 22020 | 27.166666666666668 +What is the average number of ft_pct in away games by the Houston Rockets? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Houston Rockets'; 0.7580814061 +What is the average number of ft_pct in away games by the Dallas Mavericks? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Dallas Mavericks'; 0.7733810298 +How many away games did the Oklahoma City Thunder play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Oklahoma City Thunder' AND season_id = '22009'; 41 +How many away games did the Cleveland Cavaliers play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND season_id = '22009'; 41 +How many away games did the Milwaukee Bucks play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Milwaukee Bucks' AND season_id = '22009'; 41 +How many away games did the New Orleans Pelicans play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'New Orleans Pelicans' AND season_id = '22009'; 0 +How many away games did the Houston Rockets play in the 2009 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Houston Rockets' AND season_id = '22009'; 41 +How many away games did the Utah Jazz play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Utah Jazz' AND season_id = '22022'; 41 +How many away games did the Los Angeles Lakers play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '22022'; 41 +What is the highest combined tov in any game involving the San Antonio Spurs? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'San Antonio Spurs' OR team_name_away = 'San Antonio Spurs'; 60 +What is the highest combined tov in any game involving the Philadelphia 76ers? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Philadelphia 76ers' OR team_name_away = 'Philadelphia 76ers'; 62 +What is the highest combined tov in any game involving the Indiana Pacers? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Indiana Pacers' OR team_name_away = 'Indiana Pacers'; 61 +What is the highest combined tov in any game involving the Toronto Raptors? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Toronto Raptors' OR team_name_away = 'Toronto Raptors'; 66 +What is the average number of pts in home games by the Utah Jazz? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Utah Jazz'; 105.4084656 +What is the highest combined fg_pct in any game involving the Indiana Pacers? SELECT MAX(fg_pct_home + fg_pct_away) FROM game WHERE team_name_home = 'Indiana Pacers' OR team_name_away = 'Indiana Pacers'; 1.234 +How many home games did the Brooklyn Nets play in the 2011 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Brooklyn Nets' AND season_id = '22011'; 0 +How many home games did the New York Knicks play in the 2011 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'New York Knicks' AND season_id = '22011'; 33 +How many away games did the Phoenix Suns play in the 2002 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Phoenix Suns' AND season_id = '22002'; 41 +How many away games did the Charlotte Hornets play in the 2002 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Charlotte Hornets' AND season_id = '22002'; 0 +How many away games did the Oklahoma City Thunder play in the 2002 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Oklahoma City Thunder' AND season_id = '22002'; 0 +How many home games did the Milwaukee Bucks play in the 2001 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22001'; 41 +How many home games did the New Orleans Pelicans play in the 2001 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'New Orleans Pelicans' AND season_id = '22001'; 0 +What is the average number of pts in home games by the Memphis Grizzlies? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Memphis Grizzlies'; 102.0636267 +What is the average number of pts in home games by the Atlanta Hawks? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Atlanta Hawks'; 105.3432567 +What is the average number of pts in home games by the Toronto Raptors? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Toronto Raptors'; 102.1946083 +What is the average number of pts in home games by the Sacramento Kings? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Sacramento Kings'; 105.1804124 +How many home games did the Los Angeles Lakers play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '22019'; 35 +How many home games did the Memphis Grizzlies play in the 2019 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22019'; 37 +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 +What is the average number of ft_pct in away games by the Minnesota Timberwolves? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Minnesota Timberwolves'; 0.7737926829 +What is the average number of ft_pct in away games by the New York Knicks? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'New York Knicks'; 0.7497584485 +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.7524065985 +What is the average number of ft_pct in away games by the Charlotte Hornets? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Charlotte Hornets'; 0.7677023933 +How many home games did the Dallas Mavericks play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Dallas Mavericks' AND season_id = '22020'; 36 +How many home games did the Minnesota Timberwolves play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Minnesota Timberwolves' AND season_id = '22020'; 36 +How many home games did the Detroit Pistons play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Detroit Pistons' AND season_id = '22020'; 36 +In which season did the Dallas Mavericks have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Dallas Mavericks' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 41986 | 130.5 +In which season did the New York Knicks have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'New York Knicks' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 21965 | 120.13157894736842 +What is the average number of ft_pct in away games by the Phoenix Suns? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Phoenix Suns'; 0.7635485025 +What is the average number of ft_pct in away games by the Memphis Grizzlies? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Memphis Grizzlies'; 0.7474040297 +What is the average number of ft_pct in away games by the Brooklyn Nets? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Brooklyn Nets'; 0.7734608501 +How many away games did the Houston Rockets play in the 2022 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Houston Rockets' AND season_id = '22022'; 41 +What is the average number of pts in home games by the Portland Trail Blazers? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'Portland Trail Blazers'; 106.8559441 +What is the average number of pts in home games by the New Orleans Pelicans? SELECT AVG(pts_home) FROM game WHERE team_name_home = 'New Orleans Pelicans'; 110.0351288 +How many away games did the Minnesota Timberwolves play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Minnesota Timberwolves' AND season_id = '22018'; 41 +How many away games did the Miami Heat play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '22018'; 41 +How many away games did the Milwaukee Bucks play in the 2017 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Milwaukee Bucks' AND season_id = '22017'; 41 +How many away games did the Houston Rockets play in the 2017 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Houston Rockets' AND season_id = '22017'; 41 +How many away games did the Brooklyn Nets play in the 2017 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Brooklyn Nets' AND season_id = '22017'; 41 +How many away games did the Oklahoma City Thunder play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_away = 'Oklahoma City Thunder' AND season_id = '22018'; 41 +How many home games did the New Orleans Pelicans play in the 2021 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'New Orleans Pelicans' AND season_id = '22021'; 41 +How many home games did the Portland Trail Blazers play in the 2021 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '22021'; 41 +How many home games did the Golden State Warriors play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '22020'; 36 +How many home games did the Sacramento Kings play in the 2020 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Sacramento Kings' AND season_id = '22020'; 36 +What is the highest combined tov in any game involving the Boston Celtics? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Boston Celtics' OR team_name_away = 'Boston Celtics'; 66 +What is the highest combined tov in any game involving the Minnesota Timberwolves? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Minnesota Timberwolves' OR team_name_away = 'Minnesota Timberwolves'; 52 +How many home games did the Indiana Pacers Lakers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Indiana Pacers' AND season_id = '22018'; 41 +How many home games did the New York Knicks Lakers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'New York Knicks' AND season_id = '22018'; 41 +How many home games did the Minnesota Timberwolves Lakers play in the 2018 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Minnesota Timberwolves' AND season_id = '22018'; 41 +How many away games did the Memphis Grizzlies play in the 2014 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Memphis Grizzlies' AND season_id = '22015'; 41 +How many away games did the Milwaukee Bucks play in the 2014 season? SELECT COUNT(*) FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '22015'; 41 +What is the average number of ft_pct in away games by the Utah Jazz? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Utah Jazz'; 0.7584554974 +What is the average number of ft_pct in away games by the Indiana Pacers? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Indiana Pacers'; 0.7663596939 +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.7147689 +What is the average number of ft_pct in away games by the Orlando Magic? SELECT AVG(ft_pct_away) FROM game WHERE team_name_away = 'Orlando Magic'; 0.7317557733 +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.7408833552 +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 +What is the highest combined tov in any game involving the Utah Jazz? SELECT MAX(tov_home + tov_away) FROM game WHERE team_name_home = 'Utah Jazz' OR team_name_away = 'Utah Jazz'; 60 +What is the average number of reb in home games by the Philadelphia 76ers? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Philadelphia 76ers'; 43.56101601 +What is the average number of reb in home games by the Brooklyn Nets? SELECT AVG(reb_home) FROM game WHERE team_name_home = 'Brooklyn Nets'; 43.77876106 +In which season did the Chicago Bulls have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Chicago Bulls' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 12022 | 127.66666666666667 +In which season did the Boston Celtics have the highest average pts at home? SELECT season_id, AVG(pts_home) as avg_stat FROM game WHERE team_name_home = 'Boston Celtics' GROUP BY season_id ORDER BY avg_stat DESC LIMIT 1; 41989 | 129.0 +What is the most points the Philadelphia 76ers have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Philadelphia 76ers'; 159 +What is the most points the Dallas Mavericks have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Dallas Mavericks'; 151 +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 +What is the most points the Orlando Magic have scored at home? SELECT MAX(pts_home) FROM game WHERE team_name_home = 'Orlando Magic'; 155 +How many home games did the Los Angeles Lakers win in the 1946 season? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Los Angeles Lakers' AND wl_home = 'W' AND season_id = '21946'; 0 +How many home games did the Miami Heat win in the 1946 season? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Miami Heat' AND wl_home = 'W' AND season_id = '21946'; 0 +How many home games did the New York Knicks win in the 1946 season? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'New York Knicks' AND wl_home = 'W' AND season_id = '21946'; 18 +What is the total number of assists by the Utah Jazz at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Utah Jazz'; 44165 +What is the total number of assists by the Houston Rockets at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Houston Rockets'; 42360 +What is the total number of assists by the Los Angeles Lakers at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Los Angeles Lakers'; 50434 +What is the total number of assists by the Milwaukee Bucks at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Milwaukee Bucks'; 43290 +What is the average field goal percentage for the Milwaukee Bucks at home? SELECT AVG(fg_pct_home) as avg_fg_pct FROM game WHERE team_name_home = 'Milwaukee Bucks'; 0.4708141892 +What is the average field goal percentage for the Sacramento Kings at home? SELECT AVG(fg_pct_home) as avg_fg_pct FROM game WHERE team_name_home = 'Sacramento Kings'; 0.465625 +What is the average field goal percentage for the Los Angeles Lakers at home? SELECT AVG(fg_pct_home) as avg_fg_pct FROM game WHERE team_name_home = 'Los Angeles Lakers'; 0.4782432016 +What is the average field goal percentage for the Detroit Pistons at home? SELECT AVG(fg_pct_home) as avg_fg_pct FROM game WHERE team_name_home = 'Detroit Pistons'; 0.4611972067 +How many steals did the Milwaukee Bucks make at home in the 1996 season? SELECT SUM(stl_home) as total_steals FROM game WHERE team_name_home = 'Milwaukee Bucks' AND season_id = '21996'; 337 +How many games did the Indiana Pacers play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Indiana Pacers' AND season_id = '21996'; 41 +How many games did the Portland Trail Blazers play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '21996'; 41 +How many blocks did the Charlotte Hornets make at home in 1996? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'Charlotte Hornets' AND season_id = '21996'; 188 +What is the lowest points scored by the Charlotte Hornets at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Charlotte Hornets'; 59 +What is the lowest points scored by the Miami Heat at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Miami Heat'; 56 +What is the lowest points scored by the Oklahoma City Thunder at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Oklahoma City Thunder'; 65 +What is the lowest points scored by the Denver Nuggets at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Denver Nuggets'; 56 +What is the total points scored by the Milwaukee Bucks away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Milwaukee Bucks'; 232282 +What is the total points scored by the Detroit Pistons away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Detroit Pistons'; 261218 +What is the total points scored by the Memphis Grizzlies away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Memphis Grizzlies'; 93388 +How many turnovers did the Phoenix Suns have at home in 1996? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Phoenix Suns' AND season_id = '21996'; 540 +How many turnovers did the Houston Rockets have at home in 1996? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Houston Rockets' AND season_id = '21996'; 657 +How many turnovers did the Cleveland Cavaliers have at home in 1996? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND season_id = '21996'; 605 +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 +What is the highest points scored by the Brooklyn Nets away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Brooklyn Nets'; 150 +What is the highest points scored by the Dallas Mavericks away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Dallas Mavericks'; 156 +What is the highest points scored by the Sacramento Kings away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Sacramento Kings'; 176 +What is the total free throws made by the Toronto Raptors at home? SELECT SUM(ftm_home) as total_ftm FROM game WHERE team_name_home = 'Toronto Raptors'; 22059 +What is the total free throws made by the Houston Rockets at home? SELECT SUM(ftm_home) as total_ftm FROM game WHERE team_name_home = 'Houston Rockets'; 42496 +What is the total free throws made by the Brooklyn Nets at home? SELECT SUM(ftm_home) as total_ftm FROM game WHERE team_name_home = 'Brooklyn Nets'; 8127 +What is the total free throws made by the Milwaukee Bucks at home? SELECT SUM(ftm_home) as total_ftm FROM game WHERE team_name_home = 'Milwaukee Bucks'; 44088 +How many assists did the San Antonio Spurs have away in 1996? SELECT SUM(ast_away) as total_assists FROM game WHERE team_name_away = 'San Antonio Spurs' AND season_id = '21996'; 799 +What is the average points scored by the Milwaukee Bucks at home? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Milwaukee Bucks'; 106.2445628 +What is the average points scored by the Detroit Pistons at home? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Detroit Pistons'; 104.4078585 +What is the average points scored by the Dallas Mavericks at home? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Dallas Mavericks'; 105.0365521 +What is the average points scored by the Minnesota Timberwolves at home? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Minnesota Timberwolves'; 101.2323741 +How many games did the New York Knicks win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'New York Knicks' AND wl_home = 'W' AND season_id = '21996'; 31 +How many games did the Toronto Raptors win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Toronto Raptors' AND wl_home = 'W' AND season_id = '21996'; 18 +What is the total points in the paint by the San Antonio Spurs at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'SAS'; 41320 +What is the total points in the paint by the Sacramento Kings at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'SAC'; 38278 +What is the total points in the paint by the Memphis Grizzlies at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'MEM'; 37436 +What is the total points in the paint by the Charlotte Hornets at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'CHA'; 27054 +How many lead changes occurred in games where the Cleveland Cavaliers played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'CLE'; 6045 +How many lead changes occurred in games where the Minnesota Timberwolves played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'MIN'; 5688 +How many lead changes occurred in games where the Miami Heat played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'MIA'; 5607 +How many lead changes occurred in games where the Charlotte Hornets played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'CHA'; 4128 +What is the largest lead the Oklahoma City Thunder had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'OKC'; 43 +What is the largest lead the Charlotte Hornets had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'CHA'; 65 +What is the largest lead the New Orleans Pelicans had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'NOP'; 53 +How many fast break points did the Phoenix Suns score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'PHX'; 14700 +How many fast break points did the Utah Jazz score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'UTA'; 11223 +How many fast break points did the Charlotte Hornets score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'CHA'; 7654 +What is the total second chance points by the Phoenix Suns at home? SELECT SUM(pts_2nd_chance_home) as total_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'PHX'; 12365 +What is the total second chance points by the Chicago Bulls at home? SELECT SUM(pts_2nd_chance_home) as total_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'CHI'; 12770 +What is the total second chance points by the Portland Trail Blazers at home? SELECT SUM(pts_2nd_chance_home) as total_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'POR'; 12293 +What is the total second chance points by the Milwaukee Bucks at home? SELECT SUM(pts_2nd_chance_home) as total_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'MIL'; 12640 +What's the average number of three-pointers made by the Portland Trail Blazers in home games during the 2016 season? SELECT AVG(fg3m_home) FROM game WHERE team_name_home = 'Portland Trail Blazers' AND season_id = '22016'; 11.07317073 +What's the average number of three-pointers made by the Phoenix Suns in home games during the 2016 season? SELECT AVG(fg3m_home) FROM game WHERE team_name_home = 'Phoenix Suns' AND season_id = '22016'; 7.829268293 +How many total team rebounds did the Milwaukee Bucks have in away games where they scored over 15 fast break points? SELECT SUM(os.team_rebounds_away) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_away = 'MIL' AND os.pts_fb_away > 15; 2309 +How many total team rebounds did the Brooklyn Nets have in away games where they scored over 15 fast break points? SELECT SUM(os.team_rebounds_away) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_away = 'BKN' AND os.pts_fb_away > 15; 898 +How many total team rebounds did the Washington Wizards have in away games where they scored over 15 fast break points? SELECT SUM(os.team_rebounds_away) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_away = 'WAS' AND os.pts_fb_away > 15; 2429 +How many total team rebounds did the Phoenix Suns have in away games where they scored over 15 fast break points? SELECT SUM(os.team_rebounds_away) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_away = 'PHX' AND os.pts_fb_away > 15; 2849 +What is the total rebounds by the Denver Nuggets away? SELECT SUM(reb_away) as total_rebounds FROM game WHERE team_name_away = 'Denver Nuggets'; 76197 +What is the total rebounds by the Houston Rockets away? SELECT SUM(reb_away) as total_rebounds FROM game WHERE team_name_away = 'Houston Rockets'; 75490 +What is the total rebounds by the San Antonio Spurs away? SELECT SUM(reb_away) as total_rebounds FROM game WHERE team_name_away = 'San Antonio Spurs'; 77571 +What is the total rebounds by the Oklahoma City Thunder away? SELECT SUM(reb_away) as total_rebounds FROM game WHERE team_name_away = 'Oklahoma City Thunder'; 28971 +How many blocks did the Charlotte Hornets make at home? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'Charlotte Hornets'; 4781 +How many blocks did the Phoenix Suns make at home? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'Phoenix Suns'; 8794 +How many blocks did the Washington Wizards make at home? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'Washington Wizards'; 5171 +How many blocks did the Portland Trail Blazers make at home? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'Portland Trail Blazers'; 7831 +What is the lowest plus-minus score for the Minnesota Timberwolves at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'Minnesota Timberwolves'; -38 +What is the lowest plus-minus score for the Atlanta Hawks at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'Atlanta Hawks'; -44 +What is the lowest plus-minus score for the Houston Rockets at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'Houston Rockets'; -56 +What is the total points scored by the Denver Nuggets at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Denver Nuggets'; 217457 +What is the total points scored by the Utah Jazz at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Utah Jazz'; 199222 +What is the total points scored by the Washington Wizards at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Washington Wizards'; 108772 +What is the total points scored by the Miami Heat at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Miami Heat'; 155695 +How many assists did the Charlotte Hornets have at home in 1996? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Charlotte Hornets' AND season_id = '21996'; 1141 +How many assists did the Boston Celtics have at home in 1996? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '21996'; 927 +What is the average free throw percentage for the Utah Jazz away? SELECT AVG(ft_pct_away) as avg_ft_pct FROM game WHERE team_name_away = 'Utah Jazz'; 0.7584554974 +What is the average free throw percentage for the Brooklyn Nets away? SELECT AVG(ft_pct_away) as avg_ft_pct FROM game WHERE team_name_away = 'Brooklyn Nets'; 0.7734608501 +What is the average free throw percentage for the Philadelphia 76ers away? SELECT AVG(ft_pct_away) as avg_ft_pct FROM game WHERE team_name_away = 'Philadelphia 76ers'; 0.7496236735 +What is the average free throw percentage for the Washington Wizards away? SELECT AVG(ft_pct_away) as avg_ft_pct FROM game WHERE team_name_away = 'Washington Wizards'; 0.7457110092 +How many games did the Washington Wizards win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Washington Wizards' AND wl_home = 'W' AND season_id = '21996'; 0 +How many games did the Atlanta Hawks win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Atlanta Hawks' AND wl_home = 'W' AND season_id = '21996'; 36 +How many games did the Brooklyn Nets win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Brooklyn Nets' AND wl_home = 'W' AND season_id = '21996'; 0 +What is the total points off turnovers by the New Orleans Pelicans at home? SELECT SUM(pts_off_to_home) as total_pts_off_to FROM other_stats WHERE team_abbreviation_home = 'NOP'; 6819 +What is the total points off turnovers by the Detroit Pistons at home? SELECT SUM(pts_off_to_home) as total_pts_off_to FROM other_stats WHERE team_abbreviation_home = 'DET'; 11805 +What is the total points off turnovers by the Cleveland Cavaliers at home? SELECT SUM(pts_off_to_home) as total_pts_off_to FROM other_stats WHERE team_abbreviation_home = 'CLE'; 13963 +What is the total points off turnovers by the Milwaukee Bucks at home? SELECT SUM(pts_off_to_home) as total_pts_off_to FROM other_stats WHERE team_abbreviation_home = 'MIL'; 13477 +How many times were games tied when the Dallas Mavericks played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'DAL'; 4703 +How many times were games tied when the Denver Nuggets played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'DEN'; 5196 +How many times were games tied when the Chicago Bulls played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'CHI'; 4779 +How many times were games tied when the Charlotte Hornets played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'CHA'; 3332 +How many games did the Denver Nuggets play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Denver Nuggets' AND season_id = '21996'; 41 +How many games did the Miami Heat play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Miami Heat' AND season_id = '21996'; 41 +How many games did the Toronto Raptors play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Toronto Raptors' AND season_id = '21996'; 41 +What is the lowest points scored by the Atlanta Hawks at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Atlanta Hawks'; 59 +What is the lowest points scored by the New Orleans Pelicans at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'New Orleans Pelicans'; 72 +What is the lowest points scored by the Chicago Bulls at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Chicago Bulls'; 49 +How many steals did the Toronto Raptors make away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Toronto Raptors' AND season_id = '21996'; 384 +How many steals did the Denver Nuggets make away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Denver Nuggets' AND season_id = '21996'; 253 +What is the average points scored by the Chicago Bulls away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Chicago Bulls'; 100.9464052 +What is the average points scored by the San Antonio Spurs away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'San Antonio Spurs'; 102.3549337 +What is the average points scored by the Phoenix Suns away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Phoenix Suns'; 105.7063031 +What is the average points scored by the Los Angeles Lakers away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Los Angeles Lakers'; 105.7537372 +How many games did the Toronto Raptors win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Toronto Raptors' AND wl_away = 'W' AND season_id = '21996'; 12 +How many games did the Los Angeles Lakers win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Los Angeles Lakers' AND wl_away = 'W' AND season_id = '21996'; 25 +What is the largest lead the Boston Celtics had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'BOS'; 60 +What is the largest lead the Houston Rockets had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'HOU'; 58 +What is the largest lead the Minnesota Timberwolves had at home? SELECT MAX(largest_lead_home) as max_lead FROM other_stats WHERE team_abbreviation_home = 'MIN'; 48 +How many fast break points did the Toronto Raptors score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'TOR'; 12758 +How many fast break points did the Brooklyn Nets score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'BKN'; 4453 +How many fast break points did the Utah Jazz score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'UTA'; 11246 +How many fast break points did the Charlotte Hornets score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'CHA'; 7662 +What is the highest points scored by the Toronto Raptors away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Toronto Raptors'; 150 +What is the highest points scored by the Chicago Bulls away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Chicago Bulls'; 168 +What is the lowest plus-minus score for the San Antonio Spurs at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'San Antonio Spurs'; -43 +What is the lowest plus-minus score for the Cleveland Cavaliers at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'Cleveland Cavaliers'; -41 +What is the lowest plus-minus score for the New Orleans Pelicans at home? SELECT MIN(plus_minus_home) as min_plus_minus FROM game WHERE team_name_home = 'New Orleans Pelicans'; -35 +How many games did the Utah Jazz win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Utah Jazz' AND wl_away = 'W' AND season_id = '21996'; 26 +How many games did the Boston Celtics win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Boston Celtics' AND wl_away = 'W' AND season_id = '21996'; 4 +How many games did the Detroit Pistons win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Detroit Pistons' AND wl_away = 'W' AND season_id = '21996'; 24 +What is the average points scored by the Orlando Magic away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Orlando Magic'; 99.26172148 +What is the average points scored by the Charlotte Hornets away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Charlotte Hornets'; 101.855359 +What is the average points scored by the Oklahoma City Thunder away? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Oklahoma City Thunder'; 104.4814241 +What is the total points in the paint by the Chicago Bulls at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'CHI'; 38266 +What is the total points in the paint by the New York Knicks at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'NYK'; 35742 +What is the total points in the paint by the Washington Wizards at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'WAS'; 36720 +How many times were games tied when the Brooklyn Nets played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'BKN'; 1743 +How many times were games tied when the Golden State Warriors played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'GSW'; 5013 +How many times were games tied when the Portland Trail Blazers played at home? SELECT SUM(times_tied) as total_times_tied FROM other_stats WHERE team_abbreviation_home = 'POR'; 4450 +What is the highest points scored by the Milwaukee Bucks at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Milwaukee Bucks'; 158 +What is the highest points scored by the Houston Rockets at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Houston Rockets'; 158 +What is the highest points scored by the Miami Heat at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Miami Heat'; 149 +What is the highest points scored by the Washington Wizards at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Washington Wizards'; 158 +What is the average points scored by the Sacramento Kings at home when they won in the 1996 season? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Sacramento Kings' AND wl_home = 'W' AND season_id = '21996'; 105.4545455 +What is the average points scored by the Indiana Pacers at home when they won in the 1996 season? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Indiana Pacers' AND wl_home = 'W' AND season_id = '21996'; 102.2380952 +What is the average points scored by the Dallas Mavericks at home when they won in the 1996 season? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Dallas Mavericks' AND wl_home = 'W' AND season_id = '21996'; 98.78571429 +How many games did the Memphis Grizzlies win at home with more than 15 assists in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Memphis Grizzlies' AND wl_home = 'W' AND ast_home > 15 AND season_id = '21996'; 0 +How many games did the Houston Rockets win at home with more than 15 assists in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Houston Rockets' AND wl_home = 'W' AND ast_home > 15 AND season_id = '21996'; 30 +How many times did the Phoenix Suns win at home with a plus-minus greater than 10 in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Phoenix Suns' AND wl_home = 'W' AND plus_minus_home > 10 AND season_id = '21996'; 14 +How many times did the Denver Nuggets win at home with a plus-minus greater than 10 in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Denver Nuggets' AND wl_home = 'W' AND plus_minus_home > 10 AND season_id = '21996'; 4 +How many times did the Washington Wizards win at home with a plus-minus greater than 10 in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Washington Wizards' AND wl_home = 'W' AND plus_minus_home > 10 AND season_id = '21996'; 0 +What is the total fast break points by the Charlotte Hornets in games they lost at home in 1996? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Charlotte Hornets' AND g.wl_home = 'L' AND g.season_id = '21996'; 68 +What is the average second chance points by the Boston Celtics at home in games they won? SELECT AVG(os.pts_2nd_chance_home) as avg_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Boston Celtics' AND g.wl_home = 'W'; 13.16390728 +What is the average second chance points by the Washington Wizards at home in games they won? SELECT AVG(os.pts_2nd_chance_home) as avg_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Washington Wizards' AND g.wl_home = 'W'; 13.65434783 +What is the average second chance points by the Oklahoma City Thunder at home in games they won? SELECT AVG(os.pts_2nd_chance_home) as avg_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND g.wl_home = 'W'; 13.37982196 +What is the total points scored by the Memphis Grizzlies at home when they had more than 10 steals? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Memphis Grizzlies' AND stl_home > 10; 20660 +What is the total points scored by the Houston Rockets at home when they had more than 10 steals? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Houston Rockets' AND stl_home > 10; 37396 +What is the total points scored by the New York Knicks at home when they had more than 10 steals? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'New York Knicks' AND stl_home > 10; 29331 +What is the total points scored by the Dallas Mavericks at home when they had more than 10 steals? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Dallas Mavericks' AND stl_home > 10; 26722 +What is the highest points in the paint by the Charlotte Hornets away in games they won? SELECT MAX(os.pts_paint_away) as max_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Charlotte Hornets' AND g.wl_away = 'W'; 78 +What is the highest points in the paint by the Dallas Mavericks away in games they won? SELECT MAX(os.pts_paint_away) as max_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Dallas Mavericks' AND g.wl_away = 'W'; 72 +What is the highest points in the paint by the Orlando Magic away in games they won? SELECT MAX(os.pts_paint_away) as max_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Orlando Magic' AND g.wl_away = 'W'; 70 +What is the highest points in the paint by the Detroit Pistons away in games they won? SELECT MAX(os.pts_paint_away) as max_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Detroit Pistons' AND g.wl_away = 'W'; 70 +How many games did the Houston Rockets play at home with more than 30 points in the paint in 1996? SELECT COUNT(*) as games FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Houston Rockets' AND os.pts_paint_home > 30 AND g.season_id = '21996'; 28 +What is the total second chance points by the Utah Jazz at home in games they won? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Utah Jazz' AND g.wl_home = 'W'; 8769 +What is the total second chance points by the Oklahoma City Thunder at home in games they won? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND g.wl_home = 'W'; 4509 +What is the total second chance points by the Sacramento Kings at home in games they won? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Sacramento Kings' AND g.wl_home = 'W'; 6888 +What is the total second chance points by the Boston Celtics at home in games they won? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Boston Celtics' AND g.wl_home = 'W'; 7951 +What is the total points in the paint by the Golden State Warriors away when they lost? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Golden State Warriors' AND g.wl_away = 'L'; 26444 +What is the total points in the paint by the New Orleans Pelicans away when they lost? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'New Orleans Pelicans' AND g.wl_away = 'L'; 10962 +What is the total points in the paint by the Memphis Grizzlies away when they lost? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Memphis Grizzlies' AND g.wl_away = 'L'; 21318 +What is the total points in the paint by the Atlanta Hawks away when they lost? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Atlanta Hawks' AND g.wl_away = 'L'; 26324 +What is the average points scored by the Orlando Magic at home when they had more than 10 second chance points in 1996? SELECT AVG(g.pts_home) as avg_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Orlando Magic' AND os.pts_2nd_chance_home > 10 AND g.season_id = '21996'; 97.77777778 +What is the average points scored by the Sacramento Kings at home when they had more than 10 second chance points in 1996? SELECT AVG(g.pts_home) as avg_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Sacramento Kings' AND os.pts_2nd_chance_home > 10 AND g.season_id = '21996'; 100.6521739 +What is the total number of points scored by the Golden State Warriors at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Golden State Warriors'; 234683 +What is the total number of points scored by the Boston Celtics at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Boston Celtics'; 332014 +What is the total number of points scored by the Oklahoma City Thunder at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Oklahoma City Thunder'; 69921 +How many games did the Dallas Mavericks lose at home in the 1996 season? SELECT COUNT(*) as losses FROM game WHERE team_name_home = 'Dallas Mavericks' AND wl_home = 'L' AND season_id = '21996'; 27 +What is the highest field goals made by the Charlotte Hornets at home? SELECT MAX(fgm_home) as max_fgm FROM game WHERE team_name_home = 'Charlotte Hornets'; 58 +What is the highest field goals made by the New York Knicks at home? SELECT MAX(fgm_home) as max_fgm FROM game WHERE team_name_home = 'New York Knicks'; 62 +What is the highest field goals made by the Milwaukee Bucks at home? SELECT MAX(fgm_home) as max_fgm FROM game WHERE team_name_home = 'Milwaukee Bucks'; 69 +What is the total points scored by the Los Angeles Lakers away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Los Angeles Lakers'; 268826 +What is the total points scored by the New York Knicks away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'New York Knicks'; 292706 +What is the total points scored by the Indiana Pacers away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Indiana Pacers'; 198377 +How many games did the San Antonio Spurs win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'San Antonio Spurs' AND wl_home = 'W' AND season_id = '21996'; 12 +How many games did the Philadelphia 76ers win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Philadelphia 76ers' AND wl_home = 'W' AND season_id = '21996'; 11 +What is the lowest points scored by the Los Angeles Lakers away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Los Angeles Lakers'; 68 +What is the lowest points scored by the Atlanta Hawks away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Atlanta Hawks'; 63 +What is the lowest points scored by the Charlotte Hornets away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Charlotte Hornets'; 64 +What is the lowest points scored by the New Orleans Pelicans away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'New Orleans Pelicans'; 72 +How many games did the Detroit Pistons play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Detroit Pistons' AND season_id = '21996'; 41 +How many games did the Los Angeles Lakers play at home in 1996? SELECT COUNT(*) as home_games FROM game WHERE team_name_home = 'Los Angeles Lakers' AND season_id = '21996'; 41 +What is the highest points scored by the Boston Celtics away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Boston Celtics'; 148 +What is the highest points scored by the Milwaukee Bucks away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Milwaukee Bucks'; 166 +What is the highest points scored by the Indiana Pacers away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Indiana Pacers'; 152 +What is the total assists by the Washington Wizards at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Washington Wizards'; 23782 +What is the total assists by the Philadelphia 76ers at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Philadelphia 76ers'; 43333 +What is the total assists by the Orlando Magic at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Orlando Magic'; 31603 +What is the total assists by the Atlanta Hawks at home? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Atlanta Hawks'; 41509 +How many games did the Memphis Grizzlies win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Memphis Grizzlies' AND wl_home = 'W' AND season_id = '21996'; 0 +How many games did the Sacramento Kings win at home in 1996? SELECT COUNT(*) as home_wins FROM game WHERE team_name_home = 'Sacramento Kings' AND wl_home = 'W' AND season_id = '21996'; 22 +What is the total points scored by the San Antonio Spurs at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'San Antonio Spurs'; 217613 +What is the total points scored by the Dallas Mavericks at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Dallas Mavericks'; 192532 +What is the total points scored by the Minnesota Timberwolves at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Minnesota Timberwolves'; 140713 +What is the total points in the paint by the Philadelphia 76ers at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'PHI'; 41524 +What is the total points in the paint by the Los Angeles Lakers at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'LAL'; 45320 +What is the total points in the paint by the Atlanta Hawks at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'ATL'; 39440 +What is the total points in the paint by the Minnesota Timberwolves at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'MIN'; 36982 +How many lead changes occurred in games where the Milwaukee Bucks played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'MIL'; 6115 +How many lead changes occurred in games where the New York Knicks played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'NYK'; 5382 +How many lead changes occurred in games where the Atlanta Hawks played at home? SELECT SUM(lead_changes) as total_lead_changes FROM other_stats WHERE team_abbreviation_home = 'ATL'; 5610 +What is the largest lead the Chicago Bulls had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'CHI'; 54 +What is the largest lead the New Orleans Pelicans had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'NOP'; 42 +What is the largest lead the Orlando Magic had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'ORL'; 55 +What is the largest lead the Minnesota Timberwolves had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'MIN'; 56 +How many fast break points did the Philadelphia 76ers score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'PHI'; 14504 +How many fast break points did the Detroit Pistons score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'DET'; 10914 +How many fast break points did the Portland Trail Blazers score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'POR'; 9746 +What is the total points scored by the Portland Trail Blazers away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Portland Trail Blazers'; 220939 +What is the total points scored by the Boston Celtics away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Boston Celtics'; 315242 +What is the total points scored by the Golden State Warriors away? SELECT SUM(pts_away) as total_points FROM game WHERE team_name_away = 'Golden State Warriors'; 226264 +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 +What is the lowest points scored by the Miami Heat away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Miami Heat'; 54 +What is the lowest points scored by the Orlando Magic away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Orlando Magic'; 56 +How many games did the Cleveland Cavaliers win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND wl_away = 'W' AND season_id = '21996'; 17 +What is the highest fast break points by the Oklahoma City Thunder away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'OKC'; 40 +What is the highest fast break points by the Indiana Pacers away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'IND'; 43 +What is the highest fast break points by the Sacramento Kings away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'SAC'; 40 +What is the highest fast break points by the Washington Wizards away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'WAS'; 39 +What is the lowest points scored by the Golden State Warriors away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Golden State Warriors'; 65 +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 +What is the lowest points scored by the Oklahoma City Thunder away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Oklahoma City Thunder'; 74 +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 +What is the highest points scored by the Indiana Pacers at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Indiana Pacers'; 145 +What is the highest points scored by the New Orleans Pelicans at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'New Orleans Pelicans'; 149 +What is the highest points scored by the San Antonio Spurs at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'San Antonio Spurs'; 171 +What is the total points scored by the Memphis Grizzlies at home? SELECT SUM(pts_home) as total_points FROM game WHERE team_name_home = 'Memphis Grizzlies'; 96246 +What is the lowest points scored by the Washington Wizards away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Washington Wizards'; 64 +What is the lowest points scored by the Portland Trail Blazers away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Portland Trail Blazers'; 58 +What is the total points in the paint by the Golden State Warriors at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'GSW'; 43916 +What is the total points in the paint by the Detroit Pistons at home? SELECT SUM(pts_paint_home) as total_pts_paint FROM other_stats WHERE team_abbreviation_home = 'DET'; 35436 +What is the highest second chance points by the New Orleans Pelicans at home? SELECT MAX(pts_2nd_chance_home) as max_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'NOP'; 36 +What is the highest second chance points by the Boston Celtics at home? SELECT MAX(pts_2nd_chance_home) as max_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'BOS'; 35 +What is the highest second chance points by the Minnesota Timberwolves at home? SELECT MAX(pts_2nd_chance_home) as max_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'MIN'; 35 +What is the highest second chance points by the Dallas Mavericks at home? SELECT MAX(pts_2nd_chance_home) as max_2nd_chance FROM other_stats WHERE team_abbreviation_home = 'DAL'; 30 +How many fast break points did the Chicago Bulls score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'CHI'; 11183 +How many fast break points did the Sacramento Kings score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'SAC'; 13275 +How many fast break points did the Cleveland Cavaliers score away? SELECT SUM(pts_fb_away) as total_fb_points FROM other_stats WHERE team_abbreviation_away = 'CLE'; 11449 +What is the highest points scored by the Portland Trail Blazers at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Portland Trail Blazers'; 156 +What is the highest points scored by the Memphis Grizzlies at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Memphis Grizzlies'; 152 +What is the highest points scored by the Chicago Bulls at home? SELECT MAX(pts_home) as max_points FROM game WHERE team_name_home = 'Chicago Bulls'; 155 +How many games did the Denver Nuggets win away in 1996? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Denver Nuggets' AND wl_away = 'W' AND season_id = '21996'; 9 +What is the highest fast break points by the Philadelphia 76ers away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'PHI'; 38 +What is the highest fast break points by the Houston Rockets away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'HOU'; 34 +What is the highest fast break points by the New York Knicks away? SELECT MAX(pts_fb_away) as max_fb_points FROM other_stats WHERE team_abbreviation_away = 'NYK'; 38 +What's the highest number of lead changes in any game involving the Denver Nuggets? SELECT MAX(os.lead_changes) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_home = 'DEN' OR g.team_abbreviation_away = 'DEN'; 32 +What's the highest number of lead changes in any game involving the Indiana Pacers? SELECT MAX(os.lead_changes) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_home = 'IND' OR g.team_abbreviation_away = 'IND'; 32 +What's the highest number of lead changes in any game involving the Utah Jazz? SELECT MAX(os.lead_changes) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_home = 'UTA' OR g.team_abbreviation_away = 'UTA'; 31 +What's the highest number of lead changes in any game involving the Memphis Grizzlies? SELECT MAX(os.lead_changes) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_abbreviation_home = 'MEM' OR g.team_abbreviation_away = 'MEM'; 25 +What is the highest points scored by the Golden State Warriors away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Golden State Warriors'; 162 +What is the highest points scored by the Washington Wizards away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Washington Wizards'; 147 +What is the highest points scored by the Detroit Pistons away? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Detroit Pistons'; 186 +What is the lowest points scored by the Houston Rockets at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Houston Rockets'; 66 +What is the lowest points scored by the Brooklyn Nets at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Brooklyn Nets'; 74 +What is the highest second chance points by the Chicago Bulls away? SELECT MAX(pts_2nd_chance_away) as max_2nd_chance FROM other_stats WHERE team_abbreviation_away = 'CHI'; 34 +What is the highest second chance points by the Phoenix Suns away? SELECT MAX(pts_2nd_chance_away) as max_2nd_chance FROM other_stats WHERE team_abbreviation_away = 'PHX'; 32 +What is the highest second chance points by the Utah Jazz away? SELECT MAX(pts_2nd_chance_away) as max_2nd_chance FROM other_stats WHERE team_abbreviation_away = 'UTA'; 35 +What is the highest second chance points by the New York Knicks away? SELECT MAX(pts_2nd_chance_away) as max_2nd_chance FROM other_stats WHERE team_abbreviation_away = 'NYK'; 32 +How many fast break points did the Indiana Pacers score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'IND'; 11705 +How many fast break points did the New Orleans Pelicans score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'NOP'; 5720 +How many fast break points did the Denver Nuggets score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'DEN'; 15227 +How many fast break points did the Chicago Bulls score at home? SELECT SUM(pts_fb_home) as total_fb_points FROM other_stats WHERE team_abbreviation_home = 'CHI'; 11524 +What is the lowest points scored by the Utah Jazz away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Utah Jazz'; 54 +What is the lowest points scored by the Philadelphia 76ers away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Philadelphia 76ers'; 65 +What is the lowest points scored by the Indiana Pacers away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Indiana Pacers'; 61 +What is the lowest points scored by the Cleveland Cavaliers away? SELECT MIN(pts_away) as min_points FROM game WHERE team_name_away = 'Cleveland Cavaliers'; 57 +What is the average points scored by the Houston Rockets at home when they lost in 1996? SELECT AVG(pts_home) as avg_points FROM game WHERE team_name_home = 'Houston Rockets' AND wl_home = 'L' AND season_id = '21996'; 94.81818182 +What is the highest points scored by the Chicago Bulls away when they had more than 15 points in the paint? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Chicago Bulls' AND os.pts_paint_away > 15; 168 +What is the highest points scored by the Denver Nuggets away when they had more than 15 points in the paint? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Denver Nuggets' AND os.pts_paint_away > 15; 147 +What is the highest points scored by the Miami Heat away when they had more than 15 points in the paint? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Miami Heat' AND os.pts_paint_away > 15; 134 +What is the highest points scored by the Houston Rockets away when they had more than 15 points in the paint? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Houston Rockets' AND os.pts_paint_away > 15; 159 +How many games did the Brooklyn Nets win at home with a plus-minus greater than 15 in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_home = 'Brooklyn Nets' AND wl_home = 'W' AND plus_minus_home > 15 AND season_id = '21996'; 0 +What is the total second chance points by the Chicago Bulls away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Chicago Bulls' AND g.wl_away = 'L'; 7549 +What is the total second chance points by the Cleveland Cavaliers away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Cleveland Cavaliers' AND g.wl_away = 'L'; 7932 +What is the total second chance points by the Milwaukee Bucks away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Milwaukee Bucks' AND g.wl_away = 'L'; 7460 +What is the total second chance points by the Memphis Grizzlies away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Memphis Grizzlies' AND g.wl_away = 'L'; 6366 +What is the average points in the paint by the Indiana Pacers at home in games they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Indiana Pacers' AND g.wl_home = 'W'; 39.1107438 +What is the average points in the paint by the New York Knicks at home in games they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'New York Knicks' AND g.wl_home = 'W'; 39.03950104 +What is the average points in the paint by the Portland Trail Blazers at home in games they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Portland Trail Blazers' AND g.wl_home = 'W'; 41.47386172 +What is the average points in the paint by the Detroit Pistons at home in games they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Detroit Pistons' AND g.wl_home = 'W'; 37.93818182 +How many games did the Milwaukee Bucks win away with more than 20 points in the paint in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Milwaukee Bucks' AND g.wl_away = 'W' AND os.pts_paint_away > 20 AND g.season_id = '21996'; 11 +How many games did the Boston Celtics win away with more than 20 points in the paint in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Boston Celtics' AND g.wl_away = 'W' AND os.pts_paint_away > 20 AND g.season_id = '21996'; 4 +What is the total fast break points by the Oklahoma City Thunder at home in games they lost? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND g.wl_home = 'L'; 2360 +What is the total fast break points by the Washington Wizards at home in games they lost? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Washington Wizards' AND g.wl_home = 'L'; 5245 +What is the total fast break points by the Utah Jazz at home in games they lost? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Utah Jazz' AND g.wl_home = 'L'; 3312 +What is the total second chance points by the Milwaukee Bucks away in games they won? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Milwaukee Bucks' AND g.wl_away = 'W'; 4952 +What is the total second chance points by the Toronto Raptors away in games they won? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Toronto Raptors' AND g.wl_away = 'W'; 4976 +What is the total second chance points by the Phoenix Suns away in games they won? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Phoenix Suns' AND g.wl_away = 'W'; 5705 +What is the total second chance points by the Philadelphia 76ers away in games they won? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Philadelphia 76ers' AND g.wl_away = 'W'; 5252 +How many games did the Charlotte Hornets play away with more than 20 points in the paint in 1996? SELECT COUNT(*) as games FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Charlotte Hornets' AND os.pts_paint_away > 20 AND g.season_id = '21996'; 32 +How many games did the Boston Celtics play away with more than 20 points in the paint in 1996? SELECT COUNT(*) as games FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Boston Celtics' AND os.pts_paint_away > 20 AND g.season_id = '21996'; 30 +What is the total points in the paint by the Golden State Warriors at home when they won? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Golden State Warriors' AND g.wl_home = 'W'; 26792 +What is the total points in the paint by the Atlanta Hawks at home when they won? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Atlanta Hawks' AND g.wl_home = 'W'; 23134 +What is the total points in the paint by the Denver Nuggets at home when they won? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Denver Nuggets' AND g.wl_home = 'W'; 26006 +What is the total points in the paint by the Orlando Magic at home when they won? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.wl_home = 'W'; 21538 +What is the total fast break points by the San Antonio Spurs away in games they lost? SELECT SUM(os.pts_fb_away) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'San Antonio Spurs' AND g.wl_away = 'L'; 5230 +What is the total fast break points by the Charlotte Hornets away in games they lost? SELECT SUM(os.pts_fb_away) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Charlotte Hornets' AND g.wl_away = 'L'; 3865 +What is the total fast break points by the Sacramento Kings away in games they lost? SELECT SUM(os.pts_fb_away) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Sacramento Kings' AND g.wl_away = 'L'; 8458 +What is the total fast break points by the Dallas Mavericks away in games they lost? SELECT SUM(os.pts_fb_away) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Dallas Mavericks' AND g.wl_away = 'L'; 6057 +What is the highest points scored by the Phoenix Suns away when they had more than 5 lead changes? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Phoenix Suns' AND os.lead_changes > 5; 161 +What is the highest points scored by the Brooklyn Nets away when they had more than 5 lead changes? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Brooklyn Nets' AND os.lead_changes > 5; 148 +What is the highest points scored by the Washington Wizards away when they had more than 5 lead changes? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Washington Wizards' AND os.lead_changes > 5; 147 +What is the highest points scored by the San Antonio Spurs away when they had more than 5 lead changes? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'San Antonio Spurs' AND os.lead_changes > 5; 157 +What is the total second chance points by the Boston Celtics at home in games they lost? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Boston Celtics' AND g.wl_home = 'L'; 4762 +What is the total second chance points by the San Antonio Spurs at home in games they lost? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.wl_home = 'L'; 3507 +What is the total second chance points by the Chicago Bulls at home in games they lost? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Chicago Bulls' AND g.wl_home = 'L'; 5346 +What is the total second chance points by the Washington Wizards at home in games they lost? SELECT SUM(os.pts_2nd_chance_home) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Washington Wizards' AND g.wl_home = 'L'; 5562 +What is the average points in the paint by the Milwaukee Bucks at home when they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Milwaukee Bucks' AND g.wl_home = 'W'; 41.95454545 +What is the average points in the paint by the Phoenix Suns at home when they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'W'; 42.93114754 +What is the average points in the paint by the Cleveland Cavaliers at home when they won? SELECT AVG(os.pts_paint_home) as avg_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Cleveland Cavaliers' AND g.wl_home = 'W'; 40.52487136 +How many games did the Denver Nuggets win at home with more than 15 fast break points in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Denver Nuggets' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 4 +How many games did the San Antonio Spurs win at home with more than 15 fast break points in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 3 +How many games did the Washington Wizards lose at home with more than 10 second chance points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Washington Wizards' AND g.wl_home = 'L' AND os.pts_2nd_chance_home > 10 AND g.season_id = '21996'; 0 +How many games did the Portland Trail Blazers lose at home with more than 10 second chance points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Portland Trail Blazers' AND g.wl_home = 'L' AND os.pts_2nd_chance_home > 10 AND g.season_id = '21996'; 9 +How many games did the Memphis Grizzlies win at home with more than 20 points in the paint in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Memphis Grizzlies' AND g.wl_home = 'W' AND os.pts_paint_home > 20 AND g.season_id = '21996'; 0 +How many games did the Golden State Warriors win at home with more than 20 points in the paint in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Golden State Warriors' AND g.wl_home = 'W' AND os.pts_paint_home > 20 AND g.season_id = '21996'; 14 +What is the total second chance points by the Toronto Raptors away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Toronto Raptors' AND g.wl_away = 'L'; 7535 +What is the total second chance points by the Dallas Mavericks away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Dallas Mavericks' AND g.wl_away = 'L'; 6030 +What is the total second chance points by the Denver Nuggets away in games they lost? SELECT SUM(os.pts_2nd_chance_away) as total_2nd_chance FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Denver Nuggets' AND g.wl_away = 'L'; 8510 +How many games did the San Antonio Spurs lose at home with more than 15 fast break points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.wl_home = 'L' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 8 +How many games did the Minnesota Timberwolves lose at home with more than 15 fast break points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Minnesota Timberwolves' AND g.wl_home = 'L' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 1 +How many games did the New York Knicks lose away with more than 5 times tied in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'New York Knicks' AND g.wl_away = 'L' AND os.times_tied > 5 AND g.season_id = '21996'; 7 +What is the total fast break points by the Indiana Pacers at home in games they won? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Indiana Pacers' AND g.wl_home = 'W'; 7906 +What is the total fast break points by the New Orleans Pelicans at home in games they won? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'New Orleans Pelicans' AND g.wl_home = 'W'; 2846 +What is the total fast break points by the Phoenix Suns at home in games they won? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'W'; 8195 +What is the total fast break points by the Sacramento Kings at home in games they won? SELECT SUM(os.pts_fb_home) as total_fb_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Sacramento Kings' AND g.wl_home = 'W'; 6960 +How many games did the Detroit Pistons lose at home with more than 5 lead changes in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Detroit Pistons' AND g.wl_home = 'L' AND os.lead_changes > 5 AND g.season_id = '21996'; 4 +How many games did the Golden State Warriors lose at home with more than 5 lead changes in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Golden State Warriors' AND g.wl_home = 'L' AND os.lead_changes > 5 AND g.season_id = '21996'; 8 +What is the total points in the paint by the Charlotte Hornets away when they won? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Charlotte Hornets' AND g.wl_away = 'W'; 9296 +What is the total points in the paint by the Dallas Mavericks away when they won? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Dallas Mavericks' AND g.wl_away = 'W'; 18640 +What is the total points in the paint by the Indiana Pacers away when they won? SELECT SUM(os.pts_paint_away) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Indiana Pacers' AND g.wl_away = 'W'; 15868 +What is the highest points scored by the Miami Heat away when they had more than 5 blocks? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Miami Heat' AND blk_away > 5; 130 +What is the highest points scored by the Cleveland Cavaliers away when they had more than 5 blocks? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND blk_away > 5; 132 +What is the highest points scored by the Brooklyn Nets away when they had more than 5 blocks? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Brooklyn Nets' AND blk_away > 5; 148 +What is the highest points scored by the Dallas Mavericks away when they had more than 5 blocks? SELECT MAX(pts_away) as max_points FROM game WHERE team_name_away = 'Dallas Mavericks' AND blk_away > 5; 144 +What is the average points scored by the Milwaukee Bucks away when they had more than 10 assists? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Milwaukee Bucks' AND ast_away > 10; 101.5644344 +What is the average points scored by the Detroit Pistons away when they had more than 10 assists? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Detroit Pistons' AND ast_away > 10; 99.4968661 +What is the average points scored by the Minnesota Timberwolves away when they had more than 10 assists? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Minnesota Timberwolves' AND ast_away > 10; 100.2539683 +What is the average points scored by the San Antonio Spurs away when they had more than 10 assists? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'San Antonio Spurs' AND ast_away > 10; 101.3749307 +How many games did the Memphis Grizzlies win away with more than 10 field goals made in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_away = 'Memphis Grizzlies' AND wl_away = 'W' AND fgm_away > 10 AND season_id = '21996'; 0 +How many games did the Detroit Pistons win away with more than 10 field goals made in 1996? SELECT COUNT(*) as wins FROM game WHERE team_name_away = 'Detroit Pistons' AND wl_away = 'W' AND fgm_away > 10 AND season_id = '21996'; 24 +How many games did the Atlanta Hawks lose at home with more than 5 lead changes in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Atlanta Hawks' AND g.wl_home = 'L' AND os.lead_changes > 5 AND g.season_id = '21996'; 1 +How many games did the Utah Jazz lose at home with more than 5 lead changes in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Utah Jazz' AND g.wl_home = 'L' AND os.lead_changes > 5 AND g.season_id = '21996'; 2 +How many games did the Phoenix Suns lose at home with more than 5 lead changes in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'L' AND os.lead_changes > 5 AND g.season_id = '21996'; 7 +How many games did the Dallas Mavericks lose at home with more than 10 fast break points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Dallas Mavericks' AND g.wl_home = 'L' AND os.pts_fb_home > 10 AND g.season_id = '21996'; 18 +How many games did the Toronto Raptors lose at home with more than 10 fast break points in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Toronto Raptors' AND g.wl_home = 'L' AND os.pts_fb_home > 10 AND g.season_id = '21996'; 16 +What is the total points scored by the Los Angeles Lakers at home when they had more than 5 times tied? SELECT SUM(g.pts_home) as total_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Los Angeles Lakers' AND os.times_tied > 5; 44307 +What is the total points scored by the Orlando Magic at home when they had more than 5 times tied? SELECT SUM(g.pts_home) as total_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Orlando Magic' AND os.times_tied > 5; 37570 +What is the total points scored by the Oklahoma City Thunder at home when they had more than 5 times tied? SELECT SUM(g.pts_home) as total_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'Oklahoma City Thunder' AND os.times_tied > 5; 20377 +What is the total points scored by the New Orleans Pelicans at home when they had more than 5 times tied? SELECT SUM(g.pts_home) as total_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_home = 'New Orleans Pelicans' AND os.times_tied > 5; 17514 +How many games did the Detroit Pistons play at home with more than 15 points in the paint in 1996? SELECT COUNT(*) as games FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Detroit Pistons' AND os.pts_paint_home > 15 AND g.season_id = '21996'; 33 +What is the average points scored by the Milwaukee Bucks away when they had more than 5 steals? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Milwaukee Bucks' AND stl_away > 5; 101.611985 +What is the average points scored by the Cleveland Cavaliers away when they had more than 5 steals? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Cleveland Cavaliers' AND stl_away > 5; 98.16787732 +What is the average points scored by the Charlotte Hornets away when they had more than 5 steals? SELECT AVG(pts_away) as avg_points FROM game WHERE team_name_away = 'Charlotte Hornets' AND stl_away > 5; 102.3898964 +How many games did the Orlando Magic win at home with more than 10 lead changes in 1996? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.wl_home = 'W' AND os.lead_changes > 10 AND g.season_id = '21996'; 4 +How many blocks did the Golden State Warriors have at home in 1996? SELECT SUM(blk_home) as total_blocks FROM game WHERE team_name_home = 'Golden State Warriors' AND season_id = '21996'; 162 +How many field goals made did the Minnesota Timberwolves have away in 1996? SELECT SUM(fgm_away) as total_fgm FROM game WHERE team_name_away = 'Minnesota Timberwolves' AND season_id = '21996'; 1462 +What is the highest free throws attempted by the New Orleans Pelicans away? SELECT MAX(fta_away) as max_fta FROM game WHERE team_name_away = 'New Orleans Pelicans'; 51 +What is the highest free throws attempted by the Charlotte Hornets away? SELECT MAX(fta_away) as max_fta FROM game WHERE team_name_away = 'Charlotte Hornets'; 55 +What is the highest free throws attempted by the Portland Trail Blazers away? SELECT MAX(fta_away) as max_fta FROM game WHERE team_name_away = 'Portland Trail Blazers'; 56 +What is the highest free throws attempted by the Phoenix Suns away? SELECT MAX(fta_away) as max_fta FROM game WHERE team_name_away = 'Phoenix Suns'; 67 +How many assists did the Minnesota Timberwolves have at home in 1996? SELECT SUM(ast_home) as total_assists FROM game WHERE team_name_home = 'Minnesota Timberwolves' AND season_id = '21996'; 962 +How many steals did the Dallas Mavericks have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Dallas Mavericks' AND season_id = '21996'; 332 +How many steals did the Indiana Pacers have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Indiana Pacers' AND season_id = '21996'; 300 +How many steals did the Los Angeles Lakers have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Los Angeles Lakers' AND season_id = '21996'; 366 +What is the total turnovers by the Golden State Warriors at home? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Golden State Warriors'; 25223 +What is the total turnovers by the Denver Nuggets at home? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Denver Nuggets'; 23556 +What is the total turnovers by the Philadelphia 76ers at home? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Philadelphia 76ers'; 28051 +What is the total turnovers by the Milwaukee Bucks at home? SELECT SUM(tov_home) as total_turnovers FROM game WHERE team_name_home = 'Milwaukee Bucks'; 24065 +What is the total points off turnovers by the San Antonio Spurs away? SELECT SUM(pts_off_to_away) as total_pts_off_to FROM other_stats WHERE team_abbreviation_away = 'SAS'; 12944 +What is the total points off turnovers by the Denver Nuggets away? SELECT SUM(pts_off_to_away) as total_pts_off_to FROM other_stats WHERE team_abbreviation_away = 'DEN'; 13375 +What is the total points off turnovers by the Toronto Raptors away? SELECT SUM(pts_off_to_away) as total_pts_off_to FROM other_stats WHERE team_abbreviation_away = 'TOR'; 13577 +What is the highest field goals made by the Houston Rockets at home? SELECT MAX(fgm_home) as max_fgm FROM game WHERE team_name_home = 'Houston Rockets'; 64 +What is the highest field goals made by the Detroit Pistons at home? SELECT MAX(fgm_home) as max_fgm FROM game WHERE team_name_home = 'Detroit Pistons'; 69 +What is the highest field goals made by the Denver Nuggets at home? SELECT MAX(fgm_home) as max_fgm FROM game WHERE team_name_home = 'Denver Nuggets'; 68 +How many blocks did the Minnesota Timberwolves have away in 1996? SELECT SUM(blk_away) as total_blocks FROM game WHERE team_name_away = 'Minnesota Timberwolves' AND season_id = '21996'; 242 +How many steals did the Charlotte Hornets have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Charlotte Hornets' AND season_id = '21996'; 303 +How many steals did the Phoenix Suns have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Phoenix Suns' AND season_id = '21996'; 316 +How many steals did the Miami Heat have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'Miami Heat' AND season_id = '21996'; 320 +How many steals did the San Antonio Spurs have away in 1996? SELECT SUM(stl_away) as total_steals FROM game WHERE team_name_away = 'San Antonio Spurs' AND season_id = '21996'; 316 +What is the total number of three-point field goals made by the Utah Jazz at home? SELECT SUM(fg3m_home) as total_fg3m FROM game WHERE team_name_home = 'Utah Jazz'; 9391 +What is the total number of three-point field goals made by the Detroit Pistons at home? SELECT SUM(fg3m_home) as total_fg3m FROM game WHERE team_name_home = 'Detroit Pistons'; 9533 +What is the total number of three-point field goals made by the San Antonio Spurs at home? SELECT SUM(fg3m_home) as total_fg3m FROM game WHERE team_name_home = 'San Antonio Spurs'; 10361 +What is the total number of three-point field goals made by the Houston Rockets at home? SELECT SUM(fg3m_home) as total_fg3m FROM game WHERE team_name_home = 'Houston Rockets'; 12967 +What is the highest number of personal fouls committed by the Portland Trail Blazers away? SELECT MAX(pf_away) as max_pf FROM game WHERE team_name_away = 'Portland Trail Blazers'; 41 +What is the highest number of personal fouls committed by the Memphis Grizzlies away? SELECT MAX(pf_away) as max_pf FROM game WHERE team_name_away = 'Memphis Grizzlies'; 37 +What is the highest number of personal fouls committed by the Philadelphia 76ers away? SELECT MAX(pf_away) as max_pf FROM game WHERE team_name_away = 'Philadelphia 76ers'; 39 +What is the highest number of personal fouls committed by the New Orleans Pelicans away? SELECT MAX(pf_away) as max_pf FROM game WHERE team_name_away = 'New Orleans Pelicans'; 35 +How many games did the Chicago Bulls win away in the 1996 season? SELECT COUNT(*) as away_wins FROM game WHERE team_name_away = 'Chicago Bulls' AND wl_away = 'W' AND season_id = '21996'; 30 +What is the total number of minutes played by the Toronto Raptors at home? SELECT SUM(min) as total_minutes FROM game WHERE team_name_home = 'Toronto Raptors'; 287180 +What is the total number of minutes played by the Houston Rockets at home? SELECT SUM(min) as total_minutes FROM game WHERE team_name_home = 'Houston Rockets'; 524340 +What is the total number of minutes played by the Orlando Magic at home? SELECT SUM(min) as total_minutes FROM game WHERE team_name_home = 'Orlando Magic'; 344830 +What is the lowest number of points scored by the Detroit Pistons at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Detroit Pistons'; 64 +What is the lowest number of points scored by the San Antonio Spurs at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'San Antonio Spurs'; 64 +What is the lowest number of points scored by the Milwaukee Bucks at home? SELECT MIN(pts_home) as min_points FROM game WHERE team_name_home = 'Milwaukee Bucks'; 65 +How many points in the paint did the San Antonio Spurs score at home in 1996? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'San Antonio Spurs' AND g.season_id = '21996'; 1454 +How many points in the paint did the Houston Rockets score at home in 1996? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Houston Rockets' AND g.season_id = '21996'; 1386 +How many points in the paint did the Denver Nuggets score at home in 1996? SELECT SUM(os.pts_paint_home) as total_pts_paint FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Denver Nuggets' AND g.season_id = '21996'; 1242 +What is the largest lead the Brooklyn Nets had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'BKN'; 45 +What is the largest lead the Dallas Mavericks had away? SELECT MAX(largest_lead_away) as max_lead FROM other_stats WHERE team_abbreviation_away = 'DAL'; 53 +How many games did the Phoenix Suns lose at home with more than 30 points in the paint in 1996? SELECT COUNT(*) as losses FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'L' AND os.pts_paint_home > 30 AND g.season_id = '21996'; 12 +How many games did the New York Knicks win at home with more than 15 fast break points in the 1996 season? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'New York Knicks' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 2 +How many games did the Phoenix Suns win at home with more than 15 fast break points in the 1996 season? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Phoenix Suns' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 6 +How many games did the Boston Celtics win at home with more than 15 fast break points in the 1996 season? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Boston Celtics' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 4 +How many games did the Orlando Magic win at home with more than 15 fast break points in the 1996 season? SELECT COUNT(*) as wins FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Orlando Magic' AND g.wl_home = 'W' AND os.pts_fb_home > 15 AND g.season_id = '21996'; 8 +What is the highest number of points scored by the Charlotte Hornets away when they had more than 10 second chance points? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Charlotte Hornets' AND os.pts_2nd_chance_away > 10; 158 +What is the highest number of points scored by the Minnesota Timberwolves away when they had more than 10 second chance points? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Minnesota Timberwolves' AND os.pts_2nd_chance_away > 10; 151 +What is the highest number of points scored by the Washington Wizards away when they had more than 10 second chance points? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'Washington Wizards' AND os.pts_2nd_chance_away > 10; 147 +What is the highest number of points scored by the San Antonio Spurs away when they had more than 10 second chance points? SELECT MAX(g.pts_away) as max_points FROM game g JOIN other_stats os ON g.game_id = os.game_id WHERE g.team_name_away = 'San Antonio Spurs' AND os.pts_2nd_chance_away > 10; 157 +How many overtime home games did the Phoenix Suns play? (Overtime = 5+ minute periods) SELECT COUNT(*) FROM game WHERE team_name_home = 'Phoenix Suns' AND min > 288; -- 48 regulation minutes * 60 seconds / 10 (min column format) 16 +How many overtime home games did the Utah Jazz play? (Overtime = 5+ minute periods) SELECT COUNT(*) FROM game WHERE team_name_home = 'Utah Jazz' AND min > 288; -- 48 regulation minutes * 60 seconds / 10 (min column format) 10 +How many overtime home games did the Chicago Bulls play? (Overtime = 5+ minute periods) SELECT COUNT(*) FROM game WHERE team_name_home = 'Chicago Bulls' AND min > 288; -- 48 regulation minutes * 60 seconds / 10 (min column format) 21 +How many overtime home games did the Detroit Pistons play? (Overtime = 5+ minute periods) SELECT COUNT(*) FROM game WHERE team_name_home = 'Detroit Pistons' AND min > 288; -- 48 regulation minutes * 60 seconds / 10 (min column format) 14 +What's the total second-chance points the Utah Jazz scored in away losses during the 2019 season? SELECT SUM(os.pts_2nd_chance_away) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_away = 'Utah Jazz' AND g.wl_away = 'L' AND g.season_id = '22019'; 182 +What's the highest number of team turnovers the Philadelphia 76ers had in any home game during the 2018 season? SELECT MAX(os.team_turnovers_home) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Philadelphia 76ers' AND g.season_id = '22018'; 2 +What's the highest number of team turnovers the Utah Jazz had in any home game during the 2018 season? SELECT MAX(os.team_turnovers_home) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Utah Jazz' AND g.season_id = '22018'; 2 +What's the highest number of team turnovers the Atlanta Hawks had in any home game during the 2018 season? SELECT MAX(os.team_turnovers_home) FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.team_name_home = 'Atlanta Hawks' AND g.season_id = '22018'; 2 +What is the highest field goal percentage recorded by the Atlanta Hawks in a home game? SELECT MAX(fg_pct_home) FROM game WHERE team_name_home = 'Atlanta Hawks'; 0.675 +What is the highest field goal percentage recorded by the Toronto Raptors in a home game? SELECT MAX(fg_pct_home) FROM game WHERE team_name_home = 'Toronto Raptors'; 0.65 +What is the highest field goal percentage recorded by the Oklahoma City Thunder in a home game? SELECT MAX(fg_pct_home) FROM game WHERE team_name_home = 'Oklahoma City Thunder'; 0.64 +What is the highest field goal percentage recorded by the Denver Nuggets in a home game? SELECT MAX(fg_pct_home) FROM game WHERE team_name_home = 'Denver Nuggets'; 0.659 +What is the total number of turnovers committed by the Toronto Raptors at home in the 2021 season? SELECT SUM(tov_home) FROM game WHERE team_name_home = 'Toronto Raptors' AND season_id = '22021'; 501 +How many home games did the Denver Nuggets win in the 2022 season? SELECT COUNT(*) AS home_wins FROM game WHERE team_name_home = 'Denver Nuggets' AND wl_home = 'W' AND season_id = '22022'; 34 +What is the most three-pointers the Utah Jazz have made in a single game? SELECT MAX(fg3m_home) AS max_three_pointers FROM game WHERE team_name_home = 'Utah Jazz'; 28 +What is the most three-pointers the Houston Rockets have made in a single game? SELECT MAX(fg3m_home) AS max_three_pointers FROM game WHERE team_name_home = 'Houston Rockets'; 27 +What is the most three-pointers the Washington Wizards have made in a single game? SELECT MAX(fg3m_home) AS max_three_pointers FROM game WHERE team_name_home = 'Washington Wizards'; 20 +What is the largest lead the New York Knicks have had in any game? SELECT MAX(largest_lead_home) AS largest_lead FROM other_stats WHERE team_abbreviation_home = 'NYK'; 49 +What is the largest lead the Oklahoma City Thunder have had in any game? SELECT MAX(largest_lead_home) AS largest_lead FROM other_stats WHERE team_abbreviation_home = 'OKC'; 43 +What is the largest lead the New Orleans Pelicans have had in any game? SELECT MAX(largest_lead_home) AS largest_lead FROM other_stats WHERE team_abbreviation_home = 'NOP'; 53 +What is the most total rebounds the Washington Wizards have recorded in a game? SELECT MAX(reb_home) AS max_rebounds FROM game WHERE team_name_home = 'Washington Wizards'; 72 +What is the most total rebounds the San Antonio Spurs have recorded in a game? SELECT MAX(reb_home) AS max_rebounds FROM game WHERE team_name_home = 'San Antonio Spurs'; 75 +What is the most total rebounds the New Orleans Pelicans have recorded in a game? SELECT MAX(reb_home) AS max_rebounds FROM game WHERE team_name_home = 'New Orleans Pelicans'; 70 +What is the most total rebounds the Miami Heat have recorded in a game? SELECT MAX(reb_home) AS max_rebounds FROM game WHERE team_name_home = 'Miami Heat'; 69 +How many times have the Milwaukee Bucks scored more than 120 points in a game? SELECT COUNT(*) AS high_scoring_games FROM game WHERE team_name_home = 'Milwaukee Bucks' AND pts_home > 120; 345 +How many times have the Portland Trail Blazers scored more than 120 points in a game? SELECT COUNT(*) AS high_scoring_games FROM game WHERE team_name_home = 'Portland Trail Blazers' AND pts_home > 120; 338 +How many times have the Indiana Pacers scored more than 120 points in a game? SELECT COUNT(*) AS high_scoring_games FROM game WHERE team_name_home = 'Indiana Pacers' AND pts_home > 120; 225 +What is the most fast break points the Portland Trail Blazers have scored in a single game? SELECT MAX(pts_fb_home) AS max_fast_break_points FROM other_stats WHERE team_abbreviation_home = 'POR'; 34 +What is the most fast break points the Houston Rockets have scored in a single game? SELECT MAX(pts_fb_home) AS max_fast_break_points FROM other_stats WHERE team_abbreviation_home = 'HOU'; 37 +What is the most fast break points the Brooklyn Nets have scored in a single game? SELECT MAX(pts_fb_home) AS max_fast_break_points FROM other_stats WHERE team_abbreviation_home = 'BKN'; 38 +What is the highest number of assists recorded by the Detroit Pistons at home in a single game? SELECT MAX(ast_home) FROM game WHERE team_abbreviation_home = 'DET'; 43 +What is the highest number of assists recorded by the Philadelphia 76ers at home in a single game? SELECT MAX(ast_home) FROM game WHERE team_abbreviation_home = 'PHI'; 43 +What is the highest number of assists recorded by the Portland Trail Blazers at home in a single game? SELECT MAX(ast_home) FROM game WHERE team_abbreviation_home = 'POR'; 49 +What is the highest number of assists recorded by the Toronto Raptors at home in a single game? SELECT MAX(ast_home) FROM game WHERE team_abbreviation_home = 'TOR'; 40 +How many games did the New York Knicks play at home in the 1996 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'NYK' AND season_id = '21996'; 41 +How many games did the Cleveland Cavaliers play at home in the 1996 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CLE' AND season_id = '21996'; 41 +What is the total number of lead changes in all games played by the Minnesota Timberwolves in the 2010 season? SELECT SUM(os.lead_changes) AS total_lead_changes FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22010' AND (g.team_abbreviation_home = 'MIN' OR g.team_abbreviation_away = 'MIN'); 436 +What is the total number of lead changes in all games played by the Detroit Pistons in the 2010 season? SELECT SUM(os.lead_changes) AS total_lead_changes FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22010' AND (g.team_abbreviation_home = 'DET' OR g.team_abbreviation_away = 'DET'); 474 +How many fast-break points did the Los Angeles Lakers score in away games during the 2015 season? SELECT SUM(os.pts_fb_away) AS total_fast_break_points FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22015' AND g.team_abbreviation_away = 'LAL'; 476 +In the 2019 season, how many total points off turnovers did the Indiana Pacers score in home games? SELECT SUM(os.pts_off_to_home) AS total_points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22019' AND g.team_abbreviation_home = 'IND'; 526 +In the 2019 season, how many total points off turnovers did the Washington Wizards score in home games? SELECT SUM(os.pts_off_to_home) AS total_points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22019' AND g.team_abbreviation_home = 'WAS'; 431 +In the 2019 season, how many total points off turnovers did the Miami Heat score in home games? SELECT SUM(os.pts_off_to_home) AS total_points_off_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22019' AND g.team_abbreviation_home = 'MIA'; 450 +How many total turnovers did the Houston Rockets commit in away games during the 2014 season? SELECT SUM(os.total_turnovers_away) AS total_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22014' AND g.team_abbreviation_away = 'HOU'; 623 +How many total turnovers did the Washington Wizards commit in away games during the 2014 season? SELECT SUM(os.total_turnovers_away) AS total_turnovers FROM other_stats os JOIN game g ON os.game_id = g.game_id WHERE g.season_id = '22014' AND g.team_abbreviation_away = 'WAS'; 530 +What was the largest lead the Minnesota Timberwolves had in any game in the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_abbreviation_home = 'MIN' AND game.season_id = '22018'; 36 +What was the largest lead the Indiana Pacers had in any game in the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_abbreviation_home = 'IND' AND game.season_id = '22018'; 46 +What was the largest lead the Houston Rockets had in any game in the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_abbreviation_home = 'HOU' AND game.season_id = '22018'; 44 +What was the largest lead the New York Knicks had in any game in the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_abbreviation_home = 'NYK' AND game.season_id = '22018'; 34 +Which season had the highest total points scored by the Utah Jazz at home? SELECT season_id, SUM(pts_home) AS total_points FROM game WHERE team_abbreviation_home = 'UTA' GROUP BY season_id ORDER BY total_points DESC LIMIT 1; 22022 | 4836.0 +Which season had the highest total points scored by the Minnesota Timberwolves at home? SELECT season_id, SUM(pts_home) AS total_points FROM game WHERE team_abbreviation_home = 'MIN' GROUP BY season_id ORDER BY total_points DESC LIMIT 1; 22022 | 4753.0 +Which season had the highest total points scored by the Indiana Pacers at home? SELECT season_id, SUM(pts_home) AS total_points FROM game WHERE team_abbreviation_home = 'IND' GROUP BY season_id ORDER BY total_points DESC LIMIT 1; 22022 | 4876.0 +How many points did the Phoenix Suns score in their first home game of the 2015 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'PHX' AND season_id = '22015' ORDER BY game_date ASC LIMIT 1; 95 +How many points did the Los Angeles Lakers score in their first home game of the 2015 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'LAL' AND season_id = '22015' ORDER BY game_date ASC LIMIT 1; 111 +How many points did the Detroit Pistons score in their first home game of the 2015 season? SELECT pts_home FROM game WHERE team_abbreviation_home = 'DET' AND season_id = '22015' ORDER BY game_date ASC LIMIT 1; 92 +What is the average number of fast break points the Portland Trail Blazers scored per game in the 2018 season? SELECT AVG(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'POR' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22018'); 10.46153846 +Find the game where the Orlando Magic had the largest lead at home in the 2013 season. SELECT game_id, largest_lead_home FROM other_stats WHERE team_abbreviation_home = 'ORL' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22013') ORDER BY largest_lead_home DESC LIMIT 1; 0021300689 | 25 +Find the game where the Milwaukee Bucks had the largest lead at home in the 2013 season. SELECT game_id, largest_lead_home FROM other_stats WHERE team_abbreviation_home = 'MIL' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22013') ORDER BY largest_lead_home DESC LIMIT 1; 0021300894 | 33 +How many games did the Golden State Warriors play at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22017'; 41 +How many games did the Portland Trail Blazers play at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'POR' AND season_id = '22017'; 41 +Find the number of times the Phoenix Suns played a game on January 10, 2015. SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'PHX' OR team_abbreviation_away = 'PHX') AND DATE(game_date) = '2015-01-10'; 0 +Find the number of times the Washington Wizards played a game on January 10, 2015. SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'WAS' OR team_abbreviation_away = 'WAS') AND DATE(game_date) = '2015-01-10'; 0 +Find the number of times the New Orleans Pelicans played a game on January 10, 2015. SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'NOP' OR team_abbreviation_away = 'NOP') AND DATE(game_date) = '2015-01-10'; 0 +Find the number of times the Golden State Warriors played a game on January 10, 2015. SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'GSW' OR team_abbreviation_away = 'GSW') AND DATE(game_date) = '2015-01-10'; 0 +Find the average number of assists the Houston Rockets had per game at home in the 2016 season. SELECT AVG(ast_home) FROM game WHERE team_abbreviation_home = 'HOU' AND season_id = '22016'; 26.24390244 +How many total games did the Indiana Pacers play in the 2015 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'IND' OR team_abbreviation_away = 'IND') AND season_id = '22015'; 82 +How many total games did the Portland Trail Blazers play in the 2015 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'POR' OR team_abbreviation_away = 'POR') AND season_id = '22015'; 82 +How many times did the Charlotte Hornets win at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CHA' AND season_id = '22017' AND pts_home > pts_away; 21 +How many times did the Milwaukee Bucks win at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'MIL' AND season_id = '22017' AND pts_home > pts_away; 25 +How many times did the Utah Jazz win at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'UTA' AND season_id = '22017' AND pts_home > pts_away; 28 +How many times did the Oklahoma City Thunder win at home in the 2017 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'OKC' AND season_id = '22017' AND pts_home > pts_away; 27 +Find the average points per game for the Orlando Magic in the 2006 season. SELECT AVG(points) FROM ( SELECT pts_home AS points FROM game WHERE team_abbreviation_home = 'ORL' AND season_id = '22006' UNION ALL SELECT pts_away AS points FROM game WHERE team_abbreviation_away = 'ORL' AND season_id = '22006' ) AS team_points; 94.76829268 +Find the average points per game for the Cleveland Cavaliers in the 2006 season. SELECT AVG(points) FROM ( SELECT pts_home AS points FROM game WHERE team_abbreviation_home = 'CLE' AND season_id = '22006' UNION ALL SELECT pts_away AS points FROM game WHERE team_abbreviation_away = 'CLE' AND season_id = '22006' ) AS team_points; 96.75609756 +Find the average points per game for the Portland Trail Blazers in the 2006 season. SELECT AVG(points) FROM ( SELECT pts_home AS points FROM game WHERE team_abbreviation_home = 'POR' AND season_id = '22006' UNION ALL SELECT pts_away AS points FROM game WHERE team_abbreviation_away = 'POR' AND season_id = '22006' ) AS team_points; 94.1097561 +Find the average points per game for the Washington Wizards in the 2006 season. SELECT AVG(points) FROM ( SELECT pts_home AS points FROM game WHERE team_abbreviation_home = 'WAS' AND season_id = '22006' UNION ALL SELECT pts_away AS points FROM game WHERE team_abbreviation_away = 'WAS' AND season_id = '22006' ) AS team_points; 104.3414634 +Find the average number of assists per game for the Golden State Warriors in the 2016 season. SELECT AVG(assists) FROM ( SELECT ast_home AS assists FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22016' UNION ALL SELECT ast_away AS assists FROM game WHERE team_abbreviation_away = 'GSW' AND season_id = '22016' ) AS team_assists; 30.37804878 +Find the average number of assists per game for the Utah Jazz in the 2016 season. SELECT AVG(assists) FROM ( SELECT ast_home AS assists FROM game WHERE team_abbreviation_home = 'UTA' AND season_id = '22016' UNION ALL SELECT ast_away AS assists FROM game WHERE team_abbreviation_away = 'UTA' AND season_id = '22016' ) AS team_assists; 20.13414634 +Find the average number of three-pointers made per game by the New Orleans Pelicans in the 2015 season. SELECT AVG(fg3m) FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'NOP' AND season_id = '22015' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'NOP' AND season_id = '22015' ) AS three_pointers; 8.56097561 +Find the average number of three-pointers made per game by the Utah Jazz in the 2015 season. SELECT AVG(fg3m) FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'UTA' AND season_id = '22015' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'UTA' AND season_id = '22015' ) AS three_pointers; 8.463414634 +Find the average number of three-pointers made per game by the Los Angeles Lakers in the 2015 season. SELECT AVG(fg3m) FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'LAL' AND season_id = '22015' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'LAL' AND season_id = '22015' ) AS three_pointers; 7.792682927 +Find the average number of three-pointers made per game by the Indiana Pacers in the 2015 season. SELECT AVG(fg3m) FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'IND' AND season_id = '22015' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'IND' AND season_id = '22015' ) AS three_pointers; 8.085365854 +How many games did the Sacramento Kings win at home in the 2018 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'SAC' AND season_id = '22018' AND wl_home = 'W'; 24 +How many games did the Boston Celtics win at home in the 2018 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'BOS' AND season_id = '22018' AND wl_home = 'W'; 28 +What is the average number of points scored by the Chicago Bulls on the road during the 2015 season? SELECT AVG(pts_away) FROM game WHERE team_abbreviation_away = 'CHI' AND season_id = '22015'; 101.4634146 +What is the average number of points scored by the Indiana Pacers on the road during the 2015 season? SELECT AVG(pts_away) FROM game WHERE team_abbreviation_away = 'IND' AND season_id = '22015'; 101.4146341 +What is the average number of points scored by the Houston Rockets on the road during the 2015 season? SELECT AVG(pts_away) FROM game WHERE team_abbreviation_away = 'HOU' AND season_id = '22015'; 106.8292683 +What is the average number of points scored by the New York Knicks on the road during the 2015 season? SELECT AVG(pts_away) FROM game WHERE team_abbreviation_away = 'NYK' AND season_id = '22015'; 97.87804878 +What is the total number of turnovers committed by the Miami Heat in home games during the 1998 season? SELECT SUM(tov_home) FROM game WHERE team_abbreviation_home = 'MIA' AND season_id = '21998'; 348 +How many times did the Los Angeles Lakers score at least 120 points in a game during the 1992 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'LAL' AND pts_home >= 120 OR team_abbreviation_away = 'LAL' AND pts_away >= 120) AND season_id = '21992'; 7 +How many times did the Dallas Mavericks score at least 120 points in a game during the 1992 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'DAL' AND pts_home >= 120 OR team_abbreviation_away = 'DAL' AND pts_away >= 120) AND season_id = '21992'; 2 +How many times did the Detroit Pistons score at least 120 points in a game during the 1992 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'DET' AND pts_home >= 120 OR team_abbreviation_away = 'DET' AND pts_away >= 120) AND season_id = '21992'; 5 +What is the most points the New Orleans Pelicans have scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'New Orleans Pelicans' ORDER BY pts_home DESC LIMIT 1; 149 +What is the most points the Dallas Mavericks have scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Dallas Mavericks' ORDER BY pts_home DESC LIMIT 1; 151 +What is the most points the Brooklyn Nets have scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Brooklyn Nets' ORDER BY pts_home DESC LIMIT 1; 145 +What is the most points the Orlando Magic have scored in a single home game? SELECT pts_home FROM game WHERE team_name_home = 'Orlando Magic' ORDER BY pts_home DESC LIMIT 1; 155 +How many total rebounds did the Miami Heat have in away games during the 2013 season? SELECT SUM(reb_away) AS total_rebounds FROM game WHERE season_id = '22013' AND team_name_away = 'Miami Heat'; 1494 +How many total rebounds did the Washington Wizards have in away games during the 2013 season? SELECT SUM(reb_away) AS total_rebounds FROM game WHERE season_id = '22013' AND team_name_away = 'Washington Wizards'; 1761 +How many total rebounds did the Utah Jazz have in away games during the 2013 season? SELECT SUM(reb_away) AS total_rebounds FROM game WHERE season_id = '22013' AND team_name_away = 'Utah Jazz'; 1672 +How many total rebounds did the Denver Nuggets have in away games during the 2013 season? SELECT SUM(reb_away) AS total_rebounds FROM game WHERE season_id = '22013' AND team_name_away = 'Denver Nuggets'; 1803 +What is the highest number of offensive rebounds recorded by the Portland Trail Blazers in a single game? SELECT game_id, game_date, team_name_home, oreb_home AS offensive_rebounds FROM game WHERE team_name_home = 'Portland Trail Blazers' UNION ALL SELECT game_id, game_date, team_name_away, oreb_away AS offensive_rebounds FROM game WHERE team_name_away = 'Portland Trail Blazers' ORDER BY offensive_rebounds DESC LIMIT 1; 0028500868 | 1986-04-01 00:00:00 | Portland Trail Blazers | 31.0 +What is the highest number of offensive rebounds recorded by the Atlanta Hawks in a single game? SELECT game_id, game_date, team_name_home, oreb_home AS offensive_rebounds FROM game WHERE team_name_home = 'Atlanta Hawks' UNION ALL SELECT game_id, game_date, team_name_away, oreb_away AS offensive_rebounds FROM game WHERE team_name_away = 'Atlanta Hawks' ORDER BY offensive_rebounds DESC LIMIT 1; 0028500744 | 1986-03-11 00:00:00 | Atlanta Hawks | 31.0 +What is the highest number of offensive rebounds recorded by the Milwaukee Bucks in a single game? SELECT game_id, game_date, team_name_home, oreb_home AS offensive_rebounds FROM game WHERE team_name_home = 'Milwaukee Bucks' UNION ALL SELECT game_id, game_date, team_name_away, oreb_away AS offensive_rebounds FROM game WHERE team_name_away = 'Milwaukee Bucks' ORDER BY offensive_rebounds DESC LIMIT 1; 0021401022 | 2015-03-20 00:00:00 | Milwaukee Bucks | 38.0 +What is the highest number of offensive rebounds recorded by the Memphis Grizzlies in a single game? SELECT game_id, game_date, team_name_home, oreb_home AS offensive_rebounds FROM game WHERE team_name_home = 'Memphis Grizzlies' UNION ALL SELECT game_id, game_date, team_name_away, oreb_away AS offensive_rebounds FROM game WHERE team_name_away = 'Memphis Grizzlies' ORDER BY offensive_rebounds DESC LIMIT 1; 0020300281 | 2003-12-07 00:00:00 | Memphis Grizzlies | 28.0 +How many total games did the Houston Rockets play in the 2015 season? SELECT COUNT(*) AS total_games FROM game WHERE season_id = '22015' AND (team_name_home = 'Houston Rockets' OR team_name_away = 'Houston Rockets'); 82 +How many total games did the Denver Nuggets play in the 2015 season? SELECT COUNT(*) AS total_games FROM game WHERE season_id = '22015' AND (team_name_home = 'Denver Nuggets' OR team_name_away = 'Denver Nuggets'); 82 +How many total games did the Charlotte Hornets play in the 2015 season? SELECT COUNT(*) AS total_games FROM game WHERE season_id = '22015' AND (team_name_home = 'Charlotte Hornets' OR team_name_away = 'Charlotte Hornets'); 82 +How many field goals did the Toronto Raptors make in total during the 1995 season? SELECT SUM(CASE WHEN team_name_home = 'Toronto Raptors' THEN fgm_home ELSE 0 END) + SUM(CASE WHEN team_name_away = 'Toronto Raptors' THEN fgm_away ELSE 0 END) AS total_field_goals FROM game WHERE season_id = '21995'; 3084 +How many field goals did the Memphis Grizzlies make in total during the 1995 season? SELECT SUM(CASE WHEN team_name_home = 'Memphis Grizzlies' THEN fgm_home ELSE 0 END) + SUM(CASE WHEN team_name_away = 'Memphis Grizzlies' THEN fgm_away ELSE 0 END) AS total_field_goals FROM game WHERE season_id = '21995'; 0 +What is the highest-scoring away game for the Milwaukee Bucks? SELECT game_id, game_date, pts_away FROM game WHERE team_name_away = 'Milwaukee Bucks' ORDER BY pts_away DESC LIMIT 1; 0028100679 | 1982-03-06 00:00:00 | 166.0 +What is the highest-scoring away game for the Denver Nuggets? SELECT game_id, game_date, pts_away FROM game WHERE team_name_away = 'Denver Nuggets' ORDER BY pts_away DESC LIMIT 1; 0028300943 | 1984-04-15 00:00:00 | 154.0 +What is the highest-scoring away game for the Houston Rockets? SELECT game_id, game_date, pts_away FROM game WHERE team_name_away = 'Houston Rockets' ORDER BY pts_away DESC LIMIT 1; 0021900061 | 2019-10-30 00:00:00 | 159.0 +What is the highest-scoring away game for the Orlando Magic? SELECT game_id, game_date, pts_away FROM game WHERE team_name_away = 'Orlando Magic' ORDER BY pts_away DESC LIMIT 1; 0029400678 | 1995-02-20 00:00:00 | 152.0 +What is the highest number of rebounds recorded by the Portland Trail Blazers in a home game? SELECT MAX(reb_home) FROM game WHERE team_name_home = 'Portland Trail Blazers'; 70 +What is the highest number of rebounds recorded by the Orlando Magic in a home game? SELECT MAX(reb_home) FROM game WHERE team_name_home = 'Orlando Magic'; 69 +How many turnovers did the Boston Celtics commit at home during the 1998 season? SELECT SUM(tov_home) FROM game WHERE team_name_home = 'Boston Celtics' AND season_id = '21998'; 415 +How many turnovers did the Dallas Mavericks commit at home during the 1998 season? SELECT SUM(tov_home) FROM game WHERE team_name_home = 'Dallas Mavericks' AND season_id = '21998'; 343 +How many turnovers did the Cleveland Cavaliers commit at home during the 1998 season? SELECT SUM(tov_home) FROM game WHERE team_name_home = 'Cleveland Cavaliers' AND season_id = '21998'; 394 +What is the highest number of points the Charlotte Hornets have scored in a single game during the 2016 season? SELECT MAX(pts) AS max_points FROM ( SELECT pts_home AS pts FROM game WHERE team_abbreviation_home = 'CHA' AND season_id = '22016' UNION ALL SELECT pts_away AS pts FROM game WHERE team_abbreviation_away = 'CHA' AND season_id = '22016' ); 123 +What is the highest number of points the Atlanta Hawks have scored in a single game during the 2016 season? SELECT MAX(pts) AS max_points FROM ( SELECT pts_home AS pts FROM game WHERE team_abbreviation_home = 'ATL' AND season_id = '22016' UNION ALL SELECT pts_away AS pts FROM game WHERE team_abbreviation_away = 'ATL' AND season_id = '22016' ); 142 +How many total assists did the Minnesota Timberwolves have in the 1999 season? SELECT SUM(ast) AS total_assists FROM ( SELECT ast_home AS ast FROM game WHERE team_abbreviation_home = 'MIN' AND season_id = '21999' UNION ALL SELECT ast_away AS ast FROM game WHERE team_abbreviation_away = 'MIN' AND season_id = '21999' ); 2205 +How many total assists did the Philadelphia 76ers have in the 1999 season? SELECT SUM(ast) AS total_assists FROM ( SELECT ast_home AS ast FROM game WHERE team_abbreviation_home = 'PHI' AND season_id = '21999' UNION ALL SELECT ast_away AS ast FROM game WHERE team_abbreviation_away = 'PHI' AND season_id = '21999' ); 1817 +What is the most offensive rebounds the Minnesota Timberwolves have had in a single game in the 2011 season? SELECT MAX(oreb) AS max_offensive_rebounds FROM ( SELECT oreb_home AS oreb FROM game WHERE team_abbreviation_home = 'MIN' AND season_id = '22011' UNION ALL SELECT oreb_away AS oreb FROM game WHERE team_abbreviation_away = 'MIN' AND season_id = '22011' ); 24 +What is the most offensive rebounds the Houston Rockets have had in a single game in the 2011 season? SELECT MAX(oreb) AS max_offensive_rebounds FROM ( SELECT oreb_home AS oreb FROM game WHERE team_abbreviation_home = 'HOU' AND season_id = '22011' UNION ALL SELECT oreb_away AS oreb FROM game WHERE team_abbreviation_away = 'HOU' AND season_id = '22011' ); 19 +What is the most offensive rebounds the Miami Heat have had in a single game in the 2011 season? SELECT MAX(oreb) AS max_offensive_rebounds FROM ( SELECT oreb_home AS oreb FROM game WHERE team_abbreviation_home = 'MIA' AND season_id = '22011' UNION ALL SELECT oreb_away AS oreb FROM game WHERE team_abbreviation_away = 'MIA' AND season_id = '22011' ); 18 +How many total fast break points did the Brooklyn Nets have during the 2015 season? SELECT SUM(pts_fb) AS total_fast_break_points FROM ( SELECT pts_fb_home AS pts_fb FROM other_stats WHERE team_abbreviation_home = 'BKN' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22015') UNION ALL SELECT pts_fb_away AS pts_fb FROM other_stats WHERE team_abbreviation_away = 'BKN' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22015') ); 777 +How many total fast break points did the Chicago Bulls have during the 2015 season? SELECT SUM(pts_fb) AS total_fast_break_points FROM ( SELECT pts_fb_home AS pts_fb FROM other_stats WHERE team_abbreviation_home = 'CHI' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22015') UNION ALL SELECT pts_fb_away AS pts_fb FROM other_stats WHERE team_abbreviation_away = 'CHI' AND game_id IN (SELECT game_id FROM game WHERE season_id = '22015') ); 697 +How many total lead changes occurred in all Portland Trail Blazers games during the 2018 season? SELECT SUM(lead_changes) AS total_lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22018' AND (team_abbreviation_home = 'POR' OR team_abbreviation_away = 'POR') ); 545 +How many total lead changes occurred in all Oklahoma City Thunder games during the 2018 season? SELECT SUM(lead_changes) AS total_lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22018' AND (team_abbreviation_home = 'OKC' OR team_abbreviation_away = 'OKC') ); 425 +What is the highest number of three-pointers made by the Oklahoma City Thunder in a single game during the 2017 season? SELECT MAX(fg3m) AS max_three_pointers FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'OKC' AND season_id = '22017' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'OKC' AND season_id = '22017' ); 20 +What is the highest number of three-pointers made by the Brooklyn Nets in a single game during the 2017 season? SELECT MAX(fg3m) AS max_three_pointers FROM ( SELECT fg3m_home AS fg3m FROM game WHERE team_abbreviation_home = 'BKN' AND season_id = '22017' UNION ALL SELECT fg3m_away AS fg3m FROM game WHERE team_abbreviation_away = 'BKN' AND season_id = '22017' ); 24 +How many total rebounds did the Milwaukee Bucks grab in the 1985 season? SELECT SUM(reb) AS total_rebounds FROM ( SELECT reb_home AS reb FROM game WHERE team_abbreviation_home = 'MIL' AND season_id = '21985' UNION ALL SELECT reb_away AS reb FROM game WHERE team_abbreviation_away = 'MIL' AND season_id = '21985' ); 3609 +What was the highest field goal percentage achieved by the Phoenix Suns in a single game in the 2003 season? SELECT MAX(fg_pct) AS highest_fg_percentage FROM ( SELECT fg_pct_home AS fg_pct FROM game WHERE team_abbreviation_home = 'PHX' AND season_id = '22003' UNION ALL SELECT fg_pct_away AS fg_pct FROM game WHERE team_abbreviation_away = 'PHX' AND season_id = '22003' ); 0.57 +What was the highest field goal percentage achieved by the San Antonio Spurs in a single game in the 2003 season? SELECT MAX(fg_pct) AS highest_fg_percentage FROM ( SELECT fg_pct_home AS fg_pct FROM game WHERE team_abbreviation_home = 'SAS' AND season_id = '22003' UNION ALL SELECT fg_pct_away AS fg_pct FROM game WHERE team_abbreviation_away = 'SAS' AND season_id = '22003' ); 0.575 +How many total lead changes occurred in all Denver Nuggets games during the 2006 season? SELECT SUM(lead_changes) AS total_lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22006' AND (team_abbreviation_home = 'DEN' OR team_abbreviation_away = 'DEN') ); 414 +What was the highest number of assists recorded by the Indiana Pacers in a single game during the 2015 season? SELECT MAX(ast) AS max_assists FROM ( SELECT ast_home AS ast FROM game WHERE team_abbreviation_home = 'IND' AND season_id = '22015' UNION ALL SELECT ast_away AS ast FROM game WHERE team_abbreviation_away = 'IND' AND season_id = '22015' ); 34 +What was the highest number of assists recorded by the Los Angeles Lakers in a single game during the 2015 season? SELECT MAX(ast) AS max_assists FROM ( SELECT ast_home AS ast FROM game WHERE team_abbreviation_home = 'LAL' AND season_id = '22015' UNION ALL SELECT ast_away AS ast FROM game WHERE team_abbreviation_away = 'LAL' AND season_id = '22015' ); 26 +What was the highest number of assists recorded by the Phoenix Suns in a single game during the 2015 season? SELECT MAX(ast) AS max_assists FROM ( SELECT ast_home AS ast FROM game WHERE team_abbreviation_home = 'PHX' AND season_id = '22015' UNION ALL SELECT ast_away AS ast FROM game WHERE team_abbreviation_away = 'PHX' AND season_id = '22015' ); 31 +How many free throws did the Oklahoma City Thunder attempt in the 2013 season? SELECT SUM(fta) AS total_free_throws_attempted FROM ( SELECT fta_home AS fta FROM game WHERE team_abbreviation_home = 'OKC' AND season_id = '22013' UNION ALL SELECT fta_away AS fta FROM game WHERE team_abbreviation_away = 'OKC' AND season_id = '22013' ); 2052 +What was the lowest field goal percentage recorded by the Indiana Pacers in any game of the 2005 season? SELECT MIN(fg_pct) AS lowest_fg_percentage FROM ( SELECT fg_pct_home AS fg_pct FROM game WHERE team_abbreviation_home = 'IND' AND season_id = '22005' UNION ALL SELECT fg_pct_away FROM game WHERE team_abbreviation_away = 'IND' AND season_id = '22005' ); 0.325 +How many total rebounds did the Cleveland Cavaliers collect in the 2010 season? SELECT SUM(reb) AS total_rebounds FROM ( SELECT reb_home AS reb FROM game WHERE team_abbreviation_home = 'CLE' AND season_id = '22010' UNION ALL SELECT reb_away AS reb FROM game WHERE team_abbreviation_away = 'CLE' AND season_id = '22010' ); 3305 +How many total rebounds did the Oklahoma City Thunder collect in the 2010 season? SELECT SUM(reb) AS total_rebounds FROM ( SELECT reb_home AS reb FROM game WHERE team_abbreviation_home = 'OKC' AND season_id = '22010' UNION ALL SELECT reb_away AS reb FROM game WHERE team_abbreviation_away = 'OKC' AND season_id = '22010' ); 3507 +How many total rebounds did the Portland Trail Blazers collect in the 2010 season? SELECT SUM(reb) AS total_rebounds FROM ( SELECT reb_home AS reb FROM game WHERE team_abbreviation_home = 'POR' AND season_id = '22010' UNION ALL SELECT reb_away AS reb FROM game WHERE team_abbreviation_away = 'POR' AND season_id = '22010' ); 3226 +How many games did the Dallas Mavericks win at home in the 2015 season? SELECT COUNT(*) AS home_wins FROM game WHERE season_id = '22015' AND team_abbreviation_home = 'DAL' AND pts_home > pts_away; 23 +How many games did the San Antonio Spurs win at home in the 2015 season? SELECT COUNT(*) AS home_wins FROM game WHERE season_id = '22015' AND team_abbreviation_home = 'SAS' AND pts_home > pts_away; 40 +What is the highest field goal percentage the Memphis Grizzlies have recorded at home? SELECT MAX(fg_pct_home) FROM game WHERE team_name_home = 'Memphis Grizzlies'; 0.625 +What is the highest field goal percentage the Minnesota Timberwolves have recorded at home? SELECT MAX(fg_pct_home) FROM game WHERE team_name_home = 'Minnesota Timberwolves'; 0.684 +What is the highest field goal percentage the Sacramento Kings have recorded at home? SELECT MAX(fg_pct_home) FROM game WHERE team_name_home = 'Sacramento Kings'; 0.671 +How many times did the Portland Trail Blazers lose by more than 20 points in the 2010 season? SELECT COUNT(*) FROM game WHERE season_id = '22010' AND ( (team_name_home = 'Portland Trail Blazers' AND wl_home = 'L' AND (pts_away - pts_home) > 20) OR (team_name_away = 'Portland Trail Blazers' AND wl_away = 'L' AND (pts_home - pts_away) > 20) ); 3 +What was the largest lead the Phoenix Suns have ever had in a home game? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'PHX'; 52 +What was the largest lead the Dallas Mavericks have ever had in a home game? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'DAL'; 70 +What was the largest lead the Oklahoma City Thunder have ever had in a home game? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'OKC'; 43 +What is the most fast break points the Washington Wizards have scored at home in a game? SELECT MAX(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'WAS'; 37 +What is the most fast break points the Toronto Raptors have scored at home in a game? SELECT MAX(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'TOR'; 44 +What is the most fast break points the New Orleans Pelicans have scored at home in a game? SELECT MAX(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'NOP'; 39 +What is the most fast break points the Houston Rockets have scored at home in a game? SELECT MAX(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'HOU'; 37 +What is the highest-scoring game in Oklahoma City Thunder history (considering both home and away games)? SELECT game_id, pts_home, pts_away, game_date FROM game WHERE team_abbreviation_home = 'OKC' OR team_abbreviation_away = 'OKC' ORDER BY (pts_home + pts_away) DESC LIMIT 1; 0021800619 | 154.0 | 147.0 | 2019-01-10 00:00:00 +What is the highest-scoring game in New York Knicks history (considering both home and away games)? SELECT game_id, pts_home, pts_away, game_date FROM game WHERE team_abbreviation_home = 'NYK' OR team_abbreviation_away = 'NYK' ORDER BY (pts_home + pts_away) DESC LIMIT 1; 0027700297 | 152.0 | 150.0 | 1977-12-16 00:00:00 +What is the highest-scoring game in Boston Celtics history (considering both home and away games)? SELECT game_id, pts_home, pts_away, game_date FROM game WHERE team_abbreviation_home = 'BOS' OR team_abbreviation_away = 'BOS' ORDER BY (pts_home + pts_away) DESC LIMIT 1; 0025800258 | 173.0 | 139.0 | 1959-02-27 00:00:00 +What is the highest-scoring game in Detroit Pistons history (considering both home and away games)? SELECT game_id, pts_home, pts_away, game_date FROM game WHERE team_abbreviation_home = 'DET' OR team_abbreviation_away = 'DET' ORDER BY (pts_home + pts_away) DESC LIMIT 1; 0028300255 | 184.0 | 186.0 | 1983-12-13 00:00:00 +What is the most fast-break points the Utah Jazz have ever scored in an away game? SELECT MAX(pts_fb_away) FROM other_stats WHERE team_abbreviation_away = 'UTA'; 35 +What is the most fast-break points the Miami Heat have ever scored in an away game? SELECT MAX(pts_fb_away) FROM other_stats WHERE team_abbreviation_away = 'MIA'; 34 +What is the most fast-break points the Chicago Bulls have ever scored in an away game? SELECT MAX(pts_fb_away) FROM other_stats WHERE team_abbreviation_away = 'CHI'; 36 +What is the most points in the paint the Utah Jazz have ever scored in an away game? SELECT MAX(pts_paint_away) FROM other_stats WHERE team_abbreviation_away = 'UTA'; 76 +What is the most points in the paint the Houston Rockets have ever scored in an away game? SELECT MAX(pts_paint_away) FROM other_stats WHERE team_abbreviation_away = 'HOU'; 82 +What is the most points in the paint the New York Knicks have ever scored in an away game? SELECT MAX(pts_paint_away) FROM other_stats WHERE team_abbreviation_away = 'NYK'; 76 +What is the most points in the paint the Philadelphia 76ers have ever scored in an away game? SELECT MAX(pts_paint_away) FROM other_stats WHERE team_abbreviation_away = 'PHI'; 82 +Which opponent has the Phoenix Suns lost to the most in away games? SELECT team_abbreviation_home, COUNT(*) AS losses FROM game WHERE team_abbreviation_away = 'PHX' AND wl_away = 'L' GROUP BY team_abbreviation_home ORDER BY losses DESC LIMIT 1; LAL | 112 +Which opponent has the Milwaukee Bucks lost to the most in away games? SELECT team_abbreviation_home, COUNT(*) AS losses FROM game WHERE team_abbreviation_away = 'MIL' AND wl_away = 'L' GROUP BY team_abbreviation_home ORDER BY losses DESC LIMIT 1; CHI | 89 +Which opponent has the Golden State Warriors lost to the most in away games? SELECT team_abbreviation_home, COUNT(*) AS losses FROM game WHERE team_abbreviation_away = 'GSW' AND wl_away = 'L' GROUP BY team_abbreviation_home ORDER BY losses DESC LIMIT 1; LAL | 48 +How many times have the Memphis Grizzlies scored exactly 100 points in an away game? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'MEM' AND pts_away = 100; 22 +How many times have the Charlotte Hornets scored exactly 100 points in an away game? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'CHA' AND pts_away = 100; 14 +How many times have the Los Angeles Lakers scored exactly 100 points in an away game? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'LAL' AND pts_away = 100; 69 +How many times have the Indiana Pacers scored exactly 100 points in an away game? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'IND' AND pts_away = 100; 69 +What is the largest lead the Detroit Pistons have ever had in a game? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'DET'; 60 +What is the largest lead the Los Angeles Lakers have ever had in a game? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'LAL'; 53 +What is the most second-chance points the Washington Wizards have scored in a home game? SELECT MAX(pts_2nd_chance_home) FROM other_stats WHERE team_abbreviation_home = 'WAS'; 32 +What is the most second-chance points the Orlando Magic have scored in a home game? SELECT MAX(pts_2nd_chance_home) FROM other_stats WHERE team_abbreviation_home = 'ORL'; 32 +What is the most second-chance points the Indiana Pacers have scored in a home game? SELECT MAX(pts_2nd_chance_home) FROM other_stats WHERE team_abbreviation_home = 'IND'; 32 +What is the most second-chance points the Cleveland Cavaliers have scored in a home game? SELECT MAX(pts_2nd_chance_home) FROM other_stats WHERE team_abbreviation_home = 'CLE'; 32 +In which season did the Indiana Pacers win the most games? SELECT season_id, COUNT(*) AS win_count FROM game WHERE (team_name_home = 'Indiana Pacers' AND wl_home = 'W') OR (team_name_away = 'Indiana Pacers' AND wl_away = 'W') GROUP BY season_id ORDER BY win_count DESC LIMIT 1; 22003 | 61 +In which season did the Dallas Mavericks win the most games? SELECT season_id, COUNT(*) AS win_count FROM game WHERE (team_name_home = 'Dallas Mavericks' AND wl_home = 'W') OR (team_name_away = 'Dallas Mavericks' AND wl_away = 'W') GROUP BY season_id ORDER BY win_count DESC LIMIT 1; 22006 | 67 +In which season did the Oklahoma City Thunder win the most games? SELECT season_id, COUNT(*) AS win_count FROM game WHERE (team_name_home = 'Oklahoma City Thunder' AND wl_home = 'W') OR (team_name_away = 'Oklahoma City Thunder' AND wl_away = 'W') GROUP BY season_id ORDER BY win_count DESC LIMIT 1; 22013 | 59 +In which season did the Orlando Magic win the most games? SELECT season_id, COUNT(*) AS win_count FROM game WHERE (team_name_home = 'Orlando Magic' AND wl_home = 'W') OR (team_name_away = 'Orlando Magic' AND wl_away = 'W') GROUP BY season_id ORDER BY win_count DESC LIMIT 1; 21995 | 60 +What is the most points the Miami Heat have scored at home in the 1996 season? SELECT MAX(pts_home) FROM game WHERE team_abbreviation_home = 'MIA' AND season_id = '21996'; 125 +How many games did the New Orleans Pelicans win at home in the 1984 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'NOP' AND season_id = '21984' AND wl_home = 'W'; 0 +What is the average number of turnovers per game for the Golden State Warriors at home in the 2018 season? SELECT AVG(tov_home) FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '22018'; 14.63414634 +What is the most points the Miami Heat have scored in an away game in the 2004 season? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'MIA' AND season_id = '22004'; 119 +What is the most points the Cleveland Cavaliers have scored in an away game in the 2004 season? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'CLE' AND season_id = '22004'; 114 +How many games did the Atlanta Hawks win on the road in the 1999 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'ATL' AND season_id = '21999' AND wl_away = 'W'; 7 +How many games did the Brooklyn Nets win on the road in the 1999 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'BKN' AND season_id = '21999' AND wl_away = 'W'; 0 +What is the highest number of turnovers the Phoenix Suns committed in a single away game during the 2016 season? SELECT MAX(tov_away) FROM game WHERE team_abbreviation_away = 'PHX' AND season_id = '22016'; 24 +What is the highest number of turnovers the Golden State Warriors committed in a single away game during the 2016 season? SELECT MAX(tov_away) FROM game WHERE team_abbreviation_away = 'GSW' AND season_id = '22016'; 23 +What is the highest number of turnovers the Toronto Raptors committed in a single away game during the 2016 season? SELECT MAX(tov_away) FROM game WHERE team_abbreviation_away = 'TOR' AND season_id = '22016'; 19 +What is the highest number of turnovers the Philadelphia 76ers committed in a single away game during the 2016 season? SELECT MAX(tov_away) FROM game WHERE team_abbreviation_away = 'PHI' AND season_id = '22016'; 24 +How many total offensive rebounds did the Dallas Mavericks record in all away games in the 1990 season? SELECT SUM(oreb_away) FROM game WHERE team_abbreviation_away = 'DAL' AND season_id = '21990'; 466 +What is the highest-scoring game (combined points) the Houston Rockets played in the 1998 season, home or away? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE (team_abbreviation_home = 'HOU' OR team_abbreviation_away = 'HOU') AND season_id = '21998' ORDER BY total_points DESC LIMIT 1; 0029800591 | 233.0 +What is the highest-scoring game (combined points) the Denver Nuggets played in the 1998 season, home or away? SELECT game_id, (pts_home + pts_away) AS total_points FROM game WHERE (team_abbreviation_home = 'DEN' OR team_abbreviation_away = 'DEN') AND season_id = '21998' ORDER BY total_points DESC LIMIT 1; 0029800135 | 230.0 +How many fast break points did the Chicago Bulls score on the road in total during the 2002 season? SELECT SUM(pts_fb_away) FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE team_abbreviation_away = 'CHI' AND season_id = '22002' ); 466 +How many fast break points did the Minnesota Timberwolves score on the road in total during the 2002 season? SELECT SUM(pts_fb_away) FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE team_abbreviation_away = 'MIN' AND season_id = '22002' ); 408 +What is the highest number of three-pointers the Portland Trail Blazers made in a single away game during the 2018 season? SELECT MAX(fg3m_away) FROM game WHERE team_abbreviation_away = 'POR' AND season_id = '22018'; 18 +How many total rebounds did the Boston Celtics grab in away games during the 1995 season? SELECT SUM(reb_away) FROM game WHERE team_abbreviation_away = 'BOS' AND season_id = '21995'; 1672 +How many total rebounds did the Atlanta Hawks grab in away games during the 1995 season? SELECT SUM(reb_away) FROM game WHERE team_abbreviation_away = 'ATL' AND season_id = '21995'; 1683 +What is the largest margin of victory the Portland Trail Blazers had in an away game during the 2010 season? SELECT MAX(ABS(pts_away - pts_home)) FROM game WHERE team_abbreviation_away = 'POR' AND season_id = '22010' AND wl_away = 'W'; 14 +How many overtime games did the Denver Nuggets play in the 1994 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'DEN' OR team_abbreviation_away = 'DEN') AND season_id = '21994' AND min > 48; 82 +How many overtime games did the Brooklyn Nets play in the 1994 season? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'BKN' OR team_abbreviation_away = 'BKN') AND season_id = '21994' AND min > 48; 0 +What was the highest number of assists the Milwaukee Bucks recorded in an away game during the 2001 season? SELECT MAX(ast_away) FROM game WHERE team_abbreviation_away = 'MIL' AND season_id = '22001'; 26 +How many times did the New York Knicks win an away game by 20 or more points in the 1983 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'NYK' AND season_id = '21983' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 1 +How many times did the Denver Nuggets win an away game by 20 or more points in the 1983 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'DEN' AND season_id = '21983' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 1 +How many times did the Detroit Pistons win an away game by 20 or more points in the 1983 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'DET' AND season_id = '21983' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 1 +What is the highest number of points the Milwaukee Bucks scored in an away game during the 1997 season? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'MIL' AND season_id = '21997'; 118 +What is the highest number of points the Miami Heat scored in an away game during the 1997 season? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'MIA' AND season_id = '21997'; 117 +What was the highest-scoring combined total of any game the Milwaukee Bucks played in during the 2007 season? SELECT MAX(pts_home + pts_away) FROM game WHERE team_abbreviation_home = 'MIL' OR team_abbreviation_away = 'MIL' AND season_id = '22007'; 309 +What was the highest-scoring combined total of any game the Oklahoma City Thunder played in during the 2007 season? SELECT MAX(pts_home + pts_away) FROM game WHERE team_abbreviation_home = 'OKC' OR team_abbreviation_away = 'OKC' AND season_id = '22007'; 295 +What was the highest-scoring combined total of any game the Detroit Pistons played in during the 2007 season? SELECT MAX(pts_home + pts_away) FROM game WHERE team_abbreviation_home = 'DET' OR team_abbreviation_away = 'DET' AND season_id = '22007'; 297 +How many total three-pointers did the Washington Wizards make in away games during the 2016 season? SELECT SUM(fg3m_away) FROM game WHERE team_abbreviation_away = 'WAS' AND season_id = '22016'; 353 +How many total three-pointers did the Charlotte Hornets make in away games during the 2016 season? SELECT SUM(fg3m_away) FROM game WHERE team_abbreviation_away = 'CHA' AND season_id = '22016'; 415 +What was the lowest-scoring game the Toronto Raptors played in during the 2002 season? SELECT MIN(pts_home + pts_away) FROM game WHERE team_abbreviation_home = 'TOR' OR team_abbreviation_away = 'TOR' AND season_id = '22002'; 138 +How many times did the Chicago Bulls win an away game while holding their opponent to under 90 points in the 1990 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'CHI' AND season_id = '21990' AND wl_away = 'W' AND pts_home < 90; 4 +How many times have the San Antonio Spurs won at home in the 2021 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'SAS' AND wl_home = 'W' AND season_id = '22021'; 16 +How many times have the Charlotte Hornets won at home in the 2021 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CHA' AND wl_home = 'W' AND season_id = '22021'; 22 +How many times have the Chicago Bulls won at home in the 2021 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'CHI' AND wl_home = 'W' AND season_id = '22021'; 27 +How many times have the Los Angeles Lakers won at home in the 2021 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'LAL' AND wl_home = 'W' AND season_id = '22021'; 21 +What is the largest lead the Golden State Warriors have had in a game at home? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'GSW'; 59 +What is the largest lead the Philadelphia 76ers have had in a game at home? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'PHI'; 53 +What is the largest lead the Portland Trail Blazers have had in a game at home? SELECT MAX(largest_lead_home) FROM other_stats WHERE team_abbreviation_home = 'POR'; 52 +What is the most total rebounds the Sacramento Kings have had in a home game? SELECT MAX(reb_home) FROM game WHERE team_abbreviation_home = 'SAC'; 68 +What is the most total rebounds the Golden State Warriors have had in a home game? SELECT MAX(reb_home) FROM game WHERE team_abbreviation_home = 'GSW'; 72 +What is the most total rebounds the Orlando Magic have had in a home game? SELECT MAX(reb_home) FROM game WHERE team_abbreviation_home = 'ORL'; 69 +How many times did the New York Knicks lose at home in the 2015 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'NYK' AND wl_home = 'L' AND season_id = '22015'; 23 +What is the highest number of fast break points the Philadelphia 76ers have scored in a home game? SELECT MAX(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'PHI'; 42 +What is the highest number of fast break points the Cleveland Cavaliers have scored in a home game? SELECT MAX(pts_fb_home) FROM other_stats WHERE team_abbreviation_home = 'CLE'; 39 +What is the most points the Orlando Magic have scored in a road game? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'ORL'; 152 +What is the most points the Milwaukee Bucks have scored in a road game? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'MIL'; 166 +What is the most points the Portland Trail Blazers have scored in a road game? SELECT MAX(pts_away) FROM game WHERE team_abbreviation_away = 'POR'; 153 +What is the highest-scoring game played by the Orlando Magic at home? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'ORL' ORDER BY pts_home DESC LIMIT 1; 1990-12-30 00:00:00 | 155.0 +What is the highest-scoring game played by the Sacramento Kings at home? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'SAC' ORDER BY pts_home DESC LIMIT 1; 1993-01-02 00:00:00 | 154.0 +What is the highest-scoring game played by the Golden State Warriors at home? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'GSW' ORDER BY pts_home DESC LIMIT 1; 2016-11-23 00:00:00 | 149.0 +How many times have the Dallas Mavericks won a home game while scoring at least 120 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'DAL' AND pts_home >= 120 AND wl_home = 'W'; 202 +How many times have the Los Angeles Lakers won a home game while scoring at least 120 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'LAL' AND pts_home >= 120 AND wl_home = 'W'; 587 +How many times have the Miami Heat won a home game while scoring at least 120 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'MIA' AND pts_home >= 120 AND wl_home = 'W'; 113 +How many times have the Brooklyn Nets won a home game while scoring at least 120 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'BKN' AND pts_home >= 120 AND wl_home = 'W'; 67 +How many times have the Chicago Bulls won an away game in the 2004 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'CHI' AND wl_away = 'W' AND season_id = '22004'; 20 +In how many home games did the New Orleans Pelicans score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_home = 'NOP' AND pts_fb_home > pts_fb_away; 198 +In how many home games did the Dallas Mavericks score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_home = 'DAL' AND pts_fb_home > pts_fb_away; 429 +In how many home games did the Indiana Pacers score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_home = 'IND' AND pts_fb_home > pts_fb_away; 433 +What is the most turnovers the Washington Wizards have committed in a home game? SELECT MAX(total_turnovers_home) FROM other_stats WHERE team_abbreviation_home = 'WAS'; 28 +What is the most turnovers the San Antonio Spurs have committed in a home game? SELECT MAX(total_turnovers_home) FROM other_stats WHERE team_abbreviation_home = 'SAS'; 32 +What is the most turnovers the Milwaukee Bucks have committed in a home game? SELECT MAX(total_turnovers_home) FROM other_stats WHERE team_abbreviation_home = 'MIL'; 30 +What is the most turnovers the Denver Nuggets have committed in a home game? SELECT MAX(total_turnovers_home) FROM other_stats WHERE team_abbreviation_home = 'DEN'; 33 +What was the highest field goal percentage the Boston Celtics achieved in a single game in the 1999 season? SELECT MAX(fg_pct_home) FROM game WHERE team_abbreviation_home = 'BOS' AND season_id = '21999'; 0.539 +What was the highest field goal percentage the Golden State Warriors achieved in a single game in the 1999 season? SELECT MAX(fg_pct_home) FROM game WHERE team_abbreviation_home = 'GSW' AND season_id = '21999'; 0.524 +What was the highest field goal percentage the Milwaukee Bucks achieved in a single game in the 1999 season? SELECT MAX(fg_pct_home) FROM game WHERE team_abbreviation_home = 'MIL' AND season_id = '21999'; 0.64 +How many times have the Portland Trail Blazers won a game by 30 or more points? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'POR' AND (pts_home - pts_away) >= 30 AND wl_home = 'W') OR (team_abbreviation_away = 'POR' AND (pts_away - pts_home) >= 30 AND wl_away = 'W'); 87 +How many times have the Brooklyn Nets won a game by 30 or more points? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'BKN' AND (pts_home - pts_away) >= 30 AND wl_home = 'W') OR (team_abbreviation_away = 'BKN' AND (pts_away - pts_home) >= 30 AND wl_away = 'W'); 17 +How many times have the Philadelphia 76ers won a game by 30 or more points? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'PHI' AND (pts_home - pts_away) >= 30 AND wl_home = 'W') OR (team_abbreviation_away = 'PHI' AND (pts_away - pts_home) >= 30 AND wl_away = 'W'); 29 +How many times have the Memphis Grizzlies won a game by 30 or more points? SELECT COUNT(*) FROM game WHERE (team_abbreviation_home = 'MEM' AND (pts_home - pts_away) >= 30 AND wl_home = 'W') OR (team_abbreviation_away = 'MEM' AND (pts_away - pts_home) >= 30 AND wl_away = 'W'); 31 +What is the highest-scoring away game played by the Dallas Mavericks? SELECT game_date, pts_away FROM game WHERE team_abbreviation_away = 'DAL' ORDER BY pts_away DESC LIMIT 1; 1995-04-11 00:00:00 | 156.0 +What is the highest-scoring away game played by the Washington Wizards? SELECT game_date, pts_away FROM game WHERE team_abbreviation_away = 'WAS' ORDER BY pts_away DESC LIMIT 1; 2006-12-17 00:00:00 | 147.0 +What is the highest-scoring away game played by the Atlanta Hawks? SELECT game_date, pts_away FROM game WHERE team_abbreviation_away = 'ATL' ORDER BY pts_away DESC LIMIT 1; 1970-02-11 00:00:00 | 155.0 +What is the highest-scoring away game played by the Portland Trail Blazers? SELECT game_date, pts_away FROM game WHERE team_abbreviation_away = 'POR' ORDER BY pts_away DESC LIMIT 1; 1992-05-11 00:00:00 | 153.0 +How many times have the Sacramento Kings won an away game while scoring at least 110 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'SAC' AND pts_away >= 110 AND wl_away = 'W'; 238 +How many times have the Phoenix Suns won an away game while scoring at least 110 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'PHX' AND pts_away >= 110 AND wl_away = 'W'; 521 +How many times have the Washington Wizards won an away game while scoring at least 110 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'WAS' AND pts_away >= 110 AND wl_away = 'W'; 270 +How many times have the Boston Celtics won an away game while scoring at least 110 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'BOS' AND pts_away >= 110 AND wl_away = 'W'; 690 +What is the largest lead the Toronto Raptors have ever had in an away game? SELECT MAX(largest_lead_away) FROM other_stats WHERE team_abbreviation_away = 'TOR'; 49 +What is the largest lead the Philadelphia 76ers have ever had in an away game? SELECT MAX(largest_lead_away) FROM other_stats WHERE team_abbreviation_away = 'PHI'; 47 +What is the largest lead the Houston Rockets have ever had in an away game? SELECT MAX(largest_lead_away) FROM other_stats WHERE team_abbreviation_away = 'HOU'; 62 +What is the largest lead the Portland Trail Blazers have ever had in an away game? SELECT MAX(largest_lead_away) FROM other_stats WHERE team_abbreviation_away = 'POR'; 58 +How many lead changes were there in the closest away game the Phoenix Suns played in the 2005 season? SELECT lead_changes FROM other_stats WHERE game_id IN ( SELECT game_id FROM game WHERE season_id = '22005' AND team_abbreviation_away = 'PHX' ORDER BY ABS(pts_home - pts_away) ASC LIMIT 1 ); 32 +In how many away games did the Golden State Warriors score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_away = 'GSW' AND pts_fb_away > pts_fb_home; 497 +In how many away games did the Denver Nuggets score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_away = 'DEN' AND pts_fb_away > pts_fb_home; 478 +In how many away games did the Washington Wizards score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_away = 'WAS' AND pts_fb_away > pts_fb_home; 472 +In how many away games did the Indiana Pacers score more fast-break points than their opponent? SELECT COUNT(*) FROM other_stats WHERE team_abbreviation_away = 'IND' AND pts_fb_away > pts_fb_home; 454 +What is the most turnovers the Portland Trail Blazers have committed in an away game? SELECT MAX(total_turnovers_away) FROM other_stats WHERE team_abbreviation_away = 'POR'; 28 +What is the most turnovers the Memphis Grizzlies have committed in an away game? SELECT MAX(total_turnovers_away) FROM other_stats WHERE team_abbreviation_away = 'MEM'; 30 +What is the most turnovers the Utah Jazz have committed in an away game? SELECT MAX(total_turnovers_away) FROM other_stats WHERE team_abbreviation_away = 'UTA'; 31 +What is the most turnovers the Washington Wizards have committed in an away game? SELECT MAX(total_turnovers_away) FROM other_stats WHERE team_abbreviation_away = 'WAS'; 28 +What was the highest field goal percentage the Phoenix Suns achieved in a single away game in the 2008 season? SELECT MAX(fg_pct_away) FROM game WHERE team_abbreviation_away = 'PHX' AND season_id = '22008'; 0.632 +What was the highest field goal percentage the Atlanta Hawks achieved in a single away game in the 2008 season? SELECT MAX(fg_pct_away) FROM game WHERE team_abbreviation_away = 'ATL' AND season_id = '22008'; 0.53 +How many times have the Boston Celtics won an away game by at least 25 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'BOS' AND (pts_away - pts_home) >= 25 AND wl_away = 'W'; 80 +How many times have the Atlanta Hawks won an away game by at least 25 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'ATL' AND (pts_away - pts_home) >= 25 AND wl_away = 'W'; 37 +How many times have the Dallas Mavericks won an away game by at least 25 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'DAL' AND (pts_away - pts_home) >= 25 AND wl_away = 'W'; 35 +How many times have the New York Knicks won an away game by at least 25 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'NYK' AND (pts_away - pts_home) >= 25 AND wl_away = 'W'; 52 +What is the highest-scoring home game for the Washington Wizards? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'WAS' ORDER BY pts_home DESC LIMIT 1; 1990-12-29 00:00:00 | 161.0 +What is the highest-scoring home game for the Boston Celtics? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'BOS' ORDER BY pts_home DESC LIMIT 1; 1959-02-27 00:00:00 | 173.0 +What is the highest-scoring home game for the Denver Nuggets? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'DEN' ORDER BY pts_home DESC LIMIT 1; 1983-12-13 00:00:00 | 184.0 +What is the highest-scoring home game for the Minnesota Timberwolves? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'MIN' ORDER BY pts_home DESC LIMIT 1; 2022-12-18 00:00:00 | 150.0 +How many games have the Portland Trail Blazers won, both home and away, in the 2006 season? SELECT COUNT(*) FROM game WHERE season_id = '22006' AND ((team_abbreviation_home = 'POR' AND wl_home = 'W') OR (team_abbreviation_away = 'POR' AND wl_away = 'W')); 32 +How many games have the Washington Wizards won, both home and away, in the 2006 season? SELECT COUNT(*) FROM game WHERE season_id = '22006' AND ((team_abbreviation_home = 'WAS' AND wl_home = 'W') OR (team_abbreviation_away = 'WAS' AND wl_away = 'W')); 41 +What was the lowest-scoring home game for the Washington Wizards? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'WAS' ORDER BY pts_home ASC LIMIT 1; 1946-11-30 00:00:00 | 49.0 +What was the lowest-scoring home game for the Philadelphia 76ers? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'PHI' ORDER BY pts_home ASC LIMIT 1; 2003-11-17 00:00:00 | 66.0 +What was the lowest-scoring home game for the Utah Jazz? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'UTA' ORDER BY pts_home ASC LIMIT 1; 2005-11-29 00:00:00 | 60.0 +What was the lowest-scoring home game for the Milwaukee Bucks? SELECT game_date, pts_home FROM game WHERE team_abbreviation_home = 'MIL' ORDER BY pts_home ASC LIMIT 1; 1996-11-21 00:00:00 | 65.0 +How many games did the New Orleans Pelicans play at home in the 2010 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'NOP' AND season_id = '22010'; 0 +How many games did the Portland Trail Blazers play at home in the 2010 season? SELECT COUNT(*) FROM game WHERE team_abbreviation_home = 'POR' AND season_id = '22010'; 41 +How many times has the Miami Heat won an away game by at least 20 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'MIA' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 70 +How many times has the Detroit Pistons won an away game by at least 20 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'DET' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 98 +How many times has the Charlotte Hornets won an away game by at least 20 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'CHA' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 26 +How many times has the Sacramento Kings won an away game by at least 20 points? SELECT COUNT(*) FROM game WHERE team_abbreviation_away = 'SAC' AND wl_away = 'W' AND (pts_away - pts_home) >= 20; 45 +What was the largest lead the New York Knicks had in a game during the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_name_home = 'New York Knicks' AND game.season_id = '22018'; 34 +What was the largest lead the Los Angeles Lakers had in a game during the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_name_home = 'Los Angeles Lakers' AND game.season_id = '22018'; 36 +What was the largest lead the Indiana Pacers had in a game during the 2018 season? SELECT MAX(other_stats.largest_lead_home) FROM other_stats JOIN game ON other_stats.game_id = game.game_id WHERE game.team_name_home = 'Indiana Pacers' AND game.season_id = '22018'; 46