ソースコード
select 
    emp1.emp_code as CODE,
    replace(emp1.emp_last_name,' ','') as SURNAME,
    replace(emp1.emp_first_name,' ','') as NAME
from emp as emp1
inner join emp as emp2
    on  emp1.emp_last_name = emp2.emp_last_name
        and
        emp1.emp_first_name = emp2.emp_first_name
where emp1.VALID_FLG = '1'
order by
    emp1.emp_last_name,
    emp2.emp_first_name,
    emp1.emp_code
    
;
提出情報
提出日時2024/11/13 14:43:34
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者pypy1212
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
84 MB
データパターン3
WA
84 MB