存储函数的创建 删除 修改



//
存储函数 create function hello(w char(20) charset utf8) returns char(50) reads sql data begin return concat('hello',w,'!'); end $ //运行函数 select hello('日记本的回忆') //删除该函数 drop function hello$ //查看已存在函数 show function statusG
原文地址:https://www.cnblogs.com/cocoliu/p/5053030.html