ソースコード
with tmp as(
select dept_code from TBL_ORDERS
intersect 
select dept_code from TBL_SALES)
select a.dept_code,
(select b.dept_name
   from tbl_dept b
  where b.dept_code = a.dept_code) as DEPT_NAME
  from tmp a
order by a.dept_code
提出情報
提出日時2024/07/01 22:38:30
コンテストSQLの教科書確認用コンテスト2
問題登録部署一覧
受験者AketiJyuuzou
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
82 MB