DataSetLogicalTableMapSourceJoinInstruction

data class DataSetLogicalTableMapSourceJoinInstruction(val leftJoinKeyProperties: DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties? = null, val leftOperand: String, val onClause: String, val rightJoinKeyProperties: DataSetLogicalTableMapSourceJoinInstructionRightJoinKeyProperties? = null, val rightOperand: String, val type: String)

Constructors

constructor(leftJoinKeyProperties: DataSetLogicalTableMapSourceJoinInstructionLeftJoinKeyProperties? = null, leftOperand: String, onClause: String, rightJoinKeyProperties: DataSetLogicalTableMapSourceJoinInstructionRightJoinKeyProperties? = null, rightOperand: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Join key properties of the left operand. See left_join_key_properties.

Link copied to clipboard

Operand on the left side of a join.

Link copied to clipboard

Join instructions provided in the ON clause of a join.

Link copied to clipboard

Join key properties of the right operand. See right_join_key_properties.

Link copied to clipboard

Operand on the right side of a join.

Link copied to clipboard

Type of join. Valid values are INNER, OUTER, LEFT, and RIGHT.