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