TableDelete::where

(无版本信息可用,可能只在 Git 中)

TableDelete::where设置删除搜索条件

描述

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

设置搜索条件以进行过滤。

参数

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

?>
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top