コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
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