创建一个满足下列要求的存储过程:存储过程名为:hanshu,利用一个输入整型参数X接收一个整数,一个输出整型参数Y输出一个满足下列条件的值。 Y= X+10 ...

delimiter $$

create procedure hanshu(in x int,out y int)

begin

if x>0 then set y=x+10;

elseif x=0 then set y=x-10;

else set y=x*x;

end if;

end$$

delimiter ;

call hanshu (6,@R);

select @R;

你可能感兴趣的:(创建一个满足下列要求的存储过程:存储过程名为:hanshu,利用一个输入整型参数X接收一个整数,一个输出整型参数Y输出一个满足下列条件的值。 Y= X+10 ...)