ソースコード
select DEPT_CODE, 
(select DEPT_NAME
from TBL_DEPT
where t.DEPT_CODE = DEPT_CODE
) as DEPT_NAME
from TBL_ORDERS t
union 
select DEPT_CODE, 
(select DEPT_NAME
from TBL_DEPT
where t.DEPT_CODE = DEPT_CODE
) as DEPT_NAME
from TBL_SALES t
order by DEPT_CODE
;
提出情報
提出日時2024/10/03 14:00:57
コンテストSQLの教科書確認用コンテスト2
問題登録部署一覧
受験者yunyun8686
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量89 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
89 MB