Package | Description |
---|---|
com.anylogic.engine | |
com.anylogic.engine.database |
Modifier and Type | Method | Description |
---|---|---|
SelectQuery | Utilities.selectFrom |
Returns SelectQuery that allows to build queries by chaining calls
|
Modifier and Type | Method | Description |
---|---|---|
SelectQuery | SelectQuery.distinct() |
Set the SelectQuery to return distinct results
|
SelectQuery | SelectQuery.fullJoin |
Adds a full join to query
|
<E> SelectQuery | SelectQuery.fullJoin |
Adds a full join to query
|
SelectQuery | SelectQuery.groupBy |
Defines GROUP BY statement column
|
SelectQuery | SelectQuery.groupBy |
Defines GROUP BY statement columns
|
SelectQuery | SelectQuery.innerJoin |
Adds an inner join to query
|
<E> SelectQuery | SelectQuery.innerJoin |
Adds an inner join to query
|
SelectQuery | SelectQuery.join |
Adds a join to query
|
<E> SelectQuery | SelectQuery.join |
Adds a join to query
|
SelectQuery | SelectQuery.leftJoin |
Adds a left join to query
|
<E> SelectQuery | SelectQuery.leftJoin |
Adds a left join to query
|
SelectQuery | SelectQuery.limit |
Defines the maximum number of rows for the selection results
|
SelectQuery | SelectQuery.offset |
Defines the offset for the selection results
|
SelectQuery | SelectQuery.on |
Defines a condition to the last added join
|
SelectQuery | SelectQuery.on |
Defines a conditions to the last added join
|
SelectQuery | SelectQuery.orderBy |
Defines ORDER BY specifier
|
SelectQuery | SelectQuery.orderBy |
Defines ORDER BY specifiers
|
SelectQuery | SelectQuery.rightJoin |
Adds a right join to query
|
<E> SelectQuery | SelectQuery.rightJoin |
Adds a right join to query
|
SelectQuery | SelectQuery.where |
Add condition for selection results
|
SelectQuery | SelectQuery.where |
Add conditions for selection results
|