SqlSelect

easysql.ast.statement.SqlSelect
case class SqlSelect(distinct: Boolean, select: List[SqlSelectItem], from: Option[SqlTable], where: Option[SqlExpr], groupBy: List[SqlExpr], orderBy: List[SqlOrderBy], forUpdate: Boolean, limit: Option[SqlLimit], having: Option[SqlExpr]) extends SqlQuery

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait SqlQuery
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def addCondition(condition: SqlExpr): SqlSelect
def addHaving(condition: SqlExpr): SqlSelect

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product