public enum CorrelateJoinType extends Enum<CorrelateJoinType>
| Enum Constant and Description |
|---|
ANTI
Anti-join.
|
INNER
Inner join
|
LEFT
Left-outer join
|
SEMI
Semi-join.
|
| Modifier and Type | Method and Description |
|---|---|
static CorrelateJoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CorrelateJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CorrelateJoinType INNER
public static final CorrelateJoinType LEFT
public static final CorrelateJoinType SEMI
Similar to from A ... where a in (select b from B ...)
public static final CorrelateJoinType ANTI
Similar to from A ... where a NOT in (select b from B ...)
Note: if B.b is nullable and B has nulls, no rows must be returned.
public static CorrelateJoinType[] values()
for (CorrelateJoinType c : CorrelateJoinType.values()) System.out.println(c);
public static CorrelateJoinType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2016 The Apache Software Foundation. All rights reserved.