- 此问题在此处已有答案**:
How to retrieve the result of SQL COUNT function from the result set?(1个答案)
3天前关闭。
我想用下面的查询找到一个名字在mysql表中出现的次数:select count(*) from employeedetails
如何将结果取到java整型变量中?
How to retrieve the result of SQL COUNT function from the result set?(1个答案)
3天前关闭。
我想用下面的查询找到一个名字在mysql表中出现的次数:select count(*) from employeedetails
如何将结果取到java整型变量中?
1条答案
按热度按时间wqsoz72f1#
你可以使用
ResultSet#getInt(int)
来返回一个查询列的整数值,按照它的顺序(例如,第一列是1,第二列是2,等等):