C/C++教程

Oracle中trunc函数

本文主要是介绍Oracle中trunc函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

处理日期

select trunc(last_day(sysdate)) from dual;      --2021/9/30  返回当月最后一天
select trunc(last_day(sysdate)+1) from dual;  --2021/10/1  返回下月的第一天
select trunc(sysdate) from dual;          --2021/9/27  返回当天的日期
select trunc(sysdate)+1 from dual;        --2021/9/28 返回明天的日期
select trunc(sysdate,'yyyy') from dual;   --2021/1/1  返回当年第一天.
select trunc(sysdate,'mm') from dual;     --2021/9/1  返回当月第一天.
select trunc(sysdate,'d') from dual;      --2021/9/26 返回当前星期的第一天(以周日为第一天).
select trunc(sysdate,'dd') from dual;     --2021/9/27  返回当前年月日
select trunc(sysdate,'hh') from dual;     --2021/9/27 9:00:00  返回当前小时
select trunc(sysdate,'mi') from dual;     --2021/9/27 9:47:00  返回当前分钟
这篇关于Oracle中trunc函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!