Skip to main content

Select

SELECT is used to select data from a database.

FROM specifies the table you want to select and WHERE clause any filter that you want to add to your query.

Sample

fun main() {
println(
query {
select("id", "name")
from("users")
where {
"id" eq 1
}
}
)
}

Expected Result

select id, name from users where (id = 1)