更新工资的时候为什么要使用光标
在存储过程中,begin和end之间直接写三个update语句不可以吗?
begin
update emp set sal=sal+400 where job='a';
update emp set sal=sal+800 where job='b';
end;
这样写不可以吗
在存储过程中,begin和end之间直接写三个update语句不可以吗?
begin
update emp set sal=sal+400 where job='a';
update emp set sal=sal+800 where job='b';
end;
这样写不可以吗
2018-11-19
举报