oracle怎么去掉秒,oracle去掉时分秒
oracle查询时间不显示秒
将查询结果使用to_date()或者to_char()函数处理一下。
成都创新互联主要从事网站建设、成都网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务长海,十载网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:13518219792
1、 使用默认日期格式显示日期
select sysdate from dual;
2、使用to_char()函数显示日期
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;
3、使用to_date()函数显示日期
select to_date('2015-10-29 15:37:23','yyyy-mm-dd hh24:mi:ss') from dual;
Java 读取Oracle数据库中的Date日期型怎么去掉秒后面的0
jsp 见面吗? 如果是i的话。 就用JSTL的fmt:formatDate value="${值}" type="yyyy-MM-dd"标签 好像是这样的 长时间没用了 。 去谷歌搜一下
怎么设置 oracle to_date函数查询不带时分秒
你仅仅想要日期么,那么就用trunc截取,
select trunc(to_date('2014-09-20', 'yyyy-mm-dd')) from atable,这样就是仅仅到日的。
oracle 日期转化怎么把时分 秒去掉了
select cast(to_date('2012-11-2 13:29:19','yyyy-mm-dd hh24:mi:ss') as timestamp) - cast(to_date('2012-11-2 13:27:14','yyyy-mm-dd hh24:mi:ss')as timestamp) from dual
当前文章:oracle怎么去掉秒,oracle去掉时分秒
本文来源:http://abwzjs.com/article/hsgeed.html