selectStatement

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

You can also just use select.


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 org.jetbrains.exposed.sql.select.