ソースコード
with tmp as (
select
    o.dept_code DEPT_CODE
    ,d.dept_name DEPT_NAME
from
    (select distinct dept_code from tbl_orders) o
    left join tbl_dept d on d.dept_code = o.dept_code
union all
select
    s.dept_code DEPT_CODE
    ,d.dept_name DEPT_NAME
from
    (select distinct dept_code from tbl_sales) s
    left join tbl_dept d on d.dept_code = s.dept_code

)
select
    distinct *
from
    tmp
order by
    dept_code asc
;
提出情報
提出日時2024/10/04 06:35:05
コンテストSQLの教科書確認用コンテスト2
問題登録部署一覧
受験者nosh
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB