ソースコード
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 outer join TBL_CUST as cust on cust.CUST_CODE = orders.CUST_CODE 
order by dept.DEPT_CODE ASC,orders.ORDER_NO ASC;
提出情報
提出日時2024/09/02 10:39:33
コンテストSQLの教科書確認用コンテスト2
問題部署別受注一覧
受験者mukadenodaiou
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
92 MB
データパターン2
AC
34 MB