AnyLogic
Expand
Font size
PackageDescription
com.anylogic.engine 
com.anylogic.engine.database 

Uses of SelectQuery in com.anylogic.engine

Modifier and TypeMethodDescription
SelectQueryUtilities.selectFrom(com.querydsl.sql.RelationalPathBase<?> table)
Returns SelectQuery that allows to build queries by chaining calls
  • Uses of SelectQuery in com.anylogic.engine.database

    Modifier and TypeMethodDescription
    SelectQuerySelectQuery.distinct()
    Set the SelectQuery to return distinct results
    SelectQuerySelectQuery.fullJoin(com.querydsl.core.types.EntityPath<?> table)
    Adds a full join to query
    <E> SelectQuerySelectQuery.fullJoin(com.querydsl.sql.ForeignKey<E> key, com.querydsl.sql.RelationalPath<E> table)
    Adds a full join to query
    SelectQuerySelectQuery.groupBy(com.querydsl.core.types.Expression<?> column)
    Defines GROUP BY statement column
    SelectQuerySelectQuery.groupBy(com.querydsl.core.types.Expression<?>... columns)
    Defines GROUP BY statement columns
    SelectQuerySelectQuery.innerJoin(com.querydsl.core.types.EntityPath<?> table)
    Adds an inner join to query
    <E> SelectQuerySelectQuery.innerJoin(com.querydsl.sql.ForeignKey<E> key, com.querydsl.sql.RelationalPath<E> table)
    Adds an inner join to query
    SelectQuerySelectQuery.join(com.querydsl.core.types.EntityPath<?> table)
    Adds a join to query
    <E> SelectQuerySelectQuery.join(com.querydsl.sql.ForeignKey<E> key, com.querydsl.sql.RelationalPath<E> table)
    Adds a join to query
    SelectQuerySelectQuery.leftJoin(com.querydsl.core.types.EntityPath<?> table)
    Adds a left join to query
    <E> SelectQuerySelectQuery.leftJoin(com.querydsl.sql.ForeignKey<E> key, com.querydsl.sql.RelationalPath<E> table)
    Adds a left join to query
    SelectQuerySelectQuery.limit(long limit)
    Defines the maximum number of rows for the selection results
    SelectQuerySelectQuery.offset(long offset)
    Defines the offset for the selection results
    SelectQuerySelectQuery.on(com.querydsl.core.types.Predicate condition)
    Defines a condition to the last added join
    SelectQuerySelectQuery.on(com.querydsl.core.types.Predicate... conditions)
    Defines a conditions to the last added join
    SelectQuerySelectQuery.orderBy(com.querydsl.core.types.OrderSpecifier<?> orderSpecifier)
    Defines ORDER BY specifier
    SelectQuerySelectQuery.orderBy(com.querydsl.core.types.OrderSpecifier<?>... orderSpecifiers)
    Defines ORDER BY specifiers
    SelectQuerySelectQuery.rightJoin(com.querydsl.core.types.EntityPath<?> table)
    Adds a right join to query
    <E> SelectQuerySelectQuery.rightJoin(com.querydsl.sql.ForeignKey<E> key, com.querydsl.sql.RelationalPath<E> table)
    Adds a right join to query
    SelectQuerySelectQuery.where(com.querydsl.core.types.Predicate condition)
    Add condition for selection results
    SelectQuerySelectQuery.where(com.querydsl.core.types.Predicate... conditions)
    Add conditions for selection results