Oracle trunc()函数的用法

匿名 (未验证) 提交于 2019-12-02 23:49:02

Oracle trunc()函数的用法

日期
select trunc(sysdate) from dual --2019/7/21 今天的日期为2019/7/21
select trunc(sysdate, 'mm') from dual --2019/7/1 返回当月第一天.
select trunc(sysdate,'yy') from dual --2019/1/1 返回当年第一天
select trunc(sysdate,'dd') from dual --2019/7/21 返回当前年月日(当天)
select trunc(sysdate,'yyyy') from dual --2019/1/1返回当年第一天
select trunc(sysdate,'dd') from dual --2019/7/21 (星期天)返回当前星期的第一天
select trunc(sysdate, 'hh') from dual --2019/7/21 23:00:00 当前时间为23:02(整点)
select trunc(sysdate, 'mi') from dual --2019/7/21 23:02:00 TRUNC()函数没有秒的精确


数字
TRUNC(number,num_digits)
Number 需要截尾取整的数字。
Num_digits 用于指定取整精度的数字。Num_digits 的默认值为 0。
TRUNC()函数截取时不进行四舍五入


select trunc(123.458) from dual --123
select trunc(123.458,0) from dual --123
select trunc(123.458,1) from dual --123.4
select trunc(123.458,-1) from dual --120
select trunc(123.458,-4) from dual --0
select trunc(123.458,4) from dual --123.458
select trunc(123) from dual --123
select trunc(123,1) from dual --123
select trunc(123,-1) from dual --120

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!