on

infix fun on(criteria: Criteria): From.Join(source)

Creates a Join on the criteria

Usage:

"table_name".asTable() innerJoin "other_table_name".asTable() on column.equal("jack")

Return

Join


fun on(left: String, right: String): From.Join(source)

Creates a Join on the left constraint and the right constraint

Usage:

"table_name".asTable().innerJoin("other_table_name".asTable()).on("column", "some_column")

Return

on


Creates a Join on the left constraint and the right constraint

Usage:

"table_name".asTable().innerJoin("other_table_name".asTable()).on(column, some_column)

Return

on