php8.5
Home/ Manual/ mysql_xdevapi / tabledelete/ TableDelete::where

TableDelete::where

PHP function Edit on GitHub ✎

Set delete search condition

Description

mysql_xdevapi\TableDelete::where(string $where_expr): mysql_xdevapi\TableDelete

Sets the search condition to filter.

Parameters

where_expr

Define the search condition to filter documents or records.

Return Values

TableDelete object.

Examples

mysql_xdevapi\TableDelete::where() example

php
<?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();

?>

Source: reference/mysql_xdevapi/mysql_xdevapi/tabledelete/where.xml · from the official PHP manual (php/doc-en)