Declare @Count tinyint
Declare @Count2 tinyint
SELECT @Count2 = Count(*) FROM table where artno = @new
If @Count2 != 0
BEGIN
delete from table where artno = @new
END
我不知道 SQL Server 存储过程中的这些代码行到底在做什么。
我已经研究了之后的定义和使用,count()
也无法弄清楚。尤其是代码 中的 'count(*)'=
让我很困惑。*
我是初学者,所以如果它是非常基本的问题,我想道歉,但我明白了。