Oracle-Trunc()函数截取⽇期截取数值
Oracle TRUNC函数可以截取数字和⽇期类型:
截取⽇期:
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual; --显⽰当前时间
select trunc(sysdate,'year') from dual; --截取到年(本年的第⼀天)
select trunc(sysdate,'q') from dual; --截取到季度(本季度的第⼀天)
select trunc(sysdate,'month') from dual; --截取到⽉(本⽉的第⼀天)
select trunc(sysdate,'') from dual; --为空
select trunc(sysdate) from dual; --截取到⽇(今天)
select to_char(trunc(sysdate),'yyyy-mm-dd hh24:mi:ss') from dual; --默认截取到⽇(当⽇的零点零分零秒)select trunc(sysdate,'day') from dual; --截取到周(本周第⼀天,即上周⽇)
select trunc(sysdate,'iw') from dual; --本周第2天,即本周⼀oracle decimal类型
select to_char(trunc(sysdate,'dd'),'yyyy-mm-dd hh24:mi:ss') from dual; --截取到⽇(当⽇的零点零分零秒)select trunc(sysdate,'hh24') from dual; --截取到⼩时(当前⼩时,零分零秒)
select trunc(sysdate,'mi') from dual; --截取到分(当前分,零秒)
select trunc(sysdate,'ss') from dual ;--报错,没有精确到秒的格式
截取数值:
trunc(number,decimals) number:指需要截取的数字
select trunc(122.555) from dual t; --默认取整
select trunc(122.555,2) from dual t;
select trunc(122.555,-2) from dual t;--负数表⽰从⼩数点左边开始截取2位
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论