Oracle Database 19c Enterprise Edition (same error for 12c version, Win/Linux)
PL/SQL Developer
Version 14.0.2.1969 (64 bit)
Windows 10 Build 19041
PL/SQL Developer
Version 14.0.2.1969 (64 bit)
Windows 10 Build 19041
SQL:
create table tab(n number(28,10));
insert into tab values (12345678901234567);
commit;
select n from tab; --displays wrong result: 12345678901234602,0000000000
select to_char(n) from tab; --displays correct result: 12345678901234567