GreaterThan

data class GreaterThan<T : Any, V>(builder: JsonPathBuilder<T>, value: V?) : Where<T> (source)

Equivalent to > in SQL

Parameters

value

note that gt will only really work with numbers right now.

Constructors

Link copied to clipboard
constructor(builder: JsonPathBuilder<T>, value: V?)

Functions

Link copied to clipboard
infix fun <T : Any> Where<T>.and(other: Where<T>): Where<T>

Equivalent to AND in SQL

Link copied to clipboard
infix fun <T : Any> Where<T>.or(other: Where<T>): Where<T>

Equivalent to OR in SQL

Link copied to clipboard
open override fun toSqlQuery(increment: Int): SqlQuery