Lookup join strategy
SELECT /*+ joinOptions(join_strategy='lookup') */
A.col1, B.col2
FROM A
JOIN B -- this must be a dimension table
ON A.col2 = B.joinKey -- B.joinKey must be the primary key of BLast updated
Was this helpful?
SELECT /*+ joinOptions(join_strategy='lookup') */
A.col1, B.col2
FROM A
JOIN B -- this must be a dimension table
ON A.col2 = B.joinKey -- B.joinKey must be the primary key of BLast updated
Was this helpful?
Was this helpful?