ソースコード
with t as (
    select emp_code as c, emp_last_name as x, emp_first_name as y,
    replace(emp_first_name,' ','')||" "||replace(emp_last_name,' ','') as z
    from emp
    where valid_flg=1
)
select distinct t1.c as CODE, t1.x as SURNAME, t1.y as NAME
from t as t1 inner join t as t2 on t1.c!=t2.c and t1.z=t2.z
order by t1.z, 1
提出情報
提出日時2023/04/15 19:21:47
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者tabr
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量88 MB
メッセージ
テストケース(通過数/総数)
2/3
状態
メモリ使用量
データパターン1
AC
88 MB
データパターン2
AC
76 MB
データパターン3
WA
79 MB