SELECT to_char(eventtime, 'yyyy-mm-dd') as date, count(distinct devtodevid) as "DAU"
FROM p102968.sessions
WHERE eventtime >= ut('2021-03-01') AND eventtime < date_trunc('month', ut('2021-04-01'))
AND tester is false AND cheater is false
GROUP BY 1
ORDER BY 1 ASC;