Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SELECT dt,
- ts,
- uid,
- addJson
- FROM stat.funnelTrack
- WHERE action = 'feature_disabled'
- AND dt >= today() - interval '30' DAY
- AND simpleJSONExtractString(addJson, 'experimentId') = 'android_experiment_pteam_new_magic'
- ORDER BY ts DESC
- LIMIT 100;
- SELECT dt,
- count(action) AS n
- FROM stat.funnelTrack
- WHERE action = 'pteam_new_magic'
- AND dt >= today() - interval '30' DAY
- GROUP BY 1
- ORDER BY 1 DESC;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement