ソースコード
select distinct
a.EMP_CODE as CODE,
a.EMP_LAST_NAME as SURNAME,
a.EMP_FIRST_NAME as NAME
  from EMP a,EMP b
 where a.VALID_FLG = '1'
   and 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(b.EMP_FIRST_NAME,' ',''),a.EMP_CODE
提出情報
提出日時2023/02/19 13:59:50
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者AketiJyuuzou
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
78 MB
データパターン3
AC
79 MB