Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- select p.test_group,
- s.region,
- count(distinct p.user_id) cnt
- from purchases_test_part p
- left join sessions_test_part s on p.user_id = s.user_id
- where p.test_name = 'language_test'
- and s.region = 'MENA'
- group by 1, 2
- order by 1, 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement