create procedure sp()
begin
select 1;
select 1;
select 1;
........# 超过100个
end;
上面的存储过程语法没错,创建也没问题,执行的时候提示错误如下:
Category Timestamp Duration Message Line Position
Error 12.5.2011 15:01:23 0:00:00.360 Single execution returned more than 100 result sets 1 0
这个问题如何解决?