Data Set Join Instruction
data class DataSetJoinInstruction(val leftJoinKeyProperties: DataSetJoinKeyProperties? = null, val leftOperand: String, val onClause: String, val rightJoinKeyProperties: DataSetJoinKeyProperties? = null, val rightOperand: String, val type: DataSetJoinType)
The instructions associated with a join.
Constructors
Link copied to clipboard
constructor(leftJoinKeyProperties: DataSetJoinKeyProperties? = null, leftOperand: String, onClause: String, rightJoinKeyProperties: DataSetJoinKeyProperties? = null, rightOperand: String, type: DataSetJoinType)
Properties
Link copied to clipboard
Join key properties of the left operand.
Link copied to clipboard
The operand on the left side of a join.
Link copied to clipboard
Join key properties of the right operand.
Link copied to clipboard
The operand on the right side of a join.
Link copied to clipboard
The type of join that it is.