ソースコード
with t as(
select
    distinct
    MEMBER_CODE
    ,ORDER_DATETIME as ORDER_DATE
from
    EC_ORDERS
)
,t_with_previous as(
select
    *
    ,lag(ORDER_DATE)over(partition by MEMBER_CODE order by ORDER_DATE)as previsous_day
from
    t
)
select
    order_date
    ,tp.member_CODE as code
    ,case m.optout_type
        when 0 then '可'
        when 1 then '不可'
        else '不明'
    end as OPTOUT
from
    t_with_previous as tp
    join MEMBER_MST as m
    on tp.member_code=m.member_code
    
where
    strftime('%Y',order_date)-strftime('%Y',previsous_day)>=1
    and
    
    date(ORDER_DATE) between '2023-07-01' and '2023-07-31'

order by
    ORDER_DATE desc
    ,code desc
提出情報
提出日時2023/10/13 12:55:44
コンテスト第9回 SQLコンテスト
問題クーポン配布対象
受験者19820314
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
78 MB