leetcode 550
-
[LeetCode Medium] 550. Game Play Analysis IVSQL 문제 풀이 2024. 1. 5. 13:28
테이블 정보 문제 Write a solution to report the fraction of players that logged in again on the day after the day they first logged in, rounded to 2 decimal places. In other words, you need to count the number of players that logged in for at least two consecutive days starting from their first login date, then divide that number by the total number of players. 결과 예시 정답 코드 (MySQL) WITH check_login AS (..