Oracle中to_char()函數的用法

來源:互聯網
上載者:User
Oracle中to_char()函數的用法

轉:http://blog.csdn.net/jiangnan2014/article/details/16908585

(1)用作日期轉換:

to_char(date,'格式');

select to_date('2005-01-01 ','yyyy-MM-dd') from dual;select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss') from dual;

(2)處理數字:

to_char(number,'格式');

select to_char(88877) from dual;select to_char(1234567890,'099999999999999')  from dual;select to_char(12345678,'999,999,999,999')  from dual;select to_char(123456,'99.999')  from dual;select to_char(1234567890,'999,999,999,999.9999')  from dual;

(3)to_char(salary,'$99,99');

 select TO_CHAR(123,'$99,999.9') from dual;

(4)用於進位轉換:將10進位轉換為16進位;

select to_char(4567,'xxxx') from dual;select to_char(123,'xxx') from dual;

例子:

 1 //// to_char 例子  2 輸入    輸出 3 to_char(now(),'Day, HH12:MI:SS')    'Tuesday , 05:39:18' 4 to_char(now(),'FMDay, HH12:MI:SS')    'Tuesday, 05:39:18' 5 to_char(-0.1,'99.99')    ' -.10' 6 to_char(-0.1,'FM9.99')    '-.1' 7 to_char(0.1,'0.9')    ' 0.1' 8 to_char(12,'9990999.9')    ' 0012.0' 9 to_char(12,'FM9990999.9')    '0012'10 to_char(485,'999')    ' 485'11 to_char(-485,'999')    '-485'12 to_char(485,'9 9 9')    ' 4 8 5'13 to_char(1485,'9,999')    ' 1,485'14 to_char(1485,'9G999')    ' 1 485'15 to_char(148.5,'999.999')    ' 148.500'16 to_char(148.5,'999D999')    ' 148,500'17 to_char(3148.5,'9G999D999')    ' 3 148,500'18 to_char(-485,'999S')    '485-'19 to_char(-485,'999MI')    '485-'20 to_char(485,'999MI')    '485'21 to_char(485,'PL999')    '+485'22 to_char(485,'SG999')    '+485'23 to_char(-485,'SG999')    '-485'24 to_char(-485,'9SG99')    '4-85'25 to_char(-485,'999PR')    '<485>'26 to_char(485,'L999')    'DM 48527 to_char(485,'RN')    ' CDLXXXV'28 to_char(485,'FMRN')    'CDLXXXV'29 to_char(5.2,'FMRN')    V30 to_char(482,'999th')    ' 482nd'31 to_char(485, '"Good number:"999')    'Good number: 485'32 to_char(485.8,'"Pre-decimal:"999" Post-decimal:" .999')    'Pre-decimal: 485 Post-decimal: .800'33 to_char(12,'99V999')    ' 12000'34 to_char(12.4,'99V999')    ' 12400'35 to_char(12.45, '99V9')    ' 125'

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.