当前位置: 代码迷 >> MySQL >> 储存函数的创建 删除 修改
  详细解决方案

储存函数的创建 删除 修改

热度:403   发布时间:2016-05-05 16:31:16.0
存储函数的创建 删除 修改


//
存储函数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 status\G

 

  相关解决方案