Knowledge Guide
HomeDatabasesSQL Practice Problems

Daily User Engagement Levels

Problem Statement

Table: Users
Each row of this table contains the ID and the name of one user.

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| user_id       | int     |
| user_name     | varchar |
+---------------+---------+
user_id is the primary key for this table.

Table: Engagement
Each row of this table records the daily engagement score of a user.

+---------------+------+
| Column Name   | Type |
+---------------+------+
| user_id       | int  |
| engagement    | int  |
| date          | date |
+---------------+------+
(user_id, date) is the primary key for this table.

Write a solution to find the engagement level of each user for February 2020.

The engagement levels are defined as:

Return the result table in any order.

Example

Input:

Users table: +---------+-----------+ | user_id | user_name | +---------+-----------+ | 1 | Alice | | 2 | Bob | | 3 | Charlie | | 4 | David | | 5 | Eve | +---------+-----------+
Engagement table: +---------+------------+------------+ | user_id | engagement | date | +---------+------------+------------+ | 1 | 10 | 2020-02-01 | | 1 | 25 | 2020-02-02 | | 2 | 30 | 2020-02-01 | | 2 | 40 | 2020-02-03 | | 3 | 65 | 2020-02-05 | | 3 | 70 | 2020-02-06 | | 4 | 23 | 2020-02-07 | | 4 | 24 | 2020-02-08 | | 5 | 55 | 2020-02-09 | | 5 | 60 | 2020-02-10 | +---------+------------+------------+

Output:

+-----------+----------------+ | user_name | engagement_level | +-----------+----------------+ | Alice | Low | | Bob | Medium | | Charlie | High | | David | Medium | | Eve | Medium | +-----------+----------------+

Try It Yourself

java
-- TODO: Write your user queries here

Solution

To determine the engagement level of each user for February 2020, we need to calculate the average engagement score for each user during that month and categorize them based on the defined thresholds. The process involves joining the Users and Engagement tables, filtering the relevant dates, computing the average engagement, and assigning the appropriate engagement level.

SQL Query

SELECT user_name, CASE WHEN AVG(engagement) < 20 THEN 'Low' WHEN AVG(engagement) <= 60 THEN 'Medium' ELSE 'High' END AS engagement_level FROM Users JOIN Engagement ON Users.user_id = Engagement.user_id AND YEAR(date) = '2020' AND MONTH(date) = '02' GROUP BY user_name;

Step-by-Step Approach

Step 1: Join Users and Engagement Tables for February 2020

Combine user information with their engagement records that occurred in February 2020.

SQL Query:

SELECT Users.user_name, Engagement.engagement FROM Users JOIN Engagement ON Users.user_id = Engagement.user_id AND YEAR(Engagement.date) = '2020' AND MONTH(Engagement.date) = '02';

Explanation:

Output After Step 1:

+-----------+------------+ | user_name | engagement | +-----------+------------+ | Alice | 10 | | Alice | 25 | | Bob | 30 | | Bob | 40 | | Charlie | 65 | | Charlie | 70 | | David | 23 | | David | 24 | | Eve | 55 | | Eve | 60 | +-----------+------------+

Step 2: Calculate Average Engagement for Each User

Compute the average engagement score for each user during February 2020.

SQL Query:

SELECT user_name, AVG(engagement) AS avg_engagement FROM Users JOIN Engagement ON Users.user_id = Engagement.user_id AND YEAR(Engagement.date) = '2020' AND MONTH(Engagement.date) = '02' GROUP BY user_name;

Explanation:

Output After Step 2:

+-----------+----------------+ | user_name | avg_engagement | +-----------+----------------+ | Alice | 17.50 | | Bob | 35.00 | | Charlie | 67.50 | | David | 23.50 | | Eve | 57.50 | +-----------+----------------+

Step 3: Assign Engagement Levels Based on Average Scores

Categorize each user as Low, Medium, or High based on their average engagement scores.

SQL Query:

SELECT user_name, CASE WHEN AVG(engagement) < 20 THEN 'Low' WHEN AVG(engagement) <= 60 THEN 'Medium' ELSE 'High' END AS engagement_level FROM Users JOIN Engagement ON Users.user_id = Engagement.user_id AND YEAR(Engagement.date) = '2020' AND MONTH(Engagement.date) = '02' GROUP BY user_name;

Explanation:

Final Output:

+-----------+-------------------+ | user_name | engagement_level | +-----------+-------------------+ | Alice | Low | | Bob | Medium | | Charlie | High | | David | Medium | | Eve | Medium | +-----------+-------------------+
🤖 Don't fully get this? Learn it with Claude

Stuck on Daily User Engagement Levels? Open Claude, copy a block below, and it'll teach you this exact concept — visually and interactively.

🎨 Explain it visually

Build the mental picture, not memorization.

I just read a lesson on **Daily User Engagement Levels** (Databases) and want to truly understand it. Explain Daily User Engagement Levels from first principles using ONE vivid real-world analogy and a visual mental model — draw it as ASCII art or a clear step-by-step diagram — with a concrete example using real numbers. Then ask me one question to check I got the mental picture, and wait for my reply. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🤔 Walk me through it (interactive)

Socratic — adapts to where you're stuck.

Teach me **Daily User Engagement Levels** interactively. Ask me ONE guiding question at a time, wait for my answer, and adapt to my confusion — build the idea with me step by step instead of explaining it all at once. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧪 Quiz me & fix my gaps

Active recall exposes what you missed.

Quiz me on **Daily User Engagement Levels** with 5 questions, easy to tricky, ONE at a time. Tell me if each answer is right; at the end, explain clearly what I got wrong and why. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧠 Make it stick

Intuition + hook + flashcards for long-term memory.

Help me remember **Daily User Engagement Levels** for the long term: give the one-sentence intuition, a memorable hook/mnemonic, a tiny worked example, and 3 active-recall flashcards (Q -> A). If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.

📝 My notes