(No version information available, might only be in Git)
TableDelete::where — Set delete search condition
$where_expr
)Sets the search condition to filter.
where_expr
Define the search condition to filter documents or records.
TableDelete object.
Example #1 mysql_xdevapi\TableDelete::where() example
<?php
$table->delete()->orderby('age desc')->where('age < 20 and age > 12 and name != :name')->bind(['name' => 'Tierney'])->limit(2)->execute();
?>