1. 程式人生 > >oracle to_char 格式化數值

oracle to_char 格式化數值

oracle to_char 格式化數值

FM9999990.009:允許小數點左邊最大正數為7位,最少1位0,小數點右邊最少2位,最多3位,且在第4位進行四捨五入。

select 0.1234 as a0,
       to_char(0.1234) as a1,
       to_char(0.1234, 'FM9999990.009') as a2,
       to_char(1234.1234, 'FM9999990.009') as a3,
       to_char(1234.1235, 'FM9999990.009') as a4
  from dual;

執行結果如下:
在這裡插入圖片描述