ソースコード
select
    td.dept_code,
    td.dept_name,
    to.order_no,
    tc.cust_code,
    tc.cust_name,
    to.order_amt
from TBL_ORDERS as to
inner join TBL_DEPT as td on td.dept_code = to.dept_code
left outer join TBL_CUST as tc on tc.cust_code = to.cust_code
order by 
    to.dept_code asc,
    to.order_no asc
;
提出情報
提出日時2024/10/27 13:38:24
コンテストSQLの教科書確認用コンテスト2
問題部署別受注一覧
受験者xjo
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量85 MB
メッセージ
SQLITE_ERROR: near "to": syntax error
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
85 MB
データパターン2
RE
84 MB