我的mysql
数据库中有以下存储过程:
BEGIN
DECLARE useCount, remainingUses INT DEFAULT 0;
/* Get the current values for the quiz into the variables */
SELECT remaining_uses, use_count INTO remainingUses, useCount FROM quiz_passwords WHERE password_id = passwordId;
/* Are there remaining uses to consume? */
if (remainingUses > 0) THEN
UPDATE quiz_passwords SET use_count = (useCount + 1), remaining_uses = (remainingUses - 1) where password_id = passwordId;
END IF;
END
remainingUses
如您所见,仅当初始select
语句中的变量大于“0”时才应执行更新语句。
但是,当我调用该过程时CALL UsePassword(197);
,它会返回Affected rows: 1
.
我不明白,当我id = 197
在数据库中的密码行的值为“remaining_uses = 0”时。
有没有理由为什么 if 会显示Affected rows: 1
在结果中?
如果该语句成功执行,它是否会返回 1 个受影响的行?因为从技术上讲,在这个例子中我的 UPDATE 语句没有被执行。
更新不仅没有更新,而且如果我完全删除更新语句,它仍然告诉我有一个受影响的行!
谢谢