sqlest.ast

Select

Related Doc: package ast

case class Select[A, R <: Relation](cols: A, from: R, where: Option[Column[Boolean]] = None, startWith: Option[Column[Boolean]] = None, connectBy: Option[Column[Boolean]] = None, groupBy: List[Group] = Nil, having: Option[Column[Boolean]] = None, orderBy: List[Order] = Nil, limit: Option[Long] = None, offset: Option[Long] = None, union: List[Union[_]] = Nil, subselectAlias: Option[String] = None)(implicit aliasedColumns: AliasedColumns[A]) extends Relation with Query with Product with Serializable

A select statement or subselect.

Linear Supertypes
Serializable, Serializable, Product, Equals, Query, Operation, Relation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Select
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Query
  7. Operation
  8. Relation
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Select(cols: A, from: R, where: Option[Column[Boolean]] = None, startWith: Option[Column[Boolean]] = None, connectBy: Option[Column[Boolean]] = None, groupBy: List[Group] = Nil, having: Option[Column[Boolean]] = None, orderBy: List[Order] = Nil, limit: Option[Long] = None, offset: Option[Long] = None, union: List[Union[_]] = Nil, subselectAlias: Option[String] = None)(implicit aliasedColumns: AliasedColumns[A])

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. implicit val aliasedColumns: AliasedColumns[A]

  5. def as(subselectAlias: String): Select[A, R]

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val cols: A

  9. def columns: Seq[AliasedColumn[_]]

  10. def connectBy(expr: Column[Boolean]): Select[A, R]

  11. val connectBy: Option[Column[Boolean]]

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def from[R2 <: Relation](relation: R2): Select[A, R2]

  15. val from: R

  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def groupBy(groupBys: Group*): Select[A, R]

  18. val groupBy: List[Group]

  19. def having(expr: Column[Boolean]): Select[A, R]

  20. val having: Option[Column[Boolean]]

  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. def limit(limit: Long): Select[A, R]

  23. val limit: Option[Long]

  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  27. def offset(offset: Long): Select[A, R]

  28. val offset: Option[Long]

  29. def orderBy(orders: Order*): Select[A, R]

  30. val orderBy: List[Order]

  31. def page(number: Long, size: Long): Select[A, R]

  32. def startWith(expr: Column[Boolean]): Select[A, R]

  33. val startWith: Option[Column[Boolean]]

  34. val subselectAlias: Option[String]

  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def union(select: Select[A, _ <: Relation]): Select[A, R]

  37. val union: List[Union[_]]

  38. def unionAll(select: Select[A, _ <: Relation]): Select[A, R]

  39. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. def where(expr: Column[Boolean]): Select[A, R]

  43. val where: Option[Column[Boolean]]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Query

Inherited from Operation

Inherited from Relation

Inherited from AnyRef

Inherited from Any

Ungrouped