This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
(COUNT(DISTINCT CASE | |
WHEN (raw_session_replay_events.click_count = 0 AND raw_session_replay_events.active_milliseconds < 60000) | |
THEN raw_session_replay_events.session_id | |
ELSE NULL | |
END) * 100.0) / COUNT(DISTINCT properties.$session_id) AS bounce_rate | |
FROM | |
events | |
INNER JOIN | |
raw_session_replay_events ON events.properties.$session_id = raw_session_replay_events.session_id | |
WHERE | |
created_at >= now() - INTERVAL 7 DAY | |
AND properties.$current_url = 'https://mediar.ai/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
grouped by day: