Union

easysql.query.select.Union
class Union[T <: Tuple, A <: Tuple](selectItems: Map[String, String], val left: SqlQuery, val op: SqlUnionType, val right: SqlQuery) extends Query[T, A]

Attributes

Graph
Supertypes
trait Query[T, A]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

override def getAst: SqlQuery

Attributes

Definition Classes
override def getSelectItems: Map[String, String]

Attributes

Definition Classes

Inherited methods

infix def as(name: String)(using name.type != "" =:= true): AliasQuery[T, A]

Attributes

Inherited from:
Query
infix def except[RT <: Tuple](right: List[RT]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def except[RT <: Tuple](right: RT): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def except[RT <: Tuple](right: Query[RT, _]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def exceptAll[RT <: Tuple](right: List[RT]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def exceptAll[RT <: Tuple](right: RT): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def exceptAll[RT <: Tuple](right: Query[RT, _]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def intersect[RT <: Tuple](right: List[RT]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def intersect[RT <: Tuple](right: RT): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def intersect[RT <: Tuple](right: Query[RT, _]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def intersectAll[RT <: Tuple](right: List[RT]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def intersectAll[RT <: Tuple](right: RT): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def intersectAll[RT <: Tuple](right: Query[RT, _]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def union[RT <: Tuple](right: List[RT]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def union[RT <: Tuple](right: RT): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def union[RT <: Tuple](right: Query[RT, _]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def unionAll[RT <: Tuple](right: List[RT]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def unionAll[RT <: Tuple](right: RT): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
infix def unionAll[RT <: Tuple](right: Query[RT, _]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
def unionClause[RT <: Tuple](unionType: SqlUnionType, right: List[RT]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
def unionClause[RT <: Tuple](unionType: SqlUnionType, right: RT): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
def unionClause[RT <: Tuple](unionType: SqlUnionType, right: Query[RT, _]): Union[UnionType[T, RT], A]

Attributes

Inherited from:
Query
def unsafeAs(name: String): AliasQuery[T, A]

Attributes

Inherited from:
Query