查询数据库中的存储过程
方法一:
方法二:
查看存储过程或函数的创建代码
show create procedure proc_name;show create function func_name;
删除存储过程
drop procedure sp_name //