Skip to content

Every Lion who scored in 2024

Level 1 · Challenge 3
Rookie

Prompt

Return the distinct list of Lions players who scored at least one rushing, receiving, or passing touchdown in the 2024 regular season. Alphabetical by name.

Expected output

A single column, one row per player:

player_display_name
(name)
(name)
Hint

SELECT DISTINCT collapses duplicate rows. Filter for any TD > 0 with an OR across the three TD columns. Wrap the OR in parens so it doesn’t escape the AND boundary.

Solution
SELECT DISTINCT player_display_name
FROM weekly_stats
WHERE recent_team = 'DET'
AND season = 2024
AND season_type = 'REG'
AND (rushing_tds > 0 OR receiving_tds > 0 OR passing_tds > 0)
ORDER BY player_display_name;

You’ll see Montgomery, Gibbs, LaPorta, ARSB, Jameson Williams, Goff (passing TDs count), and a handful of role players.