Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
select ... fields from table a, b where ... conditions and a.timeload between b.timestop(+) and b.timego(+)
between operatorがどのように機能するかを理解しています。ここでの+ operator はleft joinを表していることも知っています。ANSI結合標準を使用して書き直すにはどうすればよいですか?
演算子LEFT OUTER JOINの代わりに使用します。+
LEFT OUTER JOIN
+
クエリの場合はa LEFT OUTER JOIN b次のとおりです。
a LEFT OUTER JOIN b
select ... fields from table a LEFT OUTER JOIN b ON a.timeload between b.timestop and b.timego where ... conditions