worried-planet-2191
03/19/2024, 7:33 PMagreeable-elephant-38605
03/19/2024, 9:21 PMselect
min(timestamp) timestamp,
session_id,
anonymous_id,
host,
countIf(event = 'page_viewed') page_views
from events
where timestamp >= '{{ startDate }}'
AND timestamp < '{{ endDate }}'
group by session_id, anonymous_id, host
having page_views < 2helpful-alligator-75316
03/19/2024, 9:22 PM