ソースコード
with first_logins as (
    select
        member_code,
        min(date(login_datetime)) as first_login
    from access_log
    group by 1
)

select
    first_login as FIRST_LOGIN,
    count(distinct member_code) as MEMBER_CNT
from first_logins
where FIRST_LOGIN >= '2023-08-01' and FIRST_LOGIN < '2023-09-01'
group by 1
order by 1 desc;
提出情報
提出日時2023/10/15 23:09:07
コンテスト第9回 SQLコンテスト
問題新規ログイン数
受験者kkurage
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
77 MB