ソースコード
select
    EMP_CODE as CODE
    , EMP_LAST_NAME as SURNAME
    , EMP_FIRST_NAME as NAME
from EMP as E1
where VALID_FLG='1'
    and exists (select * from EMP as E2 
            where E2.VALID_FLG='1' 
                and E1.EMP_CODE<>E2.EMP_CODE
                and replace(E1.EMP_LAST_NAME, ' ', '')=replace(E2.EMP_LAST_NAME, ' ', '')
                and replace(E1.EMP_FIRST_NAME, ' ', '')=replace(E2.EMP_FIRST_NAME, ' ', ''))
order by 
    replace(SURNAME, ' ', '')
    , replace(NAME, ' ', '')
    , CODE
;
提出情報
提出日時2024/10/02 13:29:18
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者poapoa1010
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB
データパターン3
AC
83 MB