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