ソースコード
select
emp_code as CODE,
emp_last_name as SURNAME,
emp_first_name as NAME
from emp as x
where exists (
    select y.emp_code from emp as y
    where y.emp_code <> x.emp_code
    and REPLACE(y.emp_last_name, ' ', '') = REPLACE(x.emp_last_name, ' ', '')
    and REPLACE(y.emp_first_name, ' ', '') = REPLACE(x.emp_first_name, ' ', '')
)
order by REPLACE(x.emp_last_name, ' ', ''), REPLACE(x.emp_first_name, ' ', ''), x.emp_code
提出情報
提出日時2023/02/18 18:47:05
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者yowano
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
75 MB
データパターン2
WA
76 MB
データパターン3
WA
77 MB