Query<T extends Record> class final Writing queries

A Query on the database from which results can be fetched.

Implementers
Available extensions

Properties

asSubQuery SubQuery<T>

Available on Query<T>, provided by the QueryExt extension

Use this Query as a SubQuery.
no setter
first QuerySingle<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Limit Query to the first row using LIMIT clause.
no setter
first QuerySingle<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Limit Query to the first row using LIMIT clause.
no setter
first QuerySingle<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Limit Query to the first row using LIMIT clause.
no setter
first QuerySingle<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Limit Query to the first row using LIMIT clause.
no setter
first QuerySingle<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Limit Query to the first row using LIMIT clause.
no setter
first QuerySingle<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Limit Query to the first row using LIMIT clause.
no setter
first QuerySingle<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Limit Query to the first row using LIMIT clause.
no setter
first QuerySingle<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Limit Query to the first row using LIMIT clause.
no setter
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

avg() QuerySingle<(Expr<double?>)>

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

Take the average of the rows in this query using the AVG aggregate function.
avg() QuerySingle<(Expr<double?>)>

Available on Query<(Expr<int?>)>, provided by the QueryInteger extension

Take the average of the rows in this query using the AVG aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Count number of rows in this Query using COUNT(*) aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Count number of rows in this Query using COUNT(*) aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Count number of rows in this Query using COUNT(*) aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Count number of rows in this Query using COUNT(*) aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Count number of rows in this Query using COUNT(*) aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Count number of rows in this Query using COUNT(*) aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Count number of rows in this Query using COUNT(*) aggregate function.
count() QuerySingle<(Expr<int>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Count number of rows in this Query using COUNT(*) aggregate function.
distinct() Query<T>

Available on Query<T>, provided by the QueryExt extension

Create a query with distinct rows from this query using the DISTINCT keyword.
except(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using EXCEPT set operator.
except(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using EXCEPT set operator.
except(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using EXCEPT set operator.
except(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using EXCEPT set operator.
except(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using EXCEPT set operator.
except(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using EXCEPT set operator.
except(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using EXCEPT set operator.
except(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using EXCEPT set operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Check for existance of rows in this Query using EXISTS operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Check for existance of rows in this Query using EXISTS operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Check for existance of rows in this Query using EXISTS operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Check for existance of rows in this Query using EXISTS operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Check for existance of rows in this Query using EXISTS operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Check for existance of rows in this Query using EXISTS operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Check for existance of rows in this Query using EXISTS operator.
exists() QuerySingle<(Expr<bool>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Check for existance of rows in this Query using EXISTS operator.
fetch() Future<List<(A, B, C, D)>>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Query the database for rows in this Query as a List.
fetch() Future<List<A>>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Query the database for rows in this Query as a List.
fetch() Future<List<(A, B)>>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Query the database for rows in this Query as a List.
fetch() Future<List<(A, B, C, D, E, F, G)>>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Query the database for rows in this Query as a List.
fetch() Future<List<(A, B, C, D, E)>>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Query the database for rows in this Query as a List.
fetch() Future<List<(A, B, C)>>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Query the database for rows in this Query as a List.
fetch() Future<List<(A, B, C, D, E, F, G, H)>>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Query the database for rows in this Query as a List.
fetch() Future<List<(A, B, C, D, E, F)>>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Query the database for rows in this Query as a List.
groupBy<T extends Record>(T groupBuilder(Expr<A> a, Expr<B> b)) Group<T, (Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Create projection for GROUP BY clause.
groupBy<T extends Record>(T groupBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f)) Group<T, (Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Create projection for GROUP BY clause.
groupBy<T extends Record>(T groupBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e)) Group<T, (Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Create projection for GROUP BY clause.
groupBy<T extends Record>(T groupBuilder(Expr<A> a)) Group<T, (Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Create projection for GROUP BY clause.
groupBy<T extends Record>(T groupBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g, Expr<H> h)) Group<T, (Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Create projection for GROUP BY clause.
groupBy<T extends Record>(T groupBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d)) Group<T, (Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Create projection for GROUP BY clause.
groupBy<T extends Record>(T groupBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g)) Group<T, (Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Create projection for GROUP BY clause.
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<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Create projection for GROUP BY clause.
intersect(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using INTERSECT set operator.
intersect(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using INTERSECT set operator.
intersect(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using INTERSECT set operator.
intersect(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using INTERSECT set operator.
intersect(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using INTERSECT set operator.
intersect(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using INTERSECT set operator.
intersect(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using INTERSECT set operator.
intersect(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using INTERSECT set operator.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Join this Query with another Query using INNER JOIN clause.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>, Expr<B>, Expr<C>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Join this Query with another Query using INNER JOIN clause.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>), T>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Join this Query with another Query using INNER JOIN clause.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Join this Query with another Query using INNER JOIN clause.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Join this Query with another Query using INNER JOIN clause.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Join this Query with another Query using INNER JOIN clause.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Join this Query with another Query using INNER JOIN clause.
join<T extends Record>(Query<T> query) InnerJoin<(Expr<A>, Expr<B>), T>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Join this Query with another Query using INNER JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Join this Query with another Query using LEFT JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Join this Query with another Query using LEFT JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>, Expr<B>, Expr<C>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Join this Query with another Query using LEFT JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Join this Query with another Query using LEFT JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>, Expr<B>), T>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Join this Query with another Query using LEFT JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Join this Query with another Query using LEFT JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Join this Query with another Query using LEFT JOIN clause.
leftJoin<T extends Record>(Query<T> query) LeftJoin<(Expr<A>), T>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Join this Query with another Query using LEFT JOIN clause.
limit(int limit) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Limit Query using LIMIT clause.
limit(int limit) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Limit Query using LIMIT clause.
limit(int limit) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Limit Query using LIMIT clause.
limit(int limit) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Limit Query using LIMIT clause.
limit(int limit) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Limit Query using LIMIT clause.
limit(int limit) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Limit Query using LIMIT clause.
limit(int limit) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Limit Query using LIMIT clause.
limit(int limit) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Limit Query using LIMIT clause.
max() QuerySingle<(Expr<DateTime?>)>

Available on Query<(Expr<DateTime?>)>, provided by the QueryDateTime extension

Take the largest row of the rows in this query using the MAX aggregate function.
max() QuerySingle<(Expr<double?>)>

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

Take the largest row of the rows in this query using the MAX aggregate function.
max() QuerySingle<(Expr<String?>)>

Available on Query<(Expr<String?>)>, provided by the QueryString extension

Take the largest row of the rows in this query using the MAX aggregate function.
max() QuerySingle<(Expr<int?>)>

Available on Query<(Expr<int?>)>, provided by the QueryInteger extension

Take the largest row of the rows in this query using the MAX aggregate function.
min() QuerySingle<(Expr<String?>)>

Available on Query<(Expr<String?>)>, provided by the QueryString extension

Take the smallest row of the rows in this query using the MIN aggregate function.
min() QuerySingle<(Expr<double?>)>

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

Take the smallest row of the rows in this query using the MIN aggregate function.
min() QuerySingle<(Expr<int?>)>

Available on Query<(Expr<int?>)>, provided by the QueryInteger extension

Take the smallest row of the rows in this query using the MIN aggregate function.
min() QuerySingle<(Expr<DateTime?>)>

Available on Query<(Expr<DateTime?>)>, provided by the QueryDateTime extension

Take the smallest row of the rows in this query using the MIN aggregate function.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
offset(int offset) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Offset Query using OFFSET clause.
offset(int offset) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Offset Query using OFFSET clause.
offset(int offset) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Offset Query using OFFSET clause.
offset(int offset) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Offset Query using OFFSET clause.
offset(int offset) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Offset Query using OFFSET clause.
offset(int offset) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Offset Query using OFFSET clause.
offset(int offset) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Offset Query using OFFSET clause.
offset(int offset) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Offset Query using OFFSET clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g, Expr<H> h)) OrderedQuery<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Order Query using ORDER BY clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e)) OrderedQuery<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Order Query using ORDER BY clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f)) OrderedQuery<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Order Query using ORDER BY clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a, Expr<B> b, Expr<C> c)) OrderedQuery<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Order Query using ORDER BY clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g)) OrderedQuery<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Order Query using ORDER BY clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d)) OrderedQuery<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Order Query using ORDER BY clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a)) OrderedQuery<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Order Query using ORDER BY clause.
orderBy(List<(Expr<Comparable?>, Order)> builder(Expr<A> a, Expr<B> b)) OrderedQuery<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Order Query using ORDER BY clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Join this Query with another Query using RIGHT JOIN clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>), T>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Join this Query with another Query using RIGHT JOIN clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>, Expr<B>), T>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Join this Query with another Query using RIGHT JOIN clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Join this Query with another Query using RIGHT JOIN clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Join this Query with another Query using RIGHT JOIN clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>, Expr<B>, Expr<C>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Join this Query with another Query using RIGHT JOIN clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Join this Query with another Query using RIGHT JOIN clause.
rightJoin<T extends Record>(Query<T> query) RightJoin<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>), T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Join this Query with another Query using RIGHT JOIN clause.
select<T extends Record>(T projectionBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) Query<T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Create a projection of this Query using SELECT clause.
select<T extends Record>(T projectionBuilder(Expr<A> a)) Query<T>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Create a projection of this Query using SELECT clause.
select<T extends Record>(T projectionBuilder(Expr<A> a, Expr<B> b)) Query<T>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Create a projection of this Query using SELECT clause.
select<T extends Record>(T projectionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g)) Query<T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Create a projection of this Query using SELECT clause.
select<T extends Record>(T projectionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g, Expr<H> h)) Query<T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Create a projection of this Query using SELECT clause.
select<T extends Record>(T projectionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e)) Query<T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Create a projection of this Query using SELECT clause.
select<T extends Record>(T projectionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d)) Query<T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Create a projection of this Query using SELECT clause.
select<T extends Record>(T projectionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f)) Query<T>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Create a projection of this Query using SELECT clause.
stream() Stream<(A, B)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Query the database for rows in this Query as a Stream.
stream() Stream<(A, B, C, D, E, F, G, H)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Query the database for rows in this Query as a Stream.
stream() Stream<(A, B, C, D, E, F)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Query the database for rows in this Query as a Stream.
stream() Stream<(A, B, C, D, E)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Query the database for rows in this Query as a Stream.
stream() Stream<(A, B, C, D)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Query the database for rows in this Query as a Stream.
stream() Stream<(A, B, C)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Query the database for rows in this Query as a Stream.
stream() Stream<A>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Query the database for rows in this Query as a Stream.
stream() Stream<(A, B, C, D, E, F, G)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Query the database for rows in this Query as a Stream.
sum() QuerySingle<(Expr<double>)>

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

