这个函数中的bug在哪里?

时间:2015-06-05 13:52:25

标签: mysql function

当我向下运行脚本以创建函数getUser_ID()时,我收到此错误:

enter image description here

功能

create function getUser_ID() 
return int
begin 
declare user int;
select User_ID+1 into user from BX_Users order by  User_ID DESC limit 1;
return user;
end;

1 个答案:

答案 0 :(得分:1)

它们在声明中指定存储函数返回的数据类型为RETURNS。不是RETURN

create function getUser_ID() RETURNS int
...