SqlSelect

easysql.ast.statement.SqlQuery$.SqlSelect
final 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])

Members list

Concise view

Value members

Concrete methods

def addCondition(condition: SqlExpr): SqlSelect
Extension method from SqlQuery
def addHaving(condition: SqlExpr): SqlSelect
Extension method from SqlQuery
Extension method from SqlQuery

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product