ソースコード
with ind as (
    select
        EMAIL
        , instr(EMAIL, '@') as f
        , instr(EMAIL, '.co.jp') as t
    from
        MEMBER_MST
)

select
    mm.MEMBER_CODE as MEMBER
    , mm.EMAIL as EMAIL
    , substr(mm.EMAIL, ind.f+1, ind.t-ind.f-1) as DOMAIN
from
    MEMBER_MST as mm
    left outer join
        ind on
            ind.EMAIL = mm.EMAIL
order by
    DOMAIN desc
    , MEMBER desc
;
提出情報
提出日時2024/02/19 09:50:08
コンテスト第11回 SQLコンテスト
問題ドメイン名
受験者aj.ito
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
92 MB
データパターン2
AC
90 MB