class default
implements IQuery
import { default } from "https://deno.land/x/justaos_orm@v10.0.0/src/core/query-builder/DML/InsertQuery.ts";
Methods
buildQuery(): string
columns(columnNameOrObjectOrArray?: string | string[] | { [key: string]: boolean; }, ...otherColumns: string[]): InsertQuery
This method is used to set the columns for the insert query.
into(tableName: string): InsertQuery
returning(columnNameOrObjectOrArray?: string | string[] | { [key: string]: boolean; }, ...otherColumns: string[]): InsertQuery
This method is used to set the returning columns for the update query.
values(values?: any[]): InsertQuery