shahzad@neondigital.media
Profile owner · ← all owners
Brands owned
14
Distinct users
1
Active days
16
Sessions
449
Active hours
5.58
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| ARVIND_LIFESTYLE_BRANDS_LIMITED_self_serve_28653 - myntra_ads | 1 | 126 | 1.35 |
| ARVIND_LIFESTYLE_BRANDS_LIMITED_Self_serve_Arrow_MP - myntra_ads | 1 | 111 | 1.14 |
| Sreedhara Textiles Private Limited - Garments Division | 1 | 33 | 1.13 |
| ARVIND_LIFESTYLE_BRANDS_LIMITED_self_serve_6262 - myntra_ads | 1 | 80 | 0.74 |
| Sreedhara_Textiles_Private_Limited___Garments_Division_self_serve_Brand - myntra_ads | 1 | 46 | 0.56 |
| Kurlon | 1 | 15 | 0.32 |
| PVH_ARVIND_FASHION_PRIVATE_LIMITED_CK_Selfserve_Omni - myntra_ads | 1 | 16 | 0.11 |
| Arrow_1 | 1 | 6 | 0.06 |
| Tommy Hilfiger | 1 | 4 | 0.06 |
| ADITYA_BIRLA_FASHION_AND_RETAIL_LIMITED_Self_serve_Brand_Peter_England - myntra_ads | 1 | 5 | 0.03 |
| SPARX | 1 | 1 | 0.02 |
| USPOLO | 1 | 4 | 0.02 |
| Arvind Lifestyle Brands Limited | 1 | 1 | 0.02 |
| Relaxo Footwears Limited | 1 | 1 | 0.02 |
2 queries · scanned 10.78 MB · cost $0.000064 · 3.11s
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('shahzad@neondigital.media')
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('shahzad@neondigital.media')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC