info@dtcretail.com
Profile owner · ← all owners
Brands owned
2
Distinct users
2
Active days
15
Sessions
155
Active hours
1.39
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| GardenGuru | 1 | 127 | 1.02 |
| DTC Trading | 2 | 28 | 0.38 |
2 queries · scanned 10.78 MB · cost $0.000064 · 2.88s
SELECT
profile_owner_email,
COUNT(DISTINCT brand_group) AS brands_owned,
COUNT(DISTINCT email) AS distinct_users,
SUM(sessions) AS sessions,
ROUND(SUM(active_seconds)/3600.0, 2) AS active_hours,
COUNT(DISTINCT day) AS active_days
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(profile_owner_email) = LOWER('info@dtcretail.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY profile_owner_email
SELECT brand_group,
COUNT(DISTINCT email) AS distinct_users,
SUM(sessions) AS sessions,
ROUND(SUM(active_seconds)/3600.0, 2) AS active_hours
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(profile_owner_email) = LOWER('info@dtcretail.com')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC