当前位置: 代码迷 >> Java Web开发 >> 怎么得到select count(*) from 表 where name='aa'的返回值
  详细解决方案

怎么得到select count(*) from 表 where name='aa'的返回值

热度:863   发布时间:2016-04-17 13:57:30.0
如何得到select count(*) from 表 where name='aa'的返回值?
如何得到select   count(*)   from   表   where   name= 'aa '的返回值?

------解决方案--------------------
select count(*) as count_value from 表 where name= 'aa '
...

rs.getInt( "count_value ")或者rs.getInt(1)
------解决方案--------------------
rs.getInt(1);
------解决方案--------------------
你提交时用那个返回值是Resultset的statement里的executeQuery方法,提交后用ResultSet对像来接,剩下的你去看Resultset的方法怎么使
  相关解决方案