gautam@neondigital.media
Profile owner · ← all owners
Brands owned
15
Distinct users
1
Active days
8
Sessions
336
Active hours
6.87
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| Giordano | 1 | 99 | 2.24 |
| NEURO. | 1 | 60 | 1.42 |
| Episoft | 1 | 45 | 0.86 |
| NEEMANS_PRIVATE_LIMITED_self_serve - myntra_ads | 1 | 44 | 0.73 |
| Neemans - AMS | 1 | 34 | 0.39 |
| Peter England | 1 | 9 | 0.31 |
| Allen Solly | 1 | 15 | 0.29 |
| Birla Cosmetics Private Limited_Beauty | 1 | 2 | 0.19 |
| Sleepwell | 1 | 5 | 0.17 |
| Glenmark Pharma | 1 | 11 | 0.16 |
| Campus Activewear Limited | 1 | 4 | 0.05 |
| Neeman's Private Limited | 1 | 5 | 0.05 |
| Sleepwell Ads | 1 | 1 | 0.01 |
| Peter England Formal | 1 | 1 | 0.00 |
| ADITYA_BIRLA_FASHION_AND_RETAIL_LIMITED_Self_serve_Brand_Peter_England - myntra_ads | 1 | 1 | 0.00 |
2 queries · scanned 2.62 MB · cost $0.000016 · 2.56s
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('gautam@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
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('gautam@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_hours DESC