ソースコード
select
EMP_CODE as CODE,
EMP_LAST_NAME as SURNAME,
EMP_FIRST_NAME as NAME

from emp m

where valid_flg = '1'
and exists(
    select 1
    from emp s
    where s.valid_flg = '1'
    and s.emp_code != m.emp_code
    and REPLACE(s.EMP_LAST_NAME, ' ', '') = REPLACE(m.EMP_LAST_NAME, ' ', '')
    and REPLACE(s.EMP_FIRST_NAME, ' ', '') = REPLACE(m.EMP_FIRST_NAME, ' ', '')
)

order by REPLACE(EMP_LAST_NAME, ' ', ''), REPLACE(EMP_FIRST_NAME, ' ', ''), emp_code
提出情報
提出日時2023/02/19 17:46:53
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者sh_yama
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量98 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
80 MB
データパターン2
AC
83 MB
データパターン3
AC
98 MB