always_left) and supports several standard SQL join types, as well as two directional join types that are specific to Omni.
Syntax
Properties
The type of join to perform. Can be:Standard join types:
always_left- GeneratesLEFT JOINinner- GeneratesINNER JOINfull_outer- GeneratesFULL JOINcross- GeneratesCROSS JOIN
right_left- Generates aRIGHT JOINwhen used in theFROM/TOdirection, and aLEFT JOINwhen used in the opposite directionleft_right- Generates aLEFT JOINwhen used in theFROM/TOdirection, and aRIGHT JOINwhen used in the opposite direction
Examples
Create LEFT JOIN with always_left
Create LEFT JOIN with left_right type
Create RIGHT JOIN with right_left type