level 1
Tatrium丶幕僚
楼主
create procedure pname ()
begin
insert into tableA(id,name) select id,name from tableB;
end;
哪位大神能不能告诉我,这个存储过程,我要怎么修改才能让这个存储过程在执行完之后,能够得到Insert多少条数据?我应该怎么写呢?
还有个问题,用toad的时候,如果存储过程有输出项,在call procedure(?)的时候,怎么才能看到输出结果的?
2015年10月12日 08点10分
1
begin
insert into tableA(id,name) select id,name from tableB;
end;
哪位大神能不能告诉我,这个存储过程,我要怎么修改才能让这个存储过程在执行完之后,能够得到Insert多少条数据?我应该怎么写呢?
还有个问题,用toad的时候,如果存储过程有输出项,在call procedure(?)的时候,怎么才能看到输出结果的?