迷恋自留地 发表于 2021-10-16 21:18

SQL Server创建存储过程——动态SQL

### 简介:

存储过程(stored procedure)是一组为了完成特定功能的SQL语句集合,经编译后存储在服务器端的数据库中,利用存储过程可以加速SQL语句的执行。

自定义存储过程,由用户创建并能完成某一特定功能的存储过程,存储过程既可以有参数又有返回值,但是它与函数不同,存储过程的返回值只是指明执行是否成功,

存储过程并不能像函数那样被直接调用,只能利用 execute 来执行存储过程。

### 优点:

- 提高应用程序的通用性和可移植性:存储过程创建后,可以在程序中被多次调用,而不必重新编写该存储过程的SQL语句。并且数据库专业人员可以随时对存储过程进行

修改,且对程序源代码没有影响,这样就极大的提高了程序的可移植性。

- 可以提高SQL的速度,存储过程是编译过的,如果某一个操作包含大量的SQL代码或分别被执行多次,那么使用存储过程比直接使用单条SQL语句执行速度快的多。

- 减轻服务器的负担:当用户的操作是针对数据库对象的操作时,如果使用单条调用的方式,那么网络上还必须传输大量的SQL语句,如果使用存储过程,

则直接发送过程的调用命令即可,降低了网络的负担。

```sql
CREATE PROC [ EDURE ] procedure_name [ ; number ]
    [ { @parameter data_type }
      [ VARYING ] [ = default ] [ OUTPUT ]
    ] [ ,...n ]
[ WITH
    { RECOMPILE | ENCRYPTION | RECOMPILE , ENCRYPTION } ]
[ FOR REPLICATION ]
AS
[ begin ]
    T-SQL 语句
[ end ]
```
#### 无参数存储过程:



```sql
--创建名为 GetStuCou 的无参数存储过程
create procedure GetStuCou
as
begin
    select *
    from Student s
    left join Course c on s.C_S_Id=c.C_Id
end

--执行名为 GetStuCou 的无参数存储过程
execute GetStuCou
```
#### 有返回值的存储过程:

```sql
--创建名为 GetStuCou_Re 的有返回值的存储过程
create procedure GetStuCou_Re
as
begin
    insert into Course(C_Name) values('HTML5')
    return SCOPE_IDENTITY();      -- 返回为当前表插入数据最后生成的标识值。
end

--执行名为 GetStuCou 的有返回值的存储过程
execute GetStuCou_Re
```
#### 有输入参数的存储过程:

```sql
--创建名为 GetStuCou_In 的有输入参数的存储过程
create procedure GetStuCou_In
@StuNo    nvarchar(64)='001'      --设置默认值
as
begin
    select * from Student where S_StuNo=@StuNo
end

--执行名为 GetStuCou_In 的有输入参数的存储过程(不传参数,即使用默认值)
execute GetStuCou_In

--执行名为 GetStuCou_In 的有输入参数的存储过程(传入参数)
execute GetStuCou_In '005'
```
#### 有输入、输出参数的存储过程:

```sql
--创建名为 GetStuCou_Out 的有输入参数和输出参数的存储过程
create procedure GetStuCou_Out
@StuNo    nvarchar(64),
@Height nvarchar(32) output
as
begin
    if(@StuNo is not null and @StuNo <> '')
    begin
      select @Height=S_Height
      from Student
      where S_StuNo=@StuNo
    end
    else
    begin
      set @Height='185'
    end
end

--执行名为 GetStuCou_Out 的有输入参数和输出参数的存储过程
execute GetStuCou_Out '005',null
```
#### 有输入、输出参数和结果集的存储过程:

```sql
--创建名为 GetStuCou_DS 的有输入参数、输出参数和结果集的存储过程
create procedure GetStuCou_DS
@StuNo    nvarchar(64),
@Height nvarchar(32) output
as
begin
    if(@StuNo is not null and @StuNo <> '')
    begin
      select @Height=S_Height
      from Student
      where S_StuNo=@StuNo
    end
    else
    begin
      set @Height='185'
    end

    select s.S_Id,s.S_StuNo,s.S_Name,s.S_Sex,s.S_Height,s.S_BirthDate,c.C_Id,c.C_Name
    from Student s
    left join Course c on s.C_S_Id=c.C_Id
    where S_StuNo=@StuNo
end

--执行名为 GetStuCou_DS 的有输入参数、输出参数和结果集的存储过程
execute GetStuCou_DS '005',null
```
#### 返回多个结果集的存储过程:

```sql
--创建名为 GetStuCou_DSS 的返回多个结果集的存储过程
create procedure GetStuCou_DSS
@StuNo    nvarchar(64),
@Height nvarchar(32)
as
begin
    if(@StuNo is not null and @StuNo <> '')
    begin
      select *
      from Student
      where S_StuNo=@StuNo
    end

    if(@Height is not null and @Height <> '')
    begin
      select *
      from Student
      where S_Height=@Height
    end
end

--执行名为 GetStuCou_DSS 的返回多个结果集的存储过程
execute GetStuCou_DSS '005','185'
```
> 存储过程里面不仅可以进行查询,还可以进行各种增删改操作。其实存储就是由很多 T-SQL 语句组成的代码块。

pengtusheng 发表于 2021-10-16 23:22

一直在用SQL SERVER从没用过这个,觉得有点难

YY-Loading.. 发表于 2021-10-17 00:11

前来学习学习

s-noc 发表于 2021-10-17 00:37

学习了,感恩楼主分享

troybug 发表于 2021-10-17 11:47

感谢楼主分享有用的知识,可以请楼主再分享一些linq与sql server交互的知识吗

flyingdancex 发表于 2021-10-17 13:29

这个总结的不错,这些例子给不经常写的有个参考,先收下了

hahha2003 发表于 2021-11-18 13:50

总结的不错,这些都是常用的
页: [1]
查看完整版本: SQL Server创建存储过程——动态SQL