nimish@hectorai.live
Profile owner · ← all owners
Brands owned
11
Distinct users
1
Active days
26
Sessions
1,364
Active hours
16.76
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| Beauty by Earth | 1 | 441 | 5.91 |
| Scanmarker | 1 | 256 | 3.07 |
| LURE Essentials | 1 | 259 | 2.36 |
| Sprig & Sprouts LLC | 1 | 146 | 2.17 |
| Nutratology | 1 | 123 | 1.23 |
| Shine Armor | 1 | 55 | 0.80 |
| smarter vision | 1 | 44 | 0.74 |
| Blackline Car Care | 1 | 35 | 0.44 |
| Dot & Key | 1 | 2 | 0.03 |
| Formulation+Factory | 1 | 2 | 0.01 |
| Two Brothers Organic Farms India | 1 | 1 | 0.00 |
2 queries · scanned 10.78 MB · cost $0.000064 · 3.06s
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('nimish@hectorai.live')
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('nimish@hectorai.live')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC