コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
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