Is there any alternative for OUTER APPLY in Oracle?
问题 In the following example, I pass tbA.ID to tbC query. In this case, I used OUTER APPLY operator of SqlServer. SELECT ... FROM (SELECT ID FROM TableA ...) tbA OUTER APPLY (SELECT ... FROM TableB tbB WHERE tbA.ID = tbB.ID) tbC ... In Oracle, we don't have the OUTER APPLY operator. So, how can I pass a value (tbA.ID) from the left side query to the right side query (tbC) of the join without modifying the structure of my query? Is there any alternative for OUTER APPLY in Oracle? 回答1: SQL Servers