Polyglot SQL API Documentation - v0.1.0
    Preparing search index...

    Type Alias JoinKind

    JoinKind:
        | "Inner"
        | "Left"
        | "Right"
        | "Full"
        | "Outer"
        | "Cross"
        | "Natural"
        | "NaturalLeft"
        | "NaturalRight"
        | "NaturalFull"
        | "Semi"
        | "Anti"
        | "LeftSemi"
        | "LeftAnti"
        | "RightSemi"
        | "RightAnti"
        | "CrossApply"
        | "OuterApply"
        | "AsOf"
        | "AsOfLeft"
        | "AsOfRight"
        | "Lateral"
        | "LeftLateral"
        | "Straight"
        | "Implicit"
        | "Array"
        | "LeftArray"

    Enumerate all supported SQL join types.

    Covers the standard join types (INNER, LEFT, RIGHT, FULL, CROSS, NATURAL) as well as dialect-specific variants: SEMI/ANTI joins, LATERAL joins, CROSS/OUTER APPLY (TSQL), ASOF joins (DuckDB/Snowflake), ARRAY joins (ClickHouse), STRAIGHT_JOIN (MySQL), and implicit comma-joins.