コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
select
emp_code as CODE,
emp_last_name as SURNAME,
emp_first_name as NAME
from emp as x
where exists (
select y.emp_code from emp as y
where y.emp_code <> x.emp_code AND VALID_FLG = '1'
and REPLACE(y.emp_last_name, ' ', '') = REPLACE(x.emp_last_name, ' ', '')
and REPLACE(y.emp_first_name, ' ', '') = REPLACE(x.emp_first_name, ' ', '')
) AND VALID_FLG = '1'
order by REPLACE(x.emp_last_name, ' ', ''), REPLACE(x.emp_first_name, ' ', ''), x.emp_code
提出情報
提出日時 | 2023/02/18 18:49:52 |
コンテスト | 第5回 SQLコンテスト |
問題 | 同姓同名抽出 |
受験者 | yowano |
状態 (詳細) | AC (Accepted: 正答) |
メモリ使用量 | 78 MB |
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
78 MB
データパターン3
AC
77 MB