Union

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

Attributes

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

Members list

Concise view

Value members

Concrete methods

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

Inherited methods

infix def except[U <: Tuple](query: List[U]): Union[UnionType[T, U], A]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
Query