GroupByPart2

interface GroupByPart2<T : Any> : SqlClientQuery.GroupByPart2<ReactorSqlClientSelect.GroupByPart2<T>> , ReactorSqlClientSelect.OrderBy<T> , ReactorSqlClientSelect.LimitOffset<T>

Functions

and
Link copied to clipboard
abstract infix fun and(column: Column<*, *>): ReactorSqlClientSelect.GroupByPart2<T>
fetchAll
Link copied to clipboard
abstract fun fetchAll(): Flux<T>
This Query can return several results as Flux, or an empty Flux if no result
fetchFirst
Link copied to clipboard
abstract fun fetchFirst(): Mono<T>
This Query return one result as Mono, or an empty Mono if no result
fetchOne
Link copied to clipboard
abstract fun fetchOne(): Mono<T>
This Query return one result as Mono, or an empty Mono if no result
limit
Link copied to clipboard
abstract infix fun limit(limit: Int): ReactorSqlClientSelect.LimitOffset<T>
offset
Link copied to clipboard
abstract infix fun offset(offset: Int): ReactorSqlClientSelect.LimitOffset<T>
orderByAsc
Link copied to clipboard
abstract infix fun orderByAsc(column: Column<*, *>): ReactorSqlClientSelect.OrderByPart2<T>
orderByDesc
Link copied to clipboard
abstract infix fun orderByDesc(column: Column<*, *>): ReactorSqlClientSelect.OrderByPart2<T>