You will be tasked with finding the new and returning daily users based on a simple dataset of datetime and users. You can see how the query is built below. #sqlinterview
with first_visit_cte as (
select
user_id,
min(datetime) as first_visit
from
user_activity
group by
user_id
)
select
count(case when a.datetime = b.first_visit then "New" end) as New_Users,
count(case when a.datetime != b.first_visit then "Return" end) as Returning_Users
from
user_activity a
join
first_visit_cte b
on
a.user_id = b.user_id;
Sur cette page du site, vous pouvez voir la vidéo en ligne New & Returning Users | SQL Interview Question durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Absent Data 06 février 2024, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 2,233 fois et il a aimé 113 téléspectateurs. Bon visionnage!