存储过程是指为了完成特定的功能由一条或多条sql语句组成的集合,这些语句集合可以被多次调用,类似于批处理文件,通常指定一个名称进行存储,经系统进行编译后存储到数据库的服务器中,作为数据库的对象,形成一个处理单元。存储过程创建之后,用户通过指定存储过程名称与参数,调用该存储过程并且执行。在调用的过程中允许用户声明变量,设置条件,以便增强程序设计的能力。
存储过程加快系统运行速度,存储过程只在创建时编译,以后每次执行时不需要重新编译。
存储过程可以封装复杂的数据库操作,简化操作流程,例如对多个表的更新,删除等。
可实现模块化的程序设计,存储过程可以多次调用,提供统一的数据库访问接口,改进应用程序的可维护性。
存储过程可以增加代码的安全性,对于用户不能直接操作存储过程中引用的对象,SQL Server可以设定用户对指定存储过程的执行权限。
存储过程可以降低网络流量,存储过程代码直接存储于数据库中,在客户端与服务器的通信过程中,不会产生大量的T_SQL代码流量。
存储过程影响到数据库的移植,因为存储过程依赖于数据库管理系统,在存储过程中所封装的t-sql代码不能直接移植到其他数据库管理系统中。
对集群操作不支持。
不支持面向对象的程序设计无法面对的方式封装业务逻辑。
存储过程的代码不易阅读,维护难度大。
该类存储过程通常被存放到master数据库中,存储过程名称通常以“sp_”为前缀,但是在其他数据库中均可调用系统存储过程,调用时在存储过程名称前面不必添加数据库的限定名。其功能是在表中获取信息,实现数据库服务器的管理任务。
所谓自定义存储过程,是指为了完成某一段特定的功能需求,在用户数据库中利用t-sql自行编辑的语句集合,在用户自定义的过程中可以有输入参数,返回的输出参数及返回至客户端的信息与结果 。如果在存储过程名称前加了“##”符号,表示创建的存储过程是临时的全局性的;如果前面的为“#”符号,表示所创建的存储过程是临时的局部的,该存储过程只能在创建它的会话中使用。以上两种存储过程创建后都存放在tempdb数据库中。
扩展存储过程是以在SQL SERVER环境外执行的动态连接(DLL文件)来实现的,可以加载到SQL SERVER实例运行的地址空间中执行,扩展存储过程可以用SQL SERVER扩展存储过程API编程,扩展存储过程以前缀"xp_"来标识,对于用户来说,扩展存储过程和普通话存储过程一样,可以用相同的方法来执行。
--创建学生表 create table student( student_id int identity(1,1) primary key, student_name varchar(10), student_age int, student_sex varchar(2) ); --插入学生数据 insert into books (student_name,student_age,student_sex) values ('张三',23,'男'), ('李四',18,'女'), ('王五',32,'男')
--创建无参存储过程 if object_id('getAllstu','p') is not null drop proc getAllstu go create proc getAllstu --prco全写:procedure as select * from student go --调用,执行存储过程 exec getAllstu
alter proc getAllstu as select name,age from student go
sp_rename getAllstu,getSomestu
drop proc getSomestu
存储过程的参数分为两种:输入参数和输出参数
输入参数:用于向存储过程传入值,类似java语言中的值传递。 输出参数:用于调用存储过程后,参会结果,类似java语言的按引用传递。
值传递和引用传递区别:
if object_id('searchStu','p') is not null drop proc searchStu go create proc searchStu(@stuID int) as --要求student_id列与输入参数相等 select * from student where student_id=@stuID go --执行searchStu exec searchStu 1
if object_id('searchStus','p') is not null drop proc searchStus go create proc searchStus( @stuID int, @stu_name varchar(10)) as --要求stuID和stu_name列与输入参数相等 select * from student where student_id=@stuID and student_name=@stu_name go --执行searchStus exec searchStus 2,'王五'
if object_id('getStuId','p') is not null drop proc getStuId go create proc getStuId( @stu_Name varchar(10),--输入参数,无默认值 @stuId int output --输入/输出参数 无默认值 ) as select @stuId=student_id from student where student_name=@stu_Name go --执行getStuId这个带返回值的存储过程 declare @id int --声明一个变量用来接收执行存储过程后的返回值 exec getStuId '张三',@id output select @id as stuId;--as是给返回的列值起一个名字
if object_id('getStuId','p') is not null drop proc getStuId go create proc getStuId( @stu_Name varchar(10)='李四',--输入参数,有默认值 @stuId int output --输入/输出参数 无默认值 ) as select @stuId=student_id from student where student_name=@stu_Name go --执行getStuId这个带返回值的存储过程 declare @id int --声明一个变量用来接收执行存储过程后的返回值 exec getStuId default,@id output select @id as stuId;--as是给返回的列值起一个名字
if object_id('charStu','p') is not null drop proc charStu go create proc charStu( @stu_Name varchar(10)='张%' ) as select * from student where student_name like @stu_Name go --执行存储过程charStu exec charStu '王%'
————————————————
版权声明:本文为CSDN博主「何极光」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_44034384/article/details/106236823