scalikejdbc.QueryDSLFeature

SelectSQLBuilder

case class SelectSQLBuilder[A](sql: (QueryDSLFeature.this)#SQLSyntax, lazyColumns: Boolean = false, resultAllProviders: List[(QueryDSLFeature.this)#ResultAllProvider] = immutable.this.Nil, ignoreOnClause: Boolean = false) extends (QueryDSLFeature.this)#SQLBuilder[A] with (QueryDSLFeature.this)#SubQuerySQLBuilder[A] with Product with Serializable

SQLBuilder for select queries.

Linear Supertypes
Serializable, Serializable, Product, Equals, (QueryDSLFeature.this)#SubQuerySQLBuilder[A], (QueryDSLFeature.this)#SQLBuilder[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SelectSQLBuilder
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. SubQuerySQLBuilder
  7. SQLBuilder
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SelectSQLBuilder(sql: (QueryDSLFeature.this)#SQLSyntax, lazyColumns: Boolean = false, resultAllProviders: List[(QueryDSLFeature.this)#ResultAllProvider] = immutable.this.Nil, ignoreOnClause: Boolean = false)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. def append(part: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

    Definition Classes
    SelectSQLBuilderSQLBuilder
  7. def as(sq: (QueryDSLFeature.this)#SubQuerySQLSyntaxProvider): (QueryDSLFeature.this)#TableAsAliasSQLSyntax

    Converts SQLBuilder to sub-query part sqls.

    Converts SQLBuilder to sub-query part sqls. e.g. val x = SubQuery.syntax("x").include(u, g) withSQL { select.from(select.from(User as u).leftJoin(Group as g).on(u.groupId, g.id).where.eq(u.groupId, 234).as(x)) }

    Definition Classes
    SubQuerySQLBuilder
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def except(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  12. def except(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  13. def exceptAll(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  14. def exceptAll(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. def from(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

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

    Definition Classes
    AnyRef → Any
  18. def groupBy(columns: (QueryDSLFeature.this)#SQLSyntax*): (QueryDSLFeature.this)#GroupBySQLBuilder[A]

  19. def having(condition: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#GroupBySQLBuilder[A]

  20. val ignoreOnClause: Boolean

  21. def innerJoin(table: Option[(QueryDSLFeature.this)#TableAsAliasSQLSyntax]): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  22. def innerJoin(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  23. def intersect(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  24. def intersect(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  25. def intersectAll(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  26. def intersectAll(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. def join(table: Option[(QueryDSLFeature.this)#TableAsAliasSQLSyntax]): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  29. def join(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  30. val lazyColumns: Boolean

  31. def leftJoin(table: Option[(QueryDSLFeature.this)#TableAsAliasSQLSyntax]): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  32. def leftJoin(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  33. def limit(n: Int): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  34. def map(mapper: ((QueryDSLFeature.this)#SelectSQLBuilder[A]) ⇒ (QueryDSLFeature.this)#SelectSQLBuilder[A]): (QueryDSLFeature.this)#SelectSQLBuilder[A]

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

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

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

    Definition Classes
    AnyRef
  38. def offset(n: Int): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  39. def on(left: (QueryDSLFeature.this)#SQLSyntax, right: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  40. def on(onClause: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  41. def orderBy(columns: (QueryDSLFeature.this)#SQLSyntax*): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  42. val resultAllProviders: List[(QueryDSLFeature.this)#ResultAllProvider]

  43. def rightJoin(table: Option[(QueryDSLFeature.this)#TableAsAliasSQLSyntax]): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  44. def rightJoin(table: (QueryDSLFeature.this)#TableAsAliasSQLSyntax): (QueryDSLFeature.this)#SelectSQLBuilder[A]

  45. val sql: (QueryDSLFeature.this)#SQLSyntax

    Definition Classes
    SelectSQLBuilderSQLBuilder
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  47. def toSQL: SQL[A, NoExtractor]

    Definition Classes
    SelectSQLBuilderSQLBuilder
  48. def toSQLSyntax: (QueryDSLFeature.this)#SQLSyntax

    Definition Classes
    SelectSQLBuilderSQLBuilder
  49. def union(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  50. def union(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  51. def unionAll(anotherQuery: (QueryDSLFeature.this)#SQLBuilder[_]): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  52. def unionAll(anotherQuery: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#PagingSQLBuilder[A]

  53. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  56. def where(whereOpt: Option[(QueryDSLFeature.this)#SQLSyntax]): (QueryDSLFeature.this)#ConditionSQLBuilder[A]

  57. def where(where: (QueryDSLFeature.this)#SQLSyntax): (QueryDSLFeature.this)#ConditionSQLBuilder[A]

  58. def where: (QueryDSLFeature.this)#ConditionSQLBuilder[A]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from (QueryDSLFeature.this)#SubQuerySQLBuilder[A]

Inherited from (QueryDSLFeature.this)#SQLBuilder[A]

Inherited from AnyRef

Inherited from Any

Ungrouped