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

from
EMP a inner join EMP b
on replace(a.EMP_LAST_NAME||a.EMP_FIRST_NAME,' ','') = replace(b.EMP_LAST_NAME||b.EMP_FIRST_NAME,' ','')
and a.emp_code != b.emp_code
where 
a.valid_flg='1' and b.valid_flg='1'
order by 
replace(a.EMP_LAST_NAME||a.EMP_FIRST_NAME,' ','') 
, a.emp_code
提出情報
提出日時2023/02/18 21:44:30
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者noneof383
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
2/3
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
WA
80 MB
データパターン3
AC
76 MB