TableUpdate::set

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

TableUpdate::set添加要更新的字段

描述

public mysql_xdevapi\TableUpdate::set(string $table_field, string $expression_or_literal): mysql_xdevapi\TableUpdate

更新表中记录上的列值。

参数

table_field

要更新的列名。

expression_or_literal

要设置在指定列上的值。

返回值

TableUpdate 对象。

示例

示例 #1 mysql_xdevapi\TableUpdate::set() 示例

<?php
$session
= mysql_xdevapi\getSession("mysqlx://user:password@localhost");

$schema = $session->getSchema("addressbook");
$table = $schema->getTable("names");

$res = $table->update()
->
set('level', 3)
->
where('age > 15 and age < 22')
->
limit(4)
->
orderby(['age asc','name desc'])
->
execute();

?>
添加注释

用户贡献的注释

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