ソースコード
select 
EMP_CODE as CODE
, emp_last_name as SURNAME
, emp_first_name as NAME
from emp where valid_flg = '1' and 
exists (
select 1 from emp as emp2
where replace(emp.emp_last_name, ' ', '') = replace(emp2.emp_last_name, ' ', '') and replace(emp.emp_first_name, ' ', '') = replace(emp2.emp_first_name, ' ', '') and emp.emp_code != emp2.emp_code and emp2.valid_flg = '1'
)
order by replace(SURNAME || NAME, ' ', '') asc, code asc
提出情報
提出日時2024/04/27 18:30:55
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者daku10
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
85 MB
データパターン3
AC
84 MB