gautam@neondigital.media

Profile owner · ← all owners

Brands owned
21
Distinct users
1
Active days
31
Sessions
1,583
Active hours
27.24

Brands

BrandUsersSessionsActive hours
Giordano 1 471 7.82
NEURO. 1 247 5.54
Birla Cosmetics Private Limited_Beauty 1 82 2.03
NEEMANS_PRIVATE_LIMITED_self_serve - myntra_ads 1 124 1.78
Campus Activewear Limited 1 86 1.62
Neemans - AMS 1 165 1.59
Allen Solly 1 123 1.54
Glenmark Pharma 1 51 1.30
Episoft 1 65 1.21
Peter England 1 32 0.76
Sleepwell 1 25 0.71
Organic India 1 34 0.50
CONTRABAND 1 20 0.35
Tata Sampann 1 12 0.18
Neeman's Private Limited 1 22 0.15
Neemans - seller 1 16 0.09
Tata Coffee Grand 1 2 0.03
Sleepwell Ads 1 3 0.03
Peter England Formal 1 1 0.00
Episoft_PO 1 1 0.00
ADITYA_BIRLA_FASHION_AND_RETAIL_LIMITED_Self_serve_Brand_Peter_England - myntra_ads 1 1 0.00
2 queries · scanned 10.85 MB · cost $0.000065 · 3.14s
Query 1 · 1 rows · 5.42 MB · $0.000032 · 1.61s
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-05-26' AND DATE '2026-06-25'
GROUP BY profile_owner_email
Query 2 · 21 rows · 5.42 MB · $0.000032 · 1.53s
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-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC