//存储函数create function hello(w char(20) charset utf8)returns char(50)reads sql databegin return concat('hello',w,'!');end$//运行函数select hello('日记本的回忆')//删除该函数drop function hello$//查看已存在函数show function statusG
存储函数的创建删除修改