SqlJoin

case class SqlJoin(parent: TableExpr, child: TableExpr, on: List[(SqlColumn, SqlColumn)], inner: Boolean) extends ColumnOwner

Representation of an SQL join

Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

Return the columns of table referred to by the parent side of the conditions of this join

Return the columns of table referred to by the parent side of the conditions of this join

Does this SqlJoin represent a predicate?

Does this SqlJoin represent a predicate?

override def isSameOwner(other: ColumnOwner): Boolean
Definition Classes
def subst(from: TableExpr, to: TableExpr): SqlJoin

Replace references to from with to

Replace references to from with to

Render this SqlJoin as a Fragment

Render this SqlJoin as a Fragment

Inherited methods

Inherited from:
ColumnOwner

The name, if any, of this ColumnOwner

The name, if any, of this ColumnOwner

Inherited from:
ColumnOwner
Inherited from:
Product