ソースコード
with trim as (
    select *, replace(emp_first_name, ' ', '') as surname, replace(emp_last_name, ' ', '') as name
    from emp
)
, cnt as (
select *, count(*) over (partition by surname, name) as num
from trim
where valid_flg = '1'
)
select emp_code as CODE, emp_last_name as SURNAME, emp_first_name as NAME
from cnt
where num > 1
order by surname asc, name asc, emp_code asc
提出情報
提出日時2023/02/20 10:50:29
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者kkkkk
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量95 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
95 MB
データパターン2
WA
86 MB
データパターン3
WA
95 MB