worried-planet-2191
12/22/2023, 12:01 PMfresh-football-47124
fresh-football-47124
cuddly-chef-71648
12/22/2023, 9:30 PMcuddly-chef-71648
12/27/2023, 12:44 PMNo matching signature for operator = for argument types: JSON, STRING. Supported signature: ANY = ANY at [30:7]
WHERE
17 event_type = 'Experiment Viewed'
18 AND amplitude_id is not null
19 ),
20 __experimentExposures AS (
21 -- Viewed Experiment
22 SELECT
23 e.device_id as device_id,
24 cast(e.variation_id as string) as variation,
25 CAST(e.timestamp as DATETIME) as timestamp,
26 e.device AS dim_device
27 FROM
28 __rawExperiment e
29 WHERE
30 e.experiment_id = 'connect-device-yellow-button'
31 AND e.timestamp >= '2023-12-20 14:50:00'
32 AND e.timestamp <= '2023-12-27 12:38:32'
33 ),
34 __experimentUnits AS (cuddly-chef-71648
12/28/2023, 12:14 PM