Distinc users

How many distinct users do we see per day in the Austria?

just stuck with this.
tnx

Something like?:

SELECT COUNT(DISTINCT user) AS distinct_user_count
FROM dbo.table_name
WHERE country = 'Austria'
1 Like