(No version information available, might only be in Git)
TableSelect::where — Set select search condition
$where_expr
)Sets the search condition to filter.
where_expr
Define the search condition to filter documents or records.
A TableSelect object.
Example #1 mysql_xdevapi\TableSelect::where() example
<?php
$res = $table->select('name as nm','age as ag')->where('age > 34')->execute();
?>