试题详情

在SQL Server中,以下代码运行结果是( ) declare @sum int,@count int select @sum=0,@count=1 Label1: select @sum=@sum+@count select @count=@count+1 if @count<=5 Goto label1 select @count-1,@sum

A5 15

B5 10

C4 15

D4 10