ソースコード
with fl as (select 
date(login_datetime) as login_date
, member_code
from access_log
-- where date(login_datetime) between '2023-08-01' and '2023-08-31'
)
, fl2 as (select 
member_code
, min(login_date) as FIRST_LOGIN
from fl
group by member_code)
-- select * from access_log where member_code = 20000
select 
FIRST_LOGIN
, count(1) as MEMBER_CNT
from fl2
where FIRST_LOGIN between '2023-08-01' and '2023-08-31'
group by FIRST_LOGIN
order by FIRST_LOGIN desc
提出情報
提出日時2024/05/03 23:06:38
コンテスト第9回 SQLコンテスト
問題新規ログイン数
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB