PHP 8.4.0 RC4 available for testing

TableSelect::where

(No version information available, might only be in Git)

TableSelect::whereDefine condição de pesquisa na seleção

Descrição

public mysql_xdevapi\TableSelect::where(string $where_expr): mysql_xdevapi\TableSelect

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

Exemplo #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
        )
)
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top