v.negi@primeup.de
Profile owner · ← all owners
Brands owned
17
Distinct users
2
Active days
23
Sessions
794
Active hours
8.97
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| Shoes for Crews | 2 | 336 | 4.27 |
| Seidensticker | 2 | 135 | 1.77 |
| Westmark Shop | 2 | 107 | 0.99 |
| Nanoprotect | 1 | 61 | 0.60 |
| shake over© | 2 | 45 | 0.39 |
| Clip'n'Shade | 1 | 19 | 0.18 |
| Vipertech | 1 | 19 | 0.16 |
| Westmark GmbH | 1 | 21 | 0.14 |
| Westmark GmbH - NL | 1 | 7 | 0.09 |
| CT Crown Technics | 1 | 7 | 0.08 |
| Die Gestalten Verlag GmbH & Co. KG - Retail | 1 | 8 | 0.08 |
| SinoPlaSan AG | 1 | 8 | 0.06 |
| Holz-und-Gartenwelt | 2 | 7 | 0.05 |
| Westmark FR | 1 | 7 | 0.05 |
| GSW Gäns Stahlwaren GmbH (retail) | 1 | 3 | 0.03 |
| Westmark GmbH (Retail Invoice) (ES) | 1 | 3 | 0.02 |
| RECARO eGaming GmbH & Co KG. | 1 | 1 | 0.01 |
2 queries · scanned 10.78 MB · cost $0.000064 · 3.07s
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('v.negi@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('v.negi@primeup.de')
AND day BETWEEN DATE '2026-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC