Interface

SelectOption

SelectOption

Exposes the remaining options after a SELECT

View Source query/options.ts, line 199

Extends

Methods

# count(selector) → {CountOption.<M>}

counts the records

Parameters:
Name Type Description
selector SelectSelector

View Source query/options.ts, line 234

CountOption.<M>

# distinct(selector) → {DistinctOption.<M>}

selects distinct values

Parameters:
Name Type Description
selector SelectSelector

View Source query/options.ts, line 210

DistinctOption.<M>

# from(tableName) → {WhereOption}

selects records from a table

Parameters:
Name Type Description
tableName Constructor
Inherited From:

View Source query/options.ts, line 147

WhereOption

# max(selector) → {MaxOption.<M>}

the maximum value

Parameters:
Name Type Description
selector SelectSelector

View Source query/options.ts, line 218

MaxOption.<M>

# min(selector) → {MinOption.<M>}

selects the minimum value

Parameters:
Name Type Description
selector SelectSelector

View Source query/options.ts, line 226

MinOption.<M>