sql编程的几个常识

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 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