Join

ldbc.statement.Join
See theJoin companion object
case class Join[A, B, AB, OO](typed: "JOIN" | "LEFT JOIN" | "RIGHT JOIN", left: TableQuery[A, _], right: TableQuery[B, _])

A model for constructing JOIN statements in MySQL.

Value parameters

left

Left table

right

Right table

typed

Type of JOIN statement

Attributes

Companion
object
Source
Join.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def on(expression: AB => Expression): On[A, B, AB, OO]

A method for combining ON statements.

A method for combining ON statements.

Value parameters

expression

Trait for the syntax of expressions available in MySQL.

Attributes

Source
Join.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product

Concrete fields

Attributes

Source
Join.scala