这段代码运行时时为什么会报错
create procedure dbo.Student
(@Sno nvarchar(40),
@Sname nvarchar(40),
@Ssex nvarchar(4),
@Sage smallint=20,--初始化年龄值为20
@Sdept nvarchar(4)
@DeptCount int output --定义一个统计元组的输出
)
AS
Select *
From Student
Select @DeptCount=@@RowCount --统计行数
declare DeptCount
EXEC dbo.Student '200702044069'
@DeptCount output
我刚学SQL语言,希望大家能帮我解释哈