on
Creates a Join on the criteria
Usage:
"table_name".asTable() innerJoin "other_table_name".asTable() on column.equal("jack")Content copied to clipboard
Return
Join
Creates a Join on the left constraint and the right constraint
Usage:
"table_name".asTable().innerJoin("other_table_name".asTable()).on("column", "some_column")Content copied to clipboard
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)Content copied to clipboard
Return
on