where

fun where(predicate: SqlExpressionBuilder.() -> Op<Boolean>): Query

Appends a WHERE clause with the specified predicate to this SELECT query.

Samples

org.jetbrains.exposed.v1.r2dbc.sql.tests.shared.dml.SelectTests.testSelect
fun where(predicate: Op<Boolean>): Query

Appends a WHERE clause with the specified predicate to this SELECT query.

Samples

org.jetbrains.exposed.v1.r2dbc.sql.tests.shared.dml.ExistsTests.testExists01