String sql2="select count(*) from t_testuser where substr(INSETTIME,1,10)=to_char(sysdate,'yyyy-MM-dd') ";
ResultSet rs2=stmt.executeQuery(sql2);
 while(rs2.next()){ 
int count2=rs2.getInt(1); //本日新增体检用户数
  out.print(count2+";");

相关文章:

  • 2021-06-15
  • 2022-02-28
  • 2021-11-30
猜你喜欢
  • 2021-11-13
  • 2022-01-26
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2022-02-17
  • 2021-10-11
相关资源
相似解决方案