Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Retention Cohorts | Retention and Churn Analysis
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
SQL for Product Analysts

bookChallenge: Retention Cohorts

Task

Swipe to start coding

Calculate day 30 retention by finding users who logged in exactly 30 days after their signup date.

  • Write a SQL query that joins the users and logins tables.
  • For each user, check if there is a login on the date that is exactly 30 days after their signup date.
  • Return the following columns:
    • user_id from the users table.
    • signup_date from the users table.
    • login_date from the logins table (should be exactly 30 days after signup).
  • Do not include users who did not log in exactly 30 days after signup.
  • Do not use printing statements or comments in your query.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 2
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

close

bookChallenge: Retention Cohorts

Swipe to show menu

Task

Swipe to start coding

Calculate day 30 retention by finding users who logged in exactly 30 days after their signup date.

  • Write a SQL query that joins the users and logins tables.
  • For each user, check if there is a login on the date that is exactly 30 days after their signup date.
  • Return the following columns:
    • user_id from the users table.
    • signup_date from the users table.
    • login_date from the logins table (should be exactly 30 days after signup).
  • Do not include users who did not log in exactly 30 days after signup.
  • Do not use printing statements or comments in your query.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 2
single

single

some-alt