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;

你可能感兴趣的:(oracle,to_char,to_number)