Module

x/justaos_orm/src/query/Query.ts>default#select

JUSTAOS's ORM (Object–relational mapping) tool is built for Deno and provides transparent persistence for JavaScript objects to Postgres database.
Latest
method default.prototype.select
import { default } from "https://dotland.deno.dev/x/justaos_orm@v10.0.0/src/query/Query.ts";

This method is used to set the columns for the select query.

Parameters

optional
columnNameOrObjectOrArray: string | string[] | { [key: string]: boolean; }
  • The other columns.
...otherColumns: string[]

Returns

Query

The SelectQuery instance.