(无版本信息可用,可能只在 Git 中)
TableDelete::where — 设置删除搜索条件
设置搜索条件以进行过滤。
where_expr
定义搜索条件以过滤文档或记录。
TableDelete 对象。
示例 #1 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();
?>