ソースコード
select
    d.dept_code as DEPT_CODE
    , d.dept_name as DEPT_NAME
from tbl_orders as o
left join tbl_dept as d
    on d.dept_code=o.dept_code
union
select
    s.dept_code as DEPT_CODE
    , d.dept_name as DEPT_NAME
from tbl_sales as s
left join tbl_dept as d
    on d.dept_code=s.dept_code
order by dept_code;
提出情報
提出日時2024/05/17 16:43:27
コンテストSQLの教科書確認用コンテスト2
問題登録部署一覧
受験者sjty9561
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
84 MB
データパターン2
WA
85 MB