(No version information available, might only be in Git)
TableSelect::offset — Set limit offset
$position
)Skip given number of rows in result.
position
The limit offset.
A TableSelect object.
Example #1 mysql_xdevapi\TableSelect::offset() example
<?php
$res = $table->select()->where("name = :name")->orderby("age DESC")->limit(2)->bind(['name' => 'Tierney'])->execute();
?>