ソースコード
select
 T1.dept_code
 , T1.dept_name
 , T2.order_no
 , T3.cust_code
 , T3.cust_name
 , T2.order_amt
from tbl_dept T1
inner join tbl_orders T2 on
  T1.dept_code = T2.dept_code
left outer join tbl_cust T3 on
  T2.cust_code = T3.cust_code
order by 
  T1.dept_code asc
  , T2.order_no asc;
提出情報
提出日時2024/06/25 20:53:33
コンテストSQLの教科書確認用コンテスト2
問題部署別受注一覧
受験者lsadsfj
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB