-- 如果存在hello这个名称的函数则删除hello
drop FUNCTION if exists hello;
-- 创建一个叫hello的函数返回值为int类型,参数为varchar类型 参数名称为username
CREATE FUNCTION hello(username VARCHAR(50)) RETURNS INT
-- 开始
begin
-- 声明一个变量c为int类型
declare c int;
-- 查询名称为username的用户id并保存进变量c
select id from `user` where name=username INTO c;
-- 返回变量c
return c;
-- 结束
END;
-- 执行查询函数
select hello("张");