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:
insert into test values (1433.143049998981)
When I try:
declare
x number;
begin
select max into x from test;
dbms_output.put_line(x)...