(No version information available, might only be in Git)
TableDelete::offset — Set delete limit offset
$position
)Sets the limit offset.
position
The limit offset.
A TableDelete object.
Example #1 mysql_xdevapi\TableDelete::offset() example
<?php
$table->delete()->where('age = 17')->orderby('name desc')->limit(3)->offset(0)->execute();
?>