ソースコード
with tmp as (
    select date(min(login_datetime)) first_login_date
    from access_log
    group by member_code
)
select first_login_date FIRST_LOGIN, count(first_login_date) MEMBER_CNT
from tmp
where first_login_date >= '2023-08-01' and first_login_date <= '2023-08-31'
group by first_login_date
order by first_login_date desc
提出情報
提出日時2023/10/16 10:54:09
コンテスト第9回 SQLコンテスト
問題新規ログイン数
受験者toshikish
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量93 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
93 MB
データパターン2
AC
81 MB