gpt4 book ai didi

php - 如果其他表更新成功则更新表

转载 作者:太空宇宙 更新时间:2023-11-03 12:29:36 24 4
gpt4 key购买 nike

只有在表1更新成功的情况下,如何才能在下面的代码中更新表2?

$sql="update table1 set col1='abc' where col2='1'";
$result=mysql_query($sql);
if(that is success)
{
$sql="update table2 set col1='cde' where col2='1'";
$result=mysql_query($sql);
}

最佳答案

参见 mysql_affected_rows()函数,它将返回刚刚更新的行数。此外,尽量避免使用 mysql_* 函数,而使用 mysqli_* 或 PDO,因为它们现在已被弃用。

关于php - 如果其他表更新成功则更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16089385/

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