deepak@neondigital.media

Profile owner · ← all owners

Brands owned
10
Distinct users
1
Active days
31
Sessions
996
Active hours
17.92

Brands

BrandUsersSessionsActive hours
Giordano 1 728 13.30
Peter England 1 61 1.42
Allen Solly 1 74 1.39
Glenmark 1 68 0.76
ADITYA_BIRLA_FASHION_AND_RETAIL_LIMITED_Self_serve_Brand_Peter_England - myntra_ads 1 22 0.45
GLENMARK_CONSUMER_CARE_LIMITED_self_serve_Brand - myntra_ads 1 20 0.24
Parul garg 1 9 0.17
La Shield_PO 1 6 0.14
Parul Garg Beauty 1 7 0.07
AVANT 1 1 0.01
2 queries · scanned 10.78 MB · cost $0.000064 · 3.01s
Query 1 · 1 rows · 5.39 MB · $0.000032 · 1.54s
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('deepak@neondigital.media')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY profile_owner_email
Query 2 · 10 rows · 5.39 MB · $0.000032 · 1.46s
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('deepak@neondigital.media')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC