(No version information available, might only be in Git)
TableDelete::where — Définit la condition de recherche de suppression
Définit la condition de rechercher pour filtrer.
where_exprDéfinit la condition de recherche pour filtrer les documents ou les enregistrements.
Un objet TableDelete.
Exemple #1 Exemple de mysql_xdevapi\TableDelete::where()
<?php
$session = mysql_xdevapi\getSession("mysqlx://user:password@localhost");
$schema = $session->getSchema("addressbook");
$table  = $schema->getTable("names");
$table->delete()
  ->where("id = :id")
  ->bind(['id' => 42])
  ->limit(1)
  ->execute();
?>