Video yükleniyor...
Video Yüklenemedi
Is your user analytics query telling the whole story? This SQL developer challenge reveals a common mistake in counting active users. Can you spot what's making the numbers look lower than they should be?
23,846 görüntüleme • 1 yıl önce •via X (Twitter)
2 Yorum

Google for Developers1 yıl önce
Think about how your counting method might be affected by users with multiple activity dates. Also, consider whether your HAVING clause is using the same counting logic as your SELECT statement.

Ash1 yıl önce
HAVING COUNT(*) > 100 will show only regions where active users are greater than 100.
