@perspective-dev/client
    Preparing search index...

    Function join

    • Create a read-only table from a JOIN of two source tables.

      Parameters

      • left: string | Table

        The left source table (a Table instance or a table name string).

      • right: string | Table

        The right source table (a Table instance or a table name string).

      • on: string
      • Optionaloptions: JoinOptions

        Optional join configuration: { join_type?: "inner"|"left"|"outer", name?: string }

      Returns Promise<Table>