crooked-raincoat-33764
12/15/2024, 12:34 PMWHERE
where there should be an AND
When I add the same logic in a Custom SQL Filter, it works fine.
I want to use segments instead so it can be reproduced and added by users who don't know SQL.crooked-raincoat-33764
12/15/2024, 12:34 PM-- Metric (mean)
WITH
__rawExperiment AS (
--- logic
),
__experimentExposures AS (
--- logic
),
__segment as ( -- Segment (Mobile users)
SELECT
*
FROM
(
-- Fact Table
SELECT
--- logic
FROM
(
SELECT
--- logic
FROM
--- logic
WHERE
timestamp BETWEEN DATE('2024-11-07 13:09:00') AND DATE('2024-12-15 12:28:00')
AND experiment_name LIKE --- exp name
WHERE
device = "Mobile"
) m
) s
),
__experimentUnits AS (
--- logic
),
---
fresh-football-47124
fresh-football-47124