Mysql存储过程

 

创建:

  delimiter $

  create procedure ‘过程名称()‘

    begin

      sql语句;

    end$

  delimiter ;

 

调用存储过程:

  call 过程名称()$

 

查询存储过程:

  select name from mysql.proc where db=数据库名称$

删除存储过程:

  drop procedure 过程名称$

Mysql存储过程

上一篇:MVC缓存的使用


下一篇:windows环境下,系统磁盘空间100%造成的数据库故障