StringOperators<V extends String?> extension

Pattern-matching and comparison operators for text columns.

on

Methods

between(ColumnOr<V> low, {required ColumnOr<V> and}) SQL

Available on ColumnOf<V>?, provided by the StringOperators extension

Row value of column is within the inclusive low to and range, lexicographically.
greaterThan(ColumnOr<V> value) SQL

Available on ColumnOf<V>?, provided by the StringOperators extension

Lexicographic ordering.
greaterThanOrEqual(ColumnOr<V> value) SQL

Available on ColumnOf<V>?, provided by the StringOperators extension

Lexicographic ordering.
lessThan(ColumnOr<V> value) SQL

Available on ColumnOf<V>?, provided by the StringOperators extension

Lexicographic ordering.
lessThanOrEqual(ColumnOr<V> value) SQL

Available on ColumnOf<V>?, provided by the StringOperators extension

Lexicographic ordering.
like(ColumnOr<V> value) SQL

Available on ColumnOf<V>?, provided by the StringOperators extension

String like value.