@squidcloud/client
    Preparing search index...

    Interface JoinCondition

    A join condition defining how two tables are related in a database query. The join conditions specify the alias for the left side of the join and the field names to join on.

    interface JoinCondition {
        isInner: boolean;
        left: string;
        leftAlias: string;
        right: string;
    }
    Index

    Properties

    isInner: boolean

    Indicates whether the join is an inner join (true) or outer join (false).

    left: string

    The field name from the left table to join on.

    leftAlias: string

    The alias of the left table in the join operation.

    right: string

    The field name from the right table to join on.