mysql 存储过程中if控制语句的条件判断问题

CREATEPROCEDURE`getTakeNum`(INcatid1int,INcatid2int,INcatid3int,INuseridint,INnewtime... CREATE PROCEDURE `getTakeNum`(IN catid1 int,IN catid2 int,IN catid3 int,IN userid int,IN newtime int)
begin
select nexttime into @time from gift_user where id=userid;
select t into @num1 from gift_product where uid=userid and cid=catid1 order by t desc limit 0,1;
select t into @num2 from gift_product where uid=userid and cid=catid2 order by t desc limit 0,1;
select t into @num3 from gift_product where uid=userid and cid=catid3 order by t desc limit 0,1;
if @num1 < @time AND @num2 < @time AND @num3 < @time then
update gift_user set nexttime=newtime where id=userid;
end if;
end
为什么这个if条件(if @num1 < @time AND @num2 < @time AND @num3 < @time then)只要有1个成立就执行里面的代码了?难道说不能用并且的方式判断么?如果没有有什么办法?
展开
 我来答
百度网友af0fe2b82
推荐于2018-03-05 · TA获得超过159个赞
知道小有建树答主
回答量:235
采纳率:0%
帮助的人:153万
展开全部
if (@num1 < @time)
AND (@num2 < @time)
AND (@num3 < @time)
then
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
睿宸健康
2010-03-25 · 市场营销,北京神瑞文化有限公司
个人认证用户
睿宸健康
采纳数:105 获赞数:424

向TA提问 私信TA
展开全部
可以,这种方式是对的,是你自己写的有点问题,用if语句时应该把所有的判断语句用小括号()括起来。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式