ソースコード
select
    std.age_code    as  年齢コード
,   ag.age_name      as  年齢階層名
,   sum(std.sp_time_5)  as  "5時間未満"
,   sum(std.sp_time_6)  as  "5時間以上6時間未満"
,   sum(std.sp_time_7)  as  "6時間以上7時間未満"
,   sum(std.sp_time_8)  as  "7時間以上8時間未満"
,   sum(std.sp_time_9)  as  "8時間以上9時間未満"
,   sum(std.sp_time_9over)  as  "9時間以上"
from
    sleep_time_dtl std
inner join
    age_grp ag
on  std.age_code    =   ag.age_code
inner join
    prefecture  p
on  std.pf_code =   p.pf_code
where
    1   =   1
and p.pf_name  in  ('北海道', '青森県', '岩手県', '宮城県', '福島県')
group by
    std.age_code
order by
    std.age_code
;
提出情報
提出日時2022/07/20 21:03:06
コンテスト第1回 SQLコンテスト
問題睡眠時間帯別集計
受験者earlgrey_yh
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量102 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
101 MB
データパターン2
AC
102 MB