PHP 8.5.0 Beta 3 available for testing

TableUpdate::set

(No version information available, might only be in 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();

?>
๏ผ‹add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top