NLJOIN

" " NLJOIN

Operator name: NLJOIN

Represents: A nested loop join that scans (usually with an index scan) the inner table once for each row of the outer table.

A join is necessary whenever there is more than one table referenced in a FROM clause. A nested loop join does not require a join predicate, but generally performs better with one.

A nested loop join is performed either:

For more information, see the section on join concepts in the Administration Guide.

Performance suggestions:

Related information: