siddhant@neondigital.media
Profile owner · ← all owners
Brands owned
14
Distinct users
1
Active days
8
Sessions
295
Active hours
3.83
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| SaiTech IT | 1 | 78 | 1.24 |
| Sandhu Products Inc. | 1 | 89 | 0.96 |
| INSPIRED NUTRITION LLC | 1 | 31 | 0.50 |
| Softopia Cotton | 1 | 57 | 0.49 |
| Puriya Store | 1 | 1 | 0.16 |
| Heirloom Comfort | 1 | 9 | 0.15 |
| Sprig & Sprouts LLC | 1 | 9 | 0.11 |
| COCONIQ | 1 | 3 | 0.06 |
| Native Pet | 1 | 4 | 0.06 |
| Beauty by Earth | 1 | 7 | 0.05 |
| Heirloom Comfort EU | 1 | 3 | 0.02 |
| Time-Cap Labs | 1 | 1 | 0.02 |
| GoBiotix | 1 | 1 | 0.02 |
| Blissy Brand | 1 | 2 | 0.01 |
2 queries · scanned 2.62 MB · cost $0.000016 · 2.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('siddhant@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
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('siddhant@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_hours DESC