ソースコード
select
a.EMP_CODE as CODE,
a.EMP_LAST_NAME as SURNAME,
a.EMP_FIRST_NAME as NAME
  from EMP a
 where a.VALID_FLG = '1'
   and exists(select 1 
                from EMP b
               where b.VALID_FLG = '1'
                 and replace(a.EMP_LAST_NAME,' ','')
                   = replace(b.EMP_LAST_NAME,' ','')
                 and replace(a.EMP_FIRST_NAME,' ','')
                   = replace(b.EMP_FIRST_NAME,' ','')
                 and a.EMP_CODE != b.EMP_CODE)
order by replace(a.EMP_LAST_NAME ,' ',''),
         replace(a.EMP_FIRST_NAME,' ',''),a.EMP_CODE
提出情報
提出日時2023/04/15 08:21:28
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者AketiJyuuzou
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
74 MB
データパターン2
AC
76 MB
データパターン3
AC
76 MB