1、@@ROWCOUNT可以判断上一行查询操作得到的列数;
2、给变量赋值用SET @Pr_id = 13;
3、察看是否有符合条件的记录IF EXISTS (Select name FROM sysobjects Where name = ‘reminder’ AND type = ‘TR’);
说明特别是第一个,感觉在写Proce的时候,可以好好的运用
Create Proc Add
@n char(10)
as
Select a from Table1 where a = @n
if(@@RowCount<>0)
Begin
Update ….
End
Else
Begin
Insert ……….
End
原创文章,作者:306829225,如若转载,请注明出处:https://blog.ytso.com/233354.html