首页 >数据库 >mysql教程 >存储过程的定义、修改和删除的操作方法

存储过程的定义、修改和删除的操作方法

一个新手
一个新手原创
2017-10-18 10:18:002644浏览

1.存储过程的分类

  • 系统存储过程

  • 本地存储过程(用户自定义)

  • 临时存储过程(局部【#】、全局【##】临时存储过程)

2.创建存储过程


--选出价格区间的商品信息create procedure sp_goods_price@minprice float ,@maxprice floatas select * from goods 
where price>=@minprice and price <=@maxpricego

执行存储过程: execute sp_goods_price 200 2000

3.修改存储过程


create procedure sp_goods_betw@minprice float =200,@maxprice float=3000as select * from goods 
where price>=@minprice and price <=@maxpricego

4.删除存储过程


drop procedure sp_goods_price

 5.查看存储过程


sp_helptext procedureName
sp_help procedureName

 6.重命名存储过程


exec sp_rename oldName newName

**局部存储过程


<p style="margin-bottom: 7px;">create procedure #sp_goods_betw@minprice float ,@maxprice floatas select * from goods <br/>where price>=@minprice and price <=@maxpricego<br/></p>

**全局存储过程


create procedure ##sp_goods_betw@minprice float ,@maxprice floatas select * from goods 
where price>=@minprice and price <=@maxpricego

**不加缓存的存储过程


   ,
with recompile
as select * from goods 
where price>=@minprice and price <=@maxpricego

**加密存储过程


   ,
with enctyption
as select * from goods 
where price>=@minprice and price <=@maxpricego

以上是存储过程的定义、修改和删除的操作方法的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn