数据库
首页 > 数据库> > SQL Server创建存储过程——动态SQL

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

作者:互联网

简介:

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

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

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

优点:

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

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

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 ]

无参数存储过程:

--创建名为 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

有返回值的存储过程:

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

--执行名为 GetStuCou 的有返回值的存储过程
execute GetStuCou_Re

有输入参数的存储过程:

--创建名为 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'

有输入、输出参数的存储过程:

--创建名为 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

有输入、输出参数和结果集的存储过程:

--创建名为 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

返回多个结果集的存储过程:

--创建名为 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 语句组成的代码块。

标签:GetStuCou,存储,--,StuNo,Server,SQL,Height,过程
来源: https://blog.csdn.net/qq_40732336/article/details/120802710