Sql中存储过程的定义、修改和删除操作

时间:2021-05-23

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 procedureNamesp_help procedureName

6.重命名存储过程

exec sp_rename oldName newName

**局部存储过程

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

**全局存储过程

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

**不加缓存的存储过程

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

**加密存储过程

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

总结

以上所述是小编给大家介绍的Sql中存储过程的定义、修改和删除,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章