阅读背景:

在SQL Server中的T-Sql中打印变量和消息

来源:互联网 

I have the following code

我有以下代码

create procedure math_table1(@num int, @i int)
as
begin
    declare @b int
    set @b = 1 
    while (@b <= @i)
    begin
        print @num 
        print '*'
        print @b 
        print '='
        print  @num * @b;
        set @b = @b + 1;
    end
end 
create pro



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: