码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server进阶(四)存储过程

时间:2018-08-22 21:50:25      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:bsp   else   procedure   style   RoCE   from   color   sele   class   

新建存储过程

Create PROCEDURE [dbo].[p_test]
    @type int
AS
BEGIN
    declare @count int
    if(@type =1)
        begin
            select  @count = (select count(*) from dbo.UserGrowthDetail)
            print @count
            return @count
        end
    else if(@type =2)
        begin
            select  @count = (select count(*) from dbo.UserGrowthValue)
            print @count
            return @count
        end
END

执行存储过程

GO

DECLARE    @return_value int

EXEC    @return_value = [dbo].[p_test]
        @type = 1

SELECT    Return Value = @return_value

GO

 

SQL Server进阶(四)存储过程

标签:bsp   else   procedure   style   RoCE   from   color   sele   class   

原文地址:https://www.cnblogs.com/cnki/p/9520338.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!