oracle的資料型別轉換方法:1、使用cast()函數,語法「cast(x as type)」;2、使用to_char()函數,語法「to_char(x[,f])」;3、使用to_date()函數,語法「to_date(x[,f])」等。
本教學操作環境:Windows7系統、Oracle 11g版、Dell G3電腦。
oracle的資料型別轉換方法
1、使用cast()
cast()是資料型別轉換函數,該函數可以把x轉換為對應的type的資料型別,基本上用於數位,字元,時間型別安裝資料庫規則進行互轉。
語法:
cast(x as type)
範例:
select cast('123' as number) num,cast(123 as varchar2(3)) as ch,cast(to_date('20211112','yyyymmdd') as varchar2(12)) as time from dual;
結果:
123 '123' 12-11月-21
2、使用to_char()
to_char()函數可把字串或時間型別x按格式f進行格式化轉換為字串。
語法:
to_char(x[,f])
範例:
select to_char(123.46,'999.9') from dual; select to_char(sysdate,'yyyy-mm-dd') from dual;
結果:
123.5 2021-11-13
3、使用to_date()
to_date()函數可以把字串x按照格式f進行格式化轉換為時間型別結果。
語法:
to_date(x[,f])
範例:
select to_date('2021-11-13','yyyy-mm-dd') from dual;
結果:
2021/11/13
4、使用to_number()
to_number()函數可以把字串x按照格式f進行格式化轉換為數值型別結果。
語法:
to_number(x[,f])
範例:
select to_number('123.74','999.99') from dual
結果:
123.74
說明:其中數值的格式f可以參考下表
引數 | 範例 | 說明 |
9 | 999 | 指定位置返回數位 |
. | 99.9 | 指定小數點的位置 |
, | 99,9 | 指定位置返回一個逗號 |
$ | $99.9 | 指定開頭返回一個美元符號 |
EEEE | 9.99EEEE | 指定科學計數法 |