I have problem with display numeric values in SQL Window, Test Window and Report Window.
I have table test with column:
max number(20,12)
nd execute:
When I try:
everything look good.
But
in SQL Window, Test Window and Report Window give me:
Suggestion: maby PLSQL Developer include comma into precision???
I have table test with column:
max number(20,12)
nd execute:
Code:
insert into test values (1433.143049998981)
Code:
declare
x number;
begin
select max into x from test;
dbms_output.put_line(x);
end;
But
Code:
select max from test;
Code:
max
---
1433,143049998980