Intersect
Represents an SQL operation that returns only the common rows from two query results, without any duplicates.
Properties
The SQL statement on the left-hand side of the set operator.
Whether the SQL statement is meant to be performed as part of a batch execution.
The SQL keyword representing the set operation.
Functions
Returns a new SizedIterable that is a copy of the original.
Executes the SQL statement directly in the provided transaction and returns the generated result, or null
if either no result was retrieved or if the transaction blocked statement execution.
Determines the exact way that an SQL statement is executed in a transaction and applies any necessary logic before returning the result generated by the executed statement.
Returns a new SizedIterable with a locking read for the elements according to the rules specified by option.
Returns a new SizedIterable containing only count elements.
Returns a SizedIterable containing the lazily evaluated results of applying the function f to each original element.
Returns a new SizedIterable without any locking read for the elements.
Returns a new SizedIterable containing only elements starting from the specified start.
Returns a new SizedIterable with the elements sorted according to the specified expression order.
Uses a transaction connection and an sql string representation to return a precompiled SQL statement, stored as an implementation of PreparedStatementApi.