SELECT
player_id,
player,
SUM(mp) AS total_minutes_2020,
SUM(x3p) AS total_3p_made_2020
FROM @kaggle.sumitrodatta_nba_aba_baa_stats.player_totals
WHERE season = 2020 and player_id=3093
ORDER BY total_3p_made_2020 DESC
LIMIT 10;
SELECT
player_id,
player,
SUM(mp) AS total_minutes_2020,
SUM(x3p) AS total_3p_made_2020
FROM @kaggle.sumitrodatta_nba_aba_baa_stats.player_totals
WHERE season = 2020 and player_id=3093
ORDER BY total_3p_made_2020 DESC
LIMIT 10;
Anyone who has the link will be able to view this.