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