mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
47 lines
1.9 KiB
Markdown
47 lines
1.9 KiB
Markdown
<h2><a href="https://leetcode.com/problems/game-play-analysis-i/">511. Game Play Analysis I</a></h2><h3>Easy</h3><hr><div class="sql-schema-wrapper__3VBi"><a class="sql-schema-link__3cEg">SQL Schema<svg viewBox="0 0 24 24" width="1em" height="1em" class="icon__1Md2"><path fill-rule="evenodd" d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"></path></svg></a></div><div><p>Table: <code>Activity</code></p>
|
|
|
|
<pre>+--------------+---------+
|
|
| Column Name | Type |
|
|
+--------------+---------+
|
|
| player_id | int |
|
|
| device_id | int |
|
|
| event_date | date |
|
|
| games_played | int |
|
|
+--------------+---------+
|
|
(player_id, event_date) is the primary key 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.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
|
|
<p>Write an SQL query to report the <strong>first login date</strong> for each player.</p>
|
|
|
|
<p>Return the result table in <strong>any order</strong>.</p>
|
|
|
|
<p>The query result format is in the following example.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<pre><strong>Input:</strong>
|
|
Activity table:
|
|
+-----------+-----------+------------+--------------+
|
|
| player_id | device_id | event_date | games_played |
|
|
+-----------+-----------+------------+--------------+
|
|
| 1 | 2 | 2016-03-01 | 5 |
|
|
| 1 | 2 | 2016-05-02 | 6 |
|
|
| 2 | 3 | 2017-06-25 | 1 |
|
|
| 3 | 1 | 2016-03-02 | 0 |
|
|
| 3 | 4 | 2018-07-03 | 5 |
|
|
+-----------+-----------+------------+--------------+
|
|
<strong>Output:</strong>
|
|
+-----------+-------------+
|
|
| player_id | first_login |
|
|
+-----------+-------------+
|
|
| 1 | 2016-03-01 |
|
|
| 2 | 2017-06-25 |
|
|
| 3 | 2016-03-02 |
|
|
+-----------+-------------+
|
|
</pre>
|
|
</div> |