ソースコード
select
    d.dept_code as  DEPT_CODE
    ,DEPT_NAME
    ,ORDER_NO
    ,c.CUST_CODE as CUST_CODE
    ,CUST_NAME
    ,ORDER_AMT
from tbl_orders as o
inner join tbl_dept as d
on o.dept_code = d.dept_code
left outer join tbl_cust as c
on o.cust_code = c.cust_code
order by d.dept_code ,order_no
提出情報
提出日時2024/07/16 13:41:04
コンテストSQLの教科書確認用コンテスト2
問題部署別受注一覧
受験者HamamatsuUnagi
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB