Php/docs/class.mysql-xdevapi-tableupdate
来自菜鸟教程
(PECL mysql-xdevapi >= 8.0.11)
简介
A statement for record update operations on a Table.
类摘要
mysql_xdevapi\TableUpdate implements mysql_xdevapi\Executable {
public bind
( array $placeholder_values
) : mysql_xdevapi\TableUpdate
public execute ( ) : mysql_xdevapi\TableUpdate
public limit
( int $rows
) : mysql_xdevapi\TableUpdate
public orderby
( mixed $orderby_expr
, mixed ...$orderby_exprs
) : mysql_xdevapi\TableUpdate
public set
( string $table_field
, string $expression_or_literal
) : mysql_xdevapi\TableUpdate
public where
( string $where_expr
) : mysql_xdevapi\TableUpdate
}
Table of Contents
- TableUpdate::bind — Bind update query parameters
- TableUpdate::__construct — TableUpdate constructor
- TableUpdate::execute — Execute update query
- TableUpdate::limit — Limit update row count
- TableUpdate::orderby — Set sorting criteria
- TableUpdate::set — Add field to be updated
- TableUpdate::where — Set search filter
/* 方法 */