mini\Database\VirtualDatabase::executeWindowSelect() Method

private

Signature

private function executeWindowSelect(mini\Parsing\SQL\AST\SelectStatement $ast, mini\Table\Contracts\TableInterface $table): iterable

Parameters

Name Type Default Description
$ast mini\Parsing\SQL\AST\SelectStatement required Documentation missing
$table mini\Table\Contracts\TableInterface required Documentation missing

Returns

iterable

Documentation

Execute a SELECT with window functions

Window functions are computed over the entire result set (or partitions), producing a value for each row while maintaining the row granularity.

Source

src/Database/VirtualDatabase.php:1493-1558