selectStatement

fun FieldSet.selectStatement(where: WhereOp): Query(source)
fun FieldSet.selectStatement(where: BuildWhere): Query(source)

Deprecated

As part of Exposed SELECT DSL design changes, this will be removed in future releases.

Replace with

selectAllStatement().where(where)

Adapted from Query.


fun ColumnSet.selectStatement(columns: List<Expression<*>>): Query(source)

Deprecated

Use the API in `org.jetbrains.exposed.v1.jdbc` directly.

Replace with

import org.jetbrains.exposed.v1.jdbc.select
select(columns)

You can also just use select.


fun ColumnSet.selectStatement(column: Expression<*>, vararg columns: Expression<*>): Query(source)

Deprecated

Use the API in `org.jetbrains.exposed.v1.jdbc` directly.

Replace with

import org.jetbrains.exposed.v1.jdbc.select
select(column, *columns)

You can also just use select.