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