Expression

abstract class Expression

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
abstract infix fun AND(expression: Clause.Expression): Clause.Expression

Combines this expression with another using a logical AND operator.

Link copied to clipboard
abstract fun COLLATE(collate: Collate): Clause.Expression

Appends a COLLATE clause to the expression, specifying the collation sequence to use for string comparison.

Link copied to clipboard
abstract infix fun OR(expression: Clause.Expression): Clause.Expression

Combines this expression with another using a logical OR operator.