arif@hectorai.live

Profile owner · ← all owners

Brands owned
20
Distinct users
1
Active days
21
Sessions
961
Active hours
18.84

Brands

BrandUsersSessionsActive hours
S. R Retails 1 128 3.47
Ruhe 1 236 3.17
SRGGINC. 1 119 2.72
BIBA 1 77 1.58
Little Rituals 1 35 1.34
Stoa Paris 1 94 1.26
Haier Air Conditioners 1 27 0.90
Asian Shoes 1 73 0.78
Asian MF-PO 1 46 0.74
CARMEL ORGANICS 1 23 0.59
Wonderchef 1 19 0.58
Zeel 1 33 0.55
S.R Retails 1 1 0.30
Luxmi Tea 1 11 0.24
Luxmi Tea USA 1 5 0.21
3M - Car Care 1 8 0.17
RUHE SOLUTIONS PRIVATE LIMITED 1 8 0.09
Bedbathmore 1 8 0.07
SMALLBATCH 1 9 0.06
ZEELRAINWEAR - Seller 1 1 0.01
2 queries · scanned 10.88 MB · cost $0.000065 · 2.99s
Query 1 · 1 rows · 5.44 MB · $0.000032 · 1.37s
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('arif@hectorai.live')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY profile_owner_email
Query 2 · 20 rows · 5.44 MB · $0.000032 · 1.62s
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('arif@hectorai.live')
  AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC