Video wird geladen...
Video konnte nicht geladen werden
Your user global app’s metrics might be muddled by a gotcha! Check out this SQL dev challenge about a common tracking issue that affects users worldwide. Tell us where we went wrong and how to fix it in the comments below.
23,832 Aufrufe • vor 1 Jahr •via X (Twitter)
2 Kommentare

Google for Developersvor 1 Jahr
Hint: Think about what happens when a user logs in at 11:59 PM in California while your server is in New York. Which day should that login count towards?

Ondřej Pařízekvor 1 Jahr
Hi, I think there's a timezone issue here. The query doesn't reflect each user's local time, which can lead to incorrect daily counts. Ideally, we should store the user's timezone and convert both login_time and CURRENT_DATE to that timezone when aggregating login data.
