mysql-进阶 存储函数
存储函数和存储过程很类似 示例:
\d $
create function hello(w char(20) charset utf8) 设置输入字符
returns char(50) 设置返回字符类型
reads sql data 固定写法
begin 函数起点
return concat('hello',w,'!'); 函数体
end 函数终点
$ 结尾
调用它的时候
select hello('上海')$
查看单个函数
show create function hello\G
查看所有函数
show function status\G
删除函数
drop function hello$