欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

sql编程的几个常识

程序员文章站 2022-04-16 09:44:09
1、@@rowcount可以判断上一行查询操作得到的列数; 2、给变量赋值用set @pr_id = 13; 3、察看是否有符合条件的记录if...
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