Class InsertBuilder<Schema, Table, Return, Ext>

Type Parameters

Hierarchy

  • CallableInstance<never[], unknown>
    • InsertBuilder

Constructors

Properties

_statement: ast.Insert<Ext>

Methods

  • When inserting values SIJ automatically determines the columns of your dataset by traversing all the keys in all the values. In large datasets this can be a performance issue so you can use columns to specify the columns manually and avoid the extra computation.

    Parameters

    • Rest ...columns: (keyof Table)[]

    Returns Omit<InsertBuilder<Schema, Table, Return, Ext>, "columns">

Generated using TypeDoc