首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

怎么SQL返回查询的记录数

2012-02-05 
如何SQL返回查询的记录数?如何SQL返回查询的记录数?[解决办法]select @@rowcount[解决办法]在语句后+selec

如何SQL返回查询的记录数?
如何SQL返回查询的记录数?

[解决办法]
select @@rowcount
[解决办法]
在语句后+
select * from ta
print @@rowcount
[解决办法]
select count(*) from
(
查询语句
)
[解决办法]
select rowcnt from sysindexes where
id in (select id from sysobjects where name = 'tablename ')
and status=0

最快的方法!
[解决办法]
@@rowcount
[解决办法]
@@ROWCOUNT
返回受上一语句影响的行数。

语法
@@ROWCOUNT

返回类型
integer

注释
任何不返回行的语句将这一变量设置为 0 ,如 IF 语句。


[解决办法]
select count(*) from tbName
where ...

热点排行