Persist umami sql queries and stuff

This commit is contained in:
2025-11-18 15:24:07 +01:00
parent 444f7a376e
commit 87dd246d09
12 changed files with 262 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
select
substring(distinct_id similar '%#"@%#"' escape '#') as group
from
session
where
distinct_id is not null
and distinct_id like '%@%'
group by
substring(distinct_id similar '%#"@%#"' escape '#')
;