r.stelter@primeup.de
Profile owner · ← all owners
Brands owned
12
Distinct users
1
Active days
15
Sessions
466
Active hours
4.77
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| Clip'n'Shade | 1 | 136 | 1.77 |
| Holz-und-Gartenwelt | 1 | 79 | 0.94 |
| Vipertech | 1 | 92 | 0.69 |
| shake over© | 1 | 69 | 0.45 |
| CT Crown Technics | 1 | 38 | 0.42 |
| GSW Gäns Stahlwaren GmbH (retail) | 1 | 31 | 0.31 |
| RECARO eGaming GmbH & Co KG. | 1 | 9 | 0.07 |
| SinoPlaSan AG | 1 | 7 | 0.06 |
| Shoes for Crews | 1 | 2 | 0.04 |
| Belanoti | 1 | 1 | 0.01 |
| Super Million Hair | 1 | 1 | 0.01 |
| BRLO x ROY | 1 | 1 | 0.00 |
2 queries · scanned 10.85 MB · cost $0.000065 · 3.12s
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('r.stelter@primeup.de')
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('r.stelter@primeup.de')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC