Knowledge Guide
HomeDatabasesSQL Practice Problems

Game Play Analysis III

Problem

Table: Activity

+--------------+---------+
| Column Name  | Type    |
+--------------+---------+
| player_id    | int     |
| device_id    | int     |
| event_date   | date    |
| games_played | int     |
+--------------+---------+
(player_id, event_date) is the primary key (column with unique values) of this table.
This table shows the activity of players of some games.
Each row is a record of a player who logged in and played a number of games (possibly 0) before logging out on someday using some device.

Problem Definition

Write a solution to report for each player and date, how many games_played_so_far by the player. That is, the total number of games played by the player until that date.

Example

Image
Image

Output

Image
Image

Try It Yourself

java
-- TODO: Write your user queries here

Solution

To report the cumulative number of games each player has played up to each event date, we can utilize SQL's window functions. Specifically, the SUM() window function with appropriate partitioning and ordering allows us to calculate a running total (games_played_so_far) for each player across different dates.

SQL Query

SELECT player_id, event_date, SUM(games_played) OVER ( PARTITION BY player_id ORDER BY event_date ) AS games_played_so_far FROM Activity;

Step-by-Step Approach

Step 1: Select Player ID and Event Date

Retrieve each player's unique identifier (player_id) and the corresponding date (event_date) of their activity.

SQL Query:

SELECT player_id, event_date FROM Activity;

Explanation:

Output After Step 1:

+-----------+------------+ | player_id | event_date | +-----------+------------+ | 1 | 2016-03-01 | | 1 | 2016-05-02 | | 1 | 2017-06-25 | | 3 | 2016-03-02 | | 3 | 2018-03-07 | +-----------+------------+

Step 2: Calculate Cumulative Games Played

Compute the total number of games each player has played up to and including each event_date.

SQL Query:

SELECT player_id, event_date, SUM(games_played) OVER ( PARTITION BY player_id ORDER BY event_date ) AS games_played_so_far FROM Activity;

Explanation:

Output After Step 2:

+-----------+------------+--------------------+ | player_id | event_date | games_played_so_far| +-----------+------------+--------------------+ | 1 | 2016-03-01 | 5 | | 1 | 2016-05-02 | 11 | | 1 | 2017-06-25 | 12 | | 3 | 2016-03-02 | 0 | | 3 | 2018-03-07 | 5 | +-----------+------------+--------------------+
🤖 Don't fully get this? Learn it with Claude

Stuck on Game Play Analysis III? 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 **Game Play Analysis III** (Databases) and want to truly understand it. Explain Game Play Analysis III 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 **Game Play Analysis III** 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 **Game Play Analysis III** 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 **Game Play Analysis III** 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