PHP Conference Japan 2024

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