TableOrViewStatements< Tbl extends HasResultSet, Row> extension
Easily-accessible methods to compose common operations or statements on tables or views.
- on
-
- ResultSetImplementation<
Tbl, Row>
- ResultSetImplementation<
Methods
-
all(
) → Selectable< Row> - Selects all rows that are in this table.
-
select(
{bool distinct = false}) → SimpleSelectStatement< Tbl, Row> -
Composes a
SELECT
statement on the captured table or view. -
selectOnly(
{bool distinct = false}) → JoinedSelectStatement< Tbl, Row> -
Composes a
SELECT
statement only selecting a subset of columns.