ソースコード
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 DESC;
提出情報
提出日時2024/09/02 10:26:31
コンテストSQLの教科書確認用コンテスト2
問題部署別受注一覧
受験者mukadenodaiou
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
91 MB
データパターン2
WA
32 MB