用sql server management studio这个管理工具,查询出来的条数会显示在左下角。
或者用select count(* ) from 就可以塞
select count(age) from table_1 where age=30
SQL语句只和数据库有关系,和你用JAVA还是C++没关系的
用什么语言啊那我用C#了
string strSQL = "select count(*) from table_1 where age=30";
int i = cmd.EXClQuery(strSQL,SqlConnection)
n=Rs.RecordCount
或者
select count(age) from table_1 where age=30
select count(*) from table_1 where age=30