public interface WherePath extends GroupByPath
Filters resulting rows based on the given expression.
The where condition is evaluated for each resulting row, and only rows evaluating true are retained. All method overloads which do not take an Expression
will be converted to one internally.
Modifier and Type | Method and Description |
---|---|
GroupByPath |
where(Expression expression)
Filter resulting rows based on the given expression.
|
GroupByPath |
where(String expression)
Filter resulting rows based on the given expression.
|
groupBy, groupBy
union, unionAll
orderBy
offset
GroupByPath where(Expression expression)
Filter resulting rows based on the given expression.
expression
- the filter expression.GroupByPath where(String expression)
Filter resulting rows based on the given expression.
The given string will be converted into an expression internally.
expression
- the filter expression.Copyright © 2014 Couchbase, Inc.