PHP 8.5.0 Beta 3 available for testing

TableUpdate::limit

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

TableUpdate::limit โ€” ๆ›ดๆ–ฐใ™ใ‚‹่กŒใฎๆ•ฐใ‚’้™ๅฎšใ™ใ‚‹

่ชฌๆ˜Ž

public mysql_xdevapi\TableUpdate::limit(int $rows): mysql_xdevapi\TableUpdate

ๆ›ดๆ–ฐใ™ใ‚‹ใƒฌใ‚ณใƒผใƒ‰ใพใŸใฏใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใฎๆ•ฐใฎๆœ€ๅคงๅ€คใ‚’่จญๅฎšใ—ใพใ™ใ€‚

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

rows

ๆ›ดๆ–ฐใ™ใ‚‹ใƒฌใ‚ณใƒผใƒ‰ใพใŸใฏใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใฎๆ•ฐใฎๆœ€ๅคงๅ€ค

ๆˆปใ‚Šๅ€ค

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

ไพ‹

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

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