作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,伙计们!!!, 我在 MySql 中编写了一个查询,它给出了表列中特定字段的总和,查询是
PreparedStatement st = con.prepareStatement("SELECT COUNT(toc) AS std FROM processeddata_table where date(calldate) between '2009-01-01' and '2012-09-01' and toc='std' GROUP BY toc ");
现在根据我的需要,我必须将所有“std”值的总和存储到一个变量中,我为其编写了如下代码
ResultSet res = st.executeQuery();
while (res.next())
{
int std='';
}
如何获取名为“std”的变量中字段的总和。
请大家帮帮我。提前致谢
最佳答案
int std=res.getInt("std");
应该获取该值。
Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
关于java - 如何从MySql表列中检索特定字段的总和到变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13833643/
我是一名优秀的程序员,十分优秀!