SQL的小常识, 备忘之用, 慢慢补充.
程序员文章站
2023-12-05 18:24:52
1. @@rowcount: 获取受影响行数 复制代码 代码如下: update sns_topicdata set topiccount=topiccount+1 whe...
1. @@rowcount: 获取受影响行数
update sns_topicdata set topiccount=topiccount+1 where topic ='1'
if @@rowcount>0
begin
print '成功'
end
else
begin
print '失败'
end
2.存储过程的调用
--申明返回变量
declare @topiccount int
--执行
exec [sns_topicdata_blogadd]
--返回值设置
@topiccount output,
--参数传入
@topic='huati'
--输出返回值
print @topiccount
3. 不锁表 with(nolock)
select * from sns_topicdata with(nolock)
原文:http://www.cnblogs.com/henw/archive/2011/10/18/2216593.html
复制代码 代码如下:
update sns_topicdata set topiccount=topiccount+1 where topic ='1'
if @@rowcount>0
begin
print '成功'
end
else
begin
print '失败'
end
2.存储过程的调用
复制代码 代码如下:
--申明返回变量
declare @topiccount int
--执行
exec [sns_topicdata_blogadd]
--返回值设置
@topiccount output,
--参数传入
@topic='huati'
--输出返回值
print @topiccount
3. 不锁表 with(nolock)
复制代码 代码如下:
select * from sns_topicdata with(nolock)
原文:http://www.cnblogs.com/henw/archive/2011/10/18/2216593.html
上一篇: T-SQL 查询语句的执行顺序解析
下一篇: SqlServer中的日期与时间函数