在java中怎么获取oracle中时间的时分秒?

2024-12-27 18:11:47
推荐回答(4个)
回答1:

连接上数据库,向数据库发送“select extract (hour from systimestamp),extract(minute from systimestamp),extract(second from systimestamp) from dual”这条SQL语句。其中hour是小时,minute是分钟,second是秒钟。

回答2:

假如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查询时的

回答3:

select to_char(sysdate, 'HH24:MI:SS') from dual;

回答4:

想这种问题,你就在百度上搜Oracle时间函数,就会出来