OrderByPart2

Functions

Link copied to clipboard
abstract infix fun andAsc(column: Column<*, *>): ReactorSqlClientSelect.OrderByPart2<T>
abstract infix fun andAsc(alias: QueryAlias<*>): ReactorSqlClientSelect.OrderByPart2<T>
Link copied to clipboard
abstract infix fun <U : Any> andAscCaseWhenExists(dsl: SqlClientSubQuery.SingleScope.() -> SqlClientSubQuery.Return<U>): SqlClientQuery.OrderByCaseWhenExists<U, ReactorSqlClientSelect.OrderByPart2<T>>
Link copied to clipboard
abstract infix fun andDesc(column: Column<*, *>): ReactorSqlClientSelect.OrderByPart2<T>
abstract infix fun andDesc(alias: QueryAlias<*>): ReactorSqlClientSelect.OrderByPart2<T>
Link copied to clipboard
abstract infix fun <U : Any> andDescCaseWhenExists(dsl: SqlClientSubQuery.SingleScope.() -> SqlClientSubQuery.Return<U>): SqlClientQuery.OrderByCaseWhenExists<U, ReactorSqlClientSelect.OrderByPart2<T>>
Link copied to clipboard
abstract fun fetchAll(): Flux<T>

This query returns several results as Flux, or an empty Flux if no result

Link copied to clipboard
abstract fun fetchFirst(): Mono<T>

This query returns the first result as Mono, or an empty Mono if no result

Link copied to clipboard
abstract fun fetchOne(): Mono<T>

This query returns one result as Mono, or an empty Mono if no result

Link copied to clipboard
abstract infix fun groupBy(column: Column<*, *>): ReactorSqlClientSelect.GroupByPart2<T>
abstract infix fun groupBy(alias: QueryAlias<*>): ReactorSqlClientSelect.GroupByPart2<T>
Link copied to clipboard
abstract infix fun limit(limit: Long): ReactorSqlClientSelect.LimitOffset<T>
Link copied to clipboard
abstract infix fun offset(offset: Long): ReactorSqlClientSelect.LimitOffset<T>