Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法在数据库中选择数据库中的数字作为十进制 .00。
我尝试使用此查询
SELECT to_char(lnamt, '99.00') FROM ln01mast
但输出显示######。
像这样试试
select to_char(12345678,'999999999999.99') from dual;
请参阅格式模型以获得更多理解。
这也是:
SELECT to_char(123,'FM99999999.00') FROM dual;
(将删除尾随空格)。
您的号码太大,格式不适合。只需使用更多的九:
SELECT to_char(lnamt, '99999999999999.00') FROM ln01mast