You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH domains AS (
SELECT
COALESCE(SPLIT(domain, '\\\\.')[0], 'NA') AS domain
FROM t_raw
)
SELECTCOUNT(DISTINCT domain) cnt,
COUNT(DISTINCT UPPER(domain)) ucnt
FROM domains