Query3<A, B, C> extension
Extension methods for a query returning zero or more rows with 3 expressions.
Properties
Methods
-
count(
) → QuerySingle< (Expr< int> )> -
Available on Query<
Count number of rows in this Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>COUNT(*)
aggregate function. -
except(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingEXCEPT
set operator. -
exists(
) → QuerySingle< (Expr< bool> )> -
Available on Query<
Check for existance of rows in this Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>EXISTS
operator. -
fetch(
) → Future< List< (A, B, C)> > -
Available on Query<
Query the database for rows in this Query as a List.(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )> -
groupBy<
T extends Record> (T groupBuilder(Expr< A> a, Expr<B> b, Expr<C> c)) → Group<T, (Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Create projection for(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>GROUP BY
clause. -
intersect(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingINTERSECT
set operator. -
join<
T extends Record> (Query< T> query) → InnerJoin<(Expr< A> , Expr<B> , Expr<C> ), T> -
Available on Query<
Join this Query with another Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>INNER JOIN
clause. -
leftJoin<
T extends Record> (Query< T> query) → LeftJoin<(Expr< A> , Expr<B> , Expr<C> ), T> -
Available on Query<
Join this Query with another Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>LEFT JOIN
clause. -
limit(
int limit) → Query< (Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Limit Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>LIMIT
clause. -
offset(
int offset) → Query< (Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Offset Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>OFFSET
clause. -
orderBy(
List< (Expr< builder(Expr<Comparable?> , Order)>A> a, Expr<B> b, Expr<C> c)) → OrderedQuery<(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Order Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>ORDER BY
clause. -
rightJoin<
T extends Record> (Query< T> query) → RightJoin<(Expr< A> , Expr<B> , Expr<C> ), T> -
Available on Query<
Join this Query with another Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>RIGHT JOIN
clause. -
select<
T extends Record> (T projectionBuilder(Expr< A> a, Expr<B> b, Expr<C> c)) → Query<T> -
Available on Query<
Create a projection of this Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>SELECT
clause. -
stream(
) → Stream< (A, B, C)> -
Available on Query<
Query the database for rows in this Query as a Stream.(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )> -
union(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingUNION
set operator. -
unionAll(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingUNION ALL
set operator. -
where(
Expr< bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) → Query<(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Filter Query using(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>WHERE
clause.
Operators
-
operator &(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingINTERSECT
set operator. -
operator +(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingUNION ALL
set operator. -
operator -(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingUNION
set operator. -
operator |(
Query< (Expr< other) → Query<A> , Expr<B> , Expr<C> )>(Expr< A> , Expr<B> , Expr<C> )> -
Available on Query<
Combine this Query with(Expr< , provided by the Query3 extensionA> , Expr<B> , Expr<C> )>other
usingEXCEPT
set operator.