ソースコード
select
  e.emp_code as 'CODE',
  e.EMP_LAST_NAME as 'SURNAME',
  e.EMP_FIRST_NAME as 'NAME'
from emp e 
inner join emp e2
  on e.emp_code != e2.emp_code
  and replace(e.EMP_LAST_NAME, ' ', '') = replace(e2.EMP_LAST_NAME, ' ', '')
  and replace(e.EMP_FIRST_NAME, ' ', '') = replace(e2.EMP_FIRST_NAME, ' ', '')
  and e.valid_flg = '1' and e2.valid_flg = '1'
where
  e.valid_flg = '1'
order by
  replace(e.EMP_LAST_NAME, ' ', ''),
  e.emp_code
提出情報
提出日時2023/02/19 18:36:07
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者cashew
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
1/3
状態
メモリ使用量
データパターン1
AC
81 MB
データパターン2
WA
89 MB
データパターン3
WA
79 MB