trunc函式,decode函式

2021-08-17 20:01:24 字數 1136 閱讀 3950

1)trunc(number,num_digits)

number是需要截尾取整的數字,也可以是日期

num_digits用於指定整精度的數字(預設為0)。

trunc()函式擷取時不進行四捨五入

--為123.456,123.546取整

select trunc(123.456),trunc(123.546) from dual;

--保留123.456小數點後倆位小數和小數點前倆位小數

select trunc(123.456,2),trunc(123.456,-2) from dual;

trunc()操作日期:
--使用trunc函式得到當天的凌晨,當月的第一天,今年的第乙個月

select to_char(trunc(sysdate),'yyyy-mm-dd hh24-mi-ss'),

to_char(trunc(sysdate,'mm'),'yyyy-mm-dd hh24-mi-ss'),

to_char(trunc(sysdate,'yyyy'),'yyyy-mm-dd hh24-mi-ss')

from dual;

2)decode(條件,值1,返回值1,值2,返回值2,....,值n,返回值n,預設值)

decode是oracle獨有的函式,mysql還沒有實現該功能

該函式的含義如下:

if 條件=值1 then

return 值1

else 條件=值2 then

return 值2

......

else 條件=值n then

return 值n

else

return 預設值

end if

--實驗decode函式

select sign(1-3),decode(sign(1-3),1,'x',-1,'y','z') from dual;

select sign(1-1),decode(sign(1-1),1,'x',-1,'y','z') from dual;

select sign(1+1),decode(sign(1+1),1,'x',-1,'y','z') from dual;

截斷函式trunc

截斷函式trunc 兩種用法 1,截斷時間 trunc函式為指定元素而截去的日期值。其具體的語法格式如下 trunc date fmt 其中 date 乙個日期值 fmt 日期格式,該日期將由指定的元素格式所截去。忽略它則由最近的日期截去 舉例 sysdate 2008 10 16 1 當年第一天 ...

trunc 函式用法

1.trunc用於日期,可精確到年,月和日.select trunc sysdate,yyyy from dual select trunc sysdate,mm from dual select trunc sysdate,dd from dual 第乙個引數為日期,第二個引數為格式 format...

trunc 函式用法

至 1.trunc用於日期,可精確到年,月和日.第乙個引數為日期,第二個引數為格式 format 即trunc date,format 如果省略format表示精確到日。2.trunc也可用於數值,截斷位數 sql select trunc 123.3210,2 from dual trunc 12...