ソースコード
select * from EMP;

select EMP_CODE as CODE, EMP_LAST_NAME as SURNAME, EMP_FIRST_NAME as NAME from
(select EMP_CODE, replace(EMP_LAST_NAME, " ", "") as EMP_LAST_NAME
, replace(EMP_FIRST_NAME, " ", "") as EMP_FIRST_NAME from EMP where VALID_FLG = '1') as a
where exists(
select * from
(select EMP_CODE, replace(EMP_LAST_NAME, " ", "") as EMP_LAST_NAME
, replace(EMP_FIRST_NAME, " ", "") as EMP_FIRST_NAME from EMP as b where VALID_FLG = '1')
where a.CODE != b.CODE
)
order by SURNAME, CODE;
提出情報
提出日時2023/02/19 10:00:11
コンテスト第5回 SQLコンテスト
問題同姓同名抽出
受験者mrdSbf9u
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量85 MB
メッセージ
SQLITE_ERROR: no such column: a.CODE
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
RE
85 MB
データパターン2
RE
84 MB
データパターン3
RE
85 MB