1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

100日でSQLの達人になる@LeetCode! Day47 <WITHとCASE WHENとLeft JOINで解決>

Posted at

1097. Game Play Analysis V (問題レベル: Hard)要課金

今日の問題はこれ。
日付ごとに、その日がはじめてプレイしたユーザーが次の日もプレイする割合を算出するという問題。
Middle, Hardの問題では珍しい一つのテーブルからの問題。

With句とCASE WHENを使って自力で解決できた。

最終的に提出したコードは下記のとおり。

SQL
WITH cte AS
(SELECT DISTINCT player_id, 
 MIN(event_date) OVER(PARTITION BY player_id) AS date
 FROM activity)
 
SELECT m.date AS install_dt,
COUNT(m.player_id) AS installs,
ROUND(AVG(CASE WHEN m.games_played IS NULL THEN 0.0 ELSE 1.0 END),2) AS Day1_retention
FROM 
(SELECT c.player_id, c.date, a.games_played
FROM cte c
LEFT JOIN activity a
ON a.player_id=c.player_id AND DATEDIFF(day, c.date, a.event_date) = 1) m
GROUP BY m.date

Left JOINで初日の次の日のデータがある場合と無い場合で切り分けるという考え方を使った。

今日のポイントはWITHCASE WHENLeft JOINで解決としよう。

  • LeetCodeの問題は、MS SQL Serverで解いています。
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?