prorm API Reference
    Preparing search index...

    Enumeration JoinType

    How two tables are joined.

    Index
    Inner: "INNER"

    Only rows matching on both sides. The default, and usually what you want.

    Left: "LEFT"

    Every row from the left, with nulls where the right has no match.

    Right: "RIGHT"

    Every row from the right. Equivalent to a Left join with the sides swapped.

    Full: "FULL"

    Every row from both sides, matched where possible. Not supported by MySQL.

    Cross: "CROSS"

    Every combination of both sides. Produces left × right rows — rarely intended.