用mysql存储过程获取ecshop商品信息

2012-11-26 17:32 来源:www.chinab4c.com 作者:ecshop专家

    用mysql存储过程获取ecshop商品信息的商品goods_id,这个可以很高效的为我们提供该数据库操作接口。为了让ecshop跑的更快,在适当的对ecshop数据库优化的同事,我们可以优化mysql的sql。在适当的地方调用存储过程,可以更快的让ecshop运行。

create procedure c1()
BEGIN

declare n1 varchar(233) default '';
declare n2 varchar(233) default '';
declare c cursor for select goods_id from ecs_goods;
declare CONTINUE HANDLER for not found set n1 = null;
open c;
fetch c into n1;
while(n1 is not null) DO

set n1 = concat(n1,":");
set n2 = concat(n2,n1);
fetch c into n1;

end while;
close c;
select n2;
end;

  通过以上存储过程,就返回了所有ecshop的商品ID的字符串。

   来源:http://www.chinab4c.com