ソースコード
with a as(
select EMP_CODE, replace(EMP_LAST_NAME, ' ', '') as la, replace(EMP_FIRST_NAME, ' ', '') as fi, replace(EMP_LAST_NAME, ' ', '')||replace(EMP_FIRST_NAME, ' ', '') as name  from EMP where VALID_FLG='1'
), b as (
select name, count(*) from a
group by name
having count(*) > 1
), c as(
select * from a
where name in (select name from b)
)

select * from EMP
where EMP_CODE in (select EMP_CODE from c)
;
提出情報
提出日時2023/02/18 20:03:04
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者birt
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
75 MB
データパターン2
WA
76 MB
データパターン3
WA
76 MB