TableUpdate::where

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

TableUpdate::whereDefine filtro de pesquisa

Descrição

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

Define a condição de pesquisa para filtrar.

Parâmetros

where_expr

A condição de pesquisa para filtrar documentos ou registros.

Valor Retornado

Um objeto TableUpdate.

Exemplos

Example #1 Exemplo de mysql_xdevapi\TableUpdate::where()

<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$schema = $session->getSchema("addressbook");
$table  = $schema->getTable("names");

$res = $table->update()
  ->set('level', 3)
  ->where('age > 15 and age < 22')
  ->limit(4)
  ->orderby(['age asc','name desc'])
  ->execute();

?>