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