From
interface From<T : Any> : SqlClientQuery.From<ReactorSqlClientSelect.From<T>> , SqlClientQuery.Whereable<ReactorSqlClientSelect.Where<T>> , ReactorSqlClientSelect.GroupBy<T> , ReactorSqlClientSelect.OrderBy<T> , ReactorSqlClientSelect.LimitOffset<T> , ReactorSqlClientSelect.Return<T>
Content copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
This query returns the first result as Mono, or an empty Mono if no result
Link copied to clipboard
abstract infix fun groupBy(column: Column<*, *>): ReactorSqlClientSelect.GroupByPart2<T>
Content copied to clipboard
abstract infix fun groupBy(alias: QueryAlias<*>): ReactorSqlClientSelect.GroupByPart2<T>
Content copied to clipboard
Link copied to clipboard
abstract infix fun limit(limit: Long): ReactorSqlClientSelect.LimitOffset<T>
Content copied to clipboard
Link copied to clipboard
abstract infix fun offset(offset: Long): ReactorSqlClientSelect.LimitOffset<T>
Content copied to clipboard
Link copied to clipboard
abstract infix fun orderByAsc(column: Column<*, *>): ReactorSqlClientSelect.OrderByPart2<T>
Content copied to clipboard
abstract infix fun orderByAsc(alias: QueryAlias<*>): ReactorSqlClientSelect.OrderByPart2<T>
Content copied to clipboard
Link copied to clipboard
abstract infix fun <U : Any> orderByAscCaseWhenExists(dsl: SqlClientSubQuery.SingleScope.() -> SqlClientSubQuery.Return<U>): SqlClientQuery.OrderByCaseWhenExists<U, ReactorSqlClientSelect.OrderByPart2<T>>
Content copied to clipboard
Link copied to clipboard
abstract infix fun orderByDesc(column: Column<*, *>): ReactorSqlClientSelect.OrderByPart2<T>
Content copied to clipboard
abstract infix fun orderByDesc(alias: QueryAlias<*>): ReactorSqlClientSelect.OrderByPart2<T>
Content copied to clipboard
Link copied to clipboard
abstract infix fun <U : Any> orderByDescCaseWhenExists(dsl: SqlClientSubQuery.SingleScope.() -> SqlClientSubQuery.Return<U>): SqlClientQuery.OrderByCaseWhenExists<U, ReactorSqlClientSelect.OrderByPart2<T>>
Content copied to clipboard
Link copied to clipboard
abstract infix fun <U : Any> where(booleanColumnNotNull: BooleanColumnNotNull<U>): SqlClientQuery.WhereOpBooleanNotNull<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(byteArrayColumnNotNull: ByteArrayColumnNotNull<U>): SqlClientQuery.WhereOpByteArrayNotNull<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(byteArrayColumnNullable: ByteArrayColumnNullable<U>): SqlClientQuery.WhereOpByteArrayNullable<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(intColumnNotNull: IntColumnNotNull<U>): SqlClientQuery.WhereOpIntNotNull<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(intColumnNullable: IntColumnNullable<U>): SqlClientQuery.WhereOpIntNullable<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(kotlinxLocalDateColumnNotNull: KotlinxLocalDateColumnNotNull<U>): SqlClientQuery.WhereOpDateNotNull<U, ReactorSqlClientSelect.Where<T>, LocalDate>
Content copied to clipboard
abstract infix fun <U : Any> where(kotlinxLocalDateColumnNullable: KotlinxLocalDateColumnNullable<U>): SqlClientQuery.WhereOpDateNullable<U, ReactorSqlClientSelect.Where<T>, LocalDate>
Content copied to clipboard
abstract infix fun <U : Any> where(kotlinxLocalDateTimeColumnNotNull: KotlinxLocalDateTimeColumnNotNull<U>): SqlClientQuery.WhereOpDateNotNull<U, ReactorSqlClientSelect.Where<T>, LocalDateTime>
Content copied to clipboard
abstract infix fun <U : Any> where(kotlinxLocalDateTimeColumnNullable: KotlinxLocalDateTimeColumnNullable<U>): SqlClientQuery.WhereOpDateNullable<U, ReactorSqlClientSelect.Where<T>, LocalDateTime>
Content copied to clipboard
abstract infix fun <U : Any> where(localDateColumnNotNull: LocalDateColumnNotNull<U>): SqlClientQuery.WhereOpDateNotNull<U, ReactorSqlClientSelect.Where<T>, LocalDate>
Content copied to clipboard
abstract infix fun <U : Any> where(localDateColumnNullable: LocalDateColumnNullable<U>): SqlClientQuery.WhereOpDateNullable<U, ReactorSqlClientSelect.Where<T>, LocalDate>
Content copied to clipboard
abstract infix fun <U : Any> where(localDateTimeColumnNotNull: LocalDateTimeColumnNotNull<U>): SqlClientQuery.WhereOpDateNotNull<U, ReactorSqlClientSelect.Where<T>, LocalDateTime>
Content copied to clipboard
abstract infix fun <U : Any> where(localDateTimeColumnNullable: LocalDateTimeColumnNullable<U>): SqlClientQuery.WhereOpDateNullable<U, ReactorSqlClientSelect.Where<T>, LocalDateTime>
Content copied to clipboard
abstract infix fun <U : Any> where(localTimeColumnNotNull: LocalTimeColumnNotNull<U>): SqlClientQuery.WhereOpDateNotNull<U, ReactorSqlClientSelect.Where<T>, LocalTime>
Content copied to clipboard
abstract infix fun <U : Any> where(localTimeColumnNullable: LocalTimeColumnNullable<U>): SqlClientQuery.WhereOpDateNullable<U, ReactorSqlClientSelect.Where<T>, LocalTime>
Content copied to clipboard
abstract infix fun <U : Any> where(longColumnNotNull: LongColumnNotNull<U>): SqlClientQuery.WhereOpLongNotNull<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(longColumnNullable: LongColumnNullable<U>): SqlClientQuery.WhereOpLongNullable<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(offsetDateTimeColumnNotNull: OffsetDateTimeColumnNotNull<U>): SqlClientQuery.WhereOpDateNotNull<U, ReactorSqlClientSelect.Where<T>, OffsetDateTime>
Content copied to clipboard
abstract infix fun <U : Any> where(offsetDateTimeColumnNullable: OffsetDateTimeColumnNullable<U>): SqlClientQuery.WhereOpDateNullable<U, ReactorSqlClientSelect.Where<T>, OffsetDateTime>
Content copied to clipboard
abstract infix fun where(localDateAliasNullable: QueryAlias<LocalDate?>): SqlClientQuery.WhereOpLocalDateNullable<LocalDate, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(localDateTimeAliasNullable: QueryAlias<LocalDateTime?>): SqlClientQuery.WhereOpLocalDateTimeNullable<LocalDateTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(localDateTimeAliasNotNull: QueryAlias<LocalDateTime>): SqlClientQuery.WhereOpLocalDateTimeNotNull<LocalDateTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(localDateAliasNotNull: QueryAlias<LocalDate>): SqlClientQuery.WhereOpLocalDateNotNull<LocalDate, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(localTimeAliasNullable: QueryAlias<LocalTime?>): SqlClientQuery.WhereOpLocalTimeNullable<LocalTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(localTimeAliasNotNull: QueryAlias<LocalTime>): SqlClientQuery.WhereOpLocalTimeNotNull<LocalTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(offsetDateTimeAliasNullable: QueryAlias<OffsetDateTime?>): SqlClientQuery.WhereOpOffsetDateTimeNullable<OffsetDateTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(offsetDateTimeAliasNotNull: QueryAlias<OffsetDateTime>): SqlClientQuery.WhereOpOffsetDateTimeNotNull<OffsetDateTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(uuidAliasNullable: QueryAlias<UUID?>): SqlClientQuery.WhereOpUuidNullable<UUID, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(uuidAliasNotNull: QueryAlias<UUID>): SqlClientQuery.WhereOpUuidNotNull<UUID, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(booleanAliasNotNull: QueryAlias<Boolean>): SqlClientQuery.WhereOpBooleanNotNull<Boolean, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(byteArrayAliasNullable: QueryAlias<ByteArray?>): SqlClientQuery.WhereOpByteArrayNullable<ByteArray, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(byteArrayAliasNotNull: QueryAlias<ByteArray>): SqlClientQuery.WhereOpByteArrayNotNull<ByteArray, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(intAliasNullable: QueryAlias<Int?>): SqlClientQuery.WhereOpIntNullable<Int, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(intAliasNotNull: QueryAlias<Int>): SqlClientQuery.WhereOpIntNotNull<Int, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(longAliasNullable: QueryAlias<Long?>): SqlClientQuery.WhereOpLongNullable<Long, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(longAliasNotNull: QueryAlias<Long>): SqlClientQuery.WhereOpLongNotNull<Long, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(stringAliasNullable: QueryAlias<String?>): SqlClientQuery.WhereOpStringNullable<String, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(stringAliasNotNull: QueryAlias<String>): SqlClientQuery.WhereOpStringNotNull<String, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(kotlinxLocalDateAliasNullable: QueryAlias<LocalDate?>): SqlClientQuery.WhereOpKotlinxLocalDateNullable<LocalDate, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(kotlinxLocalDateTimeAliasNullable: QueryAlias<LocalDateTime?>): SqlClientQuery.WhereOpKotlinxLocalDateTimeNullable<LocalDateTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(kotlinxLocalDateTimeAliasNotNull: QueryAlias<LocalDateTime>): SqlClientQuery.WhereOpKotlinxLocalDateTimeNotNull<LocalDateTime, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun where(kotlinxLocalDateAliasNotNull: QueryAlias<LocalDate>): SqlClientQuery.WhereOpKotlinxLocalDateNotNull<LocalDate, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(stringColumnNotNull: StringColumnNotNull<U>): SqlClientQuery.WhereOpStringNotNull<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
abstract infix fun <U : Any> where(stringColumnNullable: StringColumnNullable<U>): SqlClientQuery.WhereOpStringNullable<U, ReactorSqlClientSelect.Where<T>>
Content copied to clipboard
Link copied to clipboard
abstract infix fun <U : Any> whereExists(dsl: SqlClientSubQuery.SingleScope.() -> SqlClientSubQuery.Return<U>): ReactorSqlClientSelect.Where<T>
Content copied to clipboard