Subquery<Row> constructor

Subquery<Row>(
  1. BaseSelectStatement<Row> select,
  2. String entityName
)

Creates a subqery from the inner select statement forming the base of the subquery and a unique name of this subquery in the statement being executed.

Implementation

Subquery(this.select, this.entityName);