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
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
上一篇: 什么是精盐,经常吃精盐好吗