TableSelect::where
(No version information available, might only be in Git)
TableSelect::where — Define condição de pesquisa na seleção
Descrição
Define condição de pesquisa para filtrar.
Parâmetros
where_expr
-
Define a condição de pesquisa para filtrar documentos ou registros.
Valor Retornado
Um objeto TableSelect.
Exemplos
Example #1 Exemplo de mysql_xdevapi\TableSelect::where()
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");
$result = $table->select('name','age')
->where('name like :name and age > :age')
->bind(['name' => 'John', 'age' => 42])
->execute();
$row = $result->fetchAll();
print_r($row);
?>
O exemplo acima produzirá algo semelhante a:
Array ( [0] => Array ( [name] => John [age] => 42 ) )