join Query
fun Join.joinQuery(on: (QueryAlias) -> Op<Boolean>? = null, joinType: JoinType = JoinType.INNER, lateral: Boolean = false, joinPart: () -> AbstractQuery<*>): Join
Creates a join relation with a query.
Parameters
on
The condition to join that will be placed in the ON clause.
join Type
The JOIN clause type used to combine rows. Defaults to JoinType.INNER.
join Part
The query to join with.
Samples
org.jetbrains.exposed.v1.tests.shared.AliasesTests.testJoinSubQuery02fun Table.joinQuery(on: (QueryAlias) -> Op<Boolean>? = null, joinType: JoinType = JoinType.INNER, lateral: Boolean = false, joinPart: () -> AbstractQuery<*>): Join
Creates a join relation between this table and a query.
Parameters
on
The condition to join that will be placed in the ON clause.
join Type
The JOIN clause type used to combine rows. Defaults to JoinType.INNER.
join Part
The query to join with.