SQL Server中如何获得返回记录的条数。

2024-12-25 15:57:28
推荐回答(5个)
回答1:

用sql server management studio这个管理工具,查询出来的条数会显示在左下角。

或者用select count(* ) from 就可以塞

回答2:

select count(age) from table_1 where age=30
SQL语句只和数据库有关系,和你用JAVA还是C++没关系的

回答3:

用什么语言啊那我用C#了
string strSQL = "select count(*) from table_1 where age=30";
int i = cmd.EXClQuery(strSQL,SqlConnection)

回答4:

n=Rs.RecordCount
或者
select count(age) from table_1 where age=30

回答5:

select count(*) from table_1 where age=30