oracle to_number to_char

--9 表示十進制有效位數 SELECT to_char(123.45, '$9999.9'), to_char(123.45, 'L9999.9')FROM dual; --xx表示須要轉換的數據是16進制 select to_number('10','xx') from dual; --L 在數字前加本地貨幣符號 select to_number('10','Lxxx') from dual; --EEEE 科學計數法 select to_char(1345,'9.9EEEE') from dual; --V 把原數字乘以10的N次方(N爲V後面的位數) select to_char(1001,'9999V9') from dual;
相關文章
相關標籤/搜索