首页 > 其他 > 详细

Error Code: 1305. FUNCTION student.rand_string does not exist

时间:2015-04-24 21:09:23      阅读:234      评论:0      收藏:0      [点我收藏+]

1、错误描述

13:52:42	call new_procedure	Error Code: 1305. FUNCTION student.rand_string does not exist	0.000 sec

2、错误原因

CREATE DEFINER=`root`@`localhost` PROCEDURE `new_procedure`()
BEGIN
  set @a=101;
  while @a<2000 do
  set @b = rand_string(10);
  set @c=1;
  insert into example1 values(@a,@b,@c);
  set @a=@a+1;
  if(@a%2=0)
     then
     set @c=0;
     end if;
  end while;
END
    在`new_procedure`存储过程中,需要调用rand_string存储过程,但是rand_string存储过程没有写


3、解决办法

    新建一个rand_string存储过程,用于生成随机字符串

Error Code: 1305. FUNCTION student.rand_string does not exist

原文:http://blog.csdn.net/you23hai45/article/details/45251007

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!