数据库
首页 > 数据库> > 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  返回当前分钟

标签:sysdate,函数,--,2021,dual,Oracle,select,trunc
来源: https://blog.csdn.net/WZH577/article/details/120502978