ソースコード
select emp_code as CODE,emp_last_name as SURNAME,emp_first_name as NAME
from (
    select *, replace(emp_last_name,' ','')||' '||replace(emp_first_name,' ','') as nm
    from EMP
    where VALID_FLG=1
)
where nm in (
        with t as (
            select *, replace(emp_last_name,' ','')||' '||replace(emp_first_name,' ','') as z
            from EMP
            where VALID_FLG=1
        )
        select z
        from t
        group by z having count(z) >1
)
order by nm, emp_code;
提出情報
提出日時2023/04/09 20:46:02
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者tabr
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
74 MB
データパターン2
AC
76 MB
データパターン3
AC
76 MB