码迷,mamicode.com
首页 > 其他好文 > 详细

Error Code: 1630. FUNCTION rand.string does not exist

时间:2015-04-24 21:13:32      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:mysql   function   存储过程   

1、错误描述

13:50:13	call new_procedure	Error Code: 1630. FUNCTION rand.string does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference Manual	0.046 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
   在给@b赋值时,用的是@b = rand.string(10),其实是想写个随机字符串存储过程


3、解决办法

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


Error Code: 1630. FUNCTION rand.string does not exist

标签:mysql   function   存储过程   

原文地址:http://blog.csdn.net/you23hai45/article/details/45250919

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!