Joinable

scalasql.query.Joinable
See theJoinable companion object
trait Joinable[Q, R]

Something that can be joined; typically a Select or a Table

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait Select[Q, R]
trait Proxy[Q, R]
class CompoundSelect[Q, R]
class Values[Q, R]
class WithCte[Q, R]
class Proxy[Q, R]
class SimpleSelect[Q, R]
Show all

Members list

Value members

Concrete methods

def crossJoin[Q2, R2](): Mapper[Q, Q2, R, R2]

Version of crossJoin meant for usage in for-comprehensions

Version of crossJoin meant for usage in for-comprehensions

Attributes

def join[Q2, R2](on: Q => Expr[Boolean]): Mapper[Q, Q2, R, R2]

Version of join meant for usage in for-comprehensions

Version of join meant for usage in for-comprehensions

Attributes

def leftJoin[Q2, R2](on: Q => Expr[Boolean]): NullableMapper[Q, Q2, R, R2]

Version of leftJoin meant for usage in for-comprehensions

Version of leftJoin meant for usage in for-comprehensions

Attributes