PHP 8.5.0 Beta 3 available for testing

TableUpdate::where

(No version information available, might only be in Git)

TableUpdate::where โ€” ๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใ‚’่จญๅฎšใ™ใ‚‹

่ชฌๆ˜Ž

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

ใƒ•ใ‚ฃใƒซใ‚ฟใฎใŸใ‚ใฎๆคœ็ดขๆกไปถใ‚’่จญๅฎšใ—ใพใ™ใ€‚

ใƒ‘ใƒฉใƒกใƒผใ‚ฟ

where_expr

ใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใพใŸใฏใƒฌใ‚ณใƒผใƒ‰ใ‚’ใƒ•ใ‚ฃใƒซใ‚ฟใ™ใ‚‹ๆคœ็ดขๆกไปถ

ๆˆปใ‚Šๅ€ค

TableUpdate ใ‚ชใƒ–ใ‚ธใ‚งใ‚ฏใƒˆใ‚’่ฟ”ใ—ใพใ™ใ€‚

ไพ‹

ไพ‹1 mysql_xdevapi\TableUpdate::where() ใฎไพ‹

<?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