1. 程式人生 > >Error Code 1305 FUNCTION student rand string does not exis

Error Code 1305 FUNCTION student rand string does not exis

ews 錯誤 我們 erro http article mic 生成 的人

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存儲過程,用於生成隨機字符串

再分享一下我老師大神的人工智能教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智能的隊伍中來!https://blog.csdn.net/jiangjunshow

Error Code 1305 FUNCTION student rand string does not exis