连接上数据库,向数据库发送“select extract (hour from systimestamp),extract(minute from systimestamp),extract(second from systimestamp) from dual”这条SQL语句。其中hour是小时,minute是分钟,second是秒钟。
假如po中有字段
private Date createtime;
public Date getCreatetime() {
return createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
在数据库查询时可以直接这么做
ResultSet rs;
po.setCreatetime(rs.getTimestamp("createtime"));
以上代码是我的项目中spring JdbcTemplate查询时的
select to_char(sysdate, 'HH24:MI:SS') from dual;
想这种问题,你就在百度上搜Oracle时间函数,就会出来