Take the sum of the rows in this query using the SUM aggregate function.
sum() QuerySingle<(Expr<int>)>

Available on Query<(Expr<int?>)>, provided by the QueryInteger extension

Take the sum of the rows in this query using the SUM aggregate function.
toString() String
A string representation of this object.
inherited
union(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using UNION set operator.
union(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using UNION set operator.
union(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using UNION set operator.
union(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using UNION set operator.
union(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using UNION set operator.
union(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using UNION set operator.
union(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using UNION set operator.
union(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using UNION set operator.
unionAll(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using UNION ALL set operator.
unionAll(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using UNION ALL set operator.
unionAll(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using UNION ALL set operator.
unionAll(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using UNION ALL set operator.
unionAll(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using UNION ALL set operator.
unionAll(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using UNION ALL set operator.
unionAll(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using UNION ALL set operator.
unionAll(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using UNION ALL set operator.
where(Expr<bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g)) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Filter Query using WHERE clause.
where(Expr<bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f, Expr<G> g, Expr<H> h)) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Filter Query using WHERE clause.
where(Expr<bool> conditionBuilder(Expr<A> a, Expr<B> b)) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Filter Query using WHERE clause.
where(Expr<bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Filter Query using WHERE clause.
where(Expr<bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e, Expr<F> f)) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Filter Query using WHERE clause.
where(Expr<bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e)) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Filter Query using WHERE clause.
where(Expr<bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d)) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Filter Query using WHERE clause.
where(Expr<bool> conditionBuilder(Expr<A> a)) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Filter Query using WHERE clause.

Operators

operator &(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using INTERSECT set operator.
operator &(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using INTERSECT set operator.
operator &(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using INTERSECT set operator.
operator &(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using INTERSECT set operator.
operator &(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using INTERSECT set operator.
operator &(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using INTERSECT set operator.
operator &(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using INTERSECT set operator.
operator &(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using INTERSECT set operator.
operator +(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using UNION ALL set operator.
operator +(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using UNION ALL set operator.
operator +(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using UNION ALL set operator.
operator +(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using UNION ALL set operator.
operator +(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using UNION ALL set operator.
operator +(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using UNION ALL set operator.
operator +(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using UNION ALL set operator.
operator +(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using UNION ALL set operator.
operator -(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using UNION set operator.
operator -(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using UNION set operator.
operator -(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using UNION set operator.
operator -(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using UNION set operator.
operator -(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using UNION set operator.
operator -(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using UNION set operator.
operator -(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using UNION set operator.
operator -(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using UNION set operator.
operator ==(Object other) bool
The equality operator.
inherited
operator |(Query<(Expr<A>)> other) Query<(Expr<A>)>

Available on Query<(Expr<A>)>, provided by the Query1 extension

Combine this Query with other using EXCEPT set operator.
operator |(Query<(Expr<A>, Expr<B>)> other) Query<(Expr<A>, Expr<B>)>

Available on Query<(Expr<A>, Expr<B>)>, provided by the Query2 extension

Combine this Query with other using EXCEPT set operator.
operator |(Query<(Expr<A>, Expr<B>, Expr<C>)> other) Query<(Expr<A>, Expr<B>, Expr<C>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>)>, provided by the Query3 extension

Combine this Query with other using EXCEPT set operator.
operator |(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>)>, provided by the Query4 extension

Combine this Query with other using EXCEPT set operator.
operator |(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>)>, provided by the Query5 extension

Combine this Query with other using EXCEPT set operator.
operator |(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>)>, provided by the Query6 extension

Combine this Query with other using EXCEPT set operator.
operator |(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>)>, provided by the Query7 extension

Combine this Query with other using EXCEPT set operator.
operator |(Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> other) Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>

Available on Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)>, provided by the Query8 extension

Combine this Query with other using EXCEPT set operator.