適切な明示的なjoin
の使用方法を学ぶ必要があります 構文。簡単なルール:from
でカンマを使用しないでください 句。 常に 明示的なjoin
を使用する s:
SELECT A.order_number, A.header_id, B.line_id, B.quantity,
C.hold_price_id, C.released_flag
FROM Table_A a JOIN
Table_B b
ON a.header_id = b.header_id JOIN
Table_C c
ON c.header_id = b.header_id AND c.line_id = b.line_id
WHERE a.order_number = '123';