当前位置: 技术问答>java相关
语句:select max(age) from user,如何用在ResultSet中得到?!!
来源: 互联网 发布时间:2015-07-16
本文导语: 语句:select max(age) from user,如何用在ResultSet中得到?!! | 你可以用stringName=rs.getString(1);可以得到。 或 把上面的SQL语句必成select max(age) as maxAge from user stringName=rs.getString("maxAge"); 可以给max(age)...
语句:select max(age) from user,如何用在ResultSet中得到?!!
|
你可以用stringName=rs.getString(1);可以得到。
或
把上面的SQL语句必成select max(age) as maxAge from user
stringName=rs.getString("maxAge");
可以给max(age)定义一个别名,如上面的SQL语句。
或
把上面的SQL语句必成select max(age) as maxAge from user
stringName=rs.getString("maxAge");
可以给max(age)定义一个别名,如上面的SQL语句。