gpt4 book ai didi

php - UPDATE LOW_PRIORITY 它是否返回正确数量的受影响行?

转载 作者:行者123 更新时间:2023-11-30 23:51:41 25 4
gpt4 key购买 nike

我需要做很多UPDATE而且我不需要经常阅读表格。

所以我想到了使用 UPDATE LOW_PRIORITY 但它是否返回正确数量的 affected_rows()

或者考虑到它不是立即提交的,它不知道有多少记录会受到影响?

mysql_query("UPDATE LOW_PRIORITY table SET view = view + 1 WHERE id = 123");
echo mysql_affected_rows();

最佳答案

是的,它返回受影响的行数,LOW_PRIORITY 不影响这部分。

With the LOW_PRIORITY keyword, execution of the UPDATE is delayed until no other clients are reading from the table. This affects only storage engines that use only table-level locking (such as MyISAM, MEMORY, and MERGE).

关于php - UPDATE LOW_PRIORITY 它是否返回正确数量的受影响行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6227705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com