I'm unsure what my error is, I am not receiving an error when running the code, but it also will not mark the part as complete. Any help? I am being asked to print [date, platform, and dau_count] to the screen.
select
date(created_at),
platform,
count(distinct user_id) as dau
from gameplays
group by 1
order by 1;