nitin@neondigital.media
Profile owner · ← all owners
Brands owned
11
Distinct users
1
Active days
23
Sessions
1,105
Active hours
21.07
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| USPOLO | 1 | 840 | 15.91 |
| Sreedhara Textiles Private Limited - Garments Division | 1 | 68 | 1.89 |
| Kurlon | 1 | 56 | 1.25 |
| Arrow_1 | 1 | 78 | 0.85 |
| Sreedhara_Textiles_Private_Limited___Garments_Division_self_serve_Brand - myntra_ads | 1 | 24 | 0.71 |
| Kurlon Ads | 1 | 10 | 0.15 |
| Tommy Hilfiger | 1 | 11 | 0.13 |
| Page_Industries_Ltd_self_serve_brand_jockey_Mjipl - myntra_ads | 1 | 8 | 0.09 |
| ARVIND_LIFESTYLE_BRANDS_LIMITED_Self_serve_Arrow_MP - myntra_ads | 1 | 4 | 0.04 |
| Sleepwell | 1 | 5 | 0.03 |
| Arvind Lifestyle Brands Limited | 1 | 1 | 0.00 |
2 queries · scanned 10.90 MB · cost $0.000065 · 2.72s
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('nitin@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('nitin@neondigital.media')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC