deepak@neondigital.media

Profile owner · ← all owners

Brands owned
9
Distinct users
1
Active days
8
Sessions
252
Active hours
4.46

Brands

BrandUsersSessionsActive hours
Giordano 1 213 4.00
Allen Solly 1 17 0.15
ADITYA_BIRLA_FASHION_AND_RETAIL_LIMITED_Self_serve_Brand_Peter_England - myntra_ads 1 4 0.08
Peter England 1 2 0.08
Glenmark 1 9 0.06
GLENMARK_CONSUMER_CARE_LIMITED_self_serve_Brand - myntra_ads 1 1 0.03
Parul garg 1 3 0.03
Parul Garg Beauty 1 1 0.02
La Shield_PO 1 2 0.01
2 queries · scanned 2.74 MB · cost $0.000016 · 3.23s
Query 1 · 1 rows · 1.37 MB · $0.000008 · 1.60s
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-06-17' AND DATE '2026-06-24'
GROUP BY profile_owner_email
Query 2 · 9 rows · 1.37 MB · $0.000008 · 1.63s
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-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_hours DESC