We have a table with a price field of type NUMBER(20,7) .. In TOAD, I do this:
update mytable set price = 1234567890123.1234567;
Then I select:
select price, to_char(price) from mytable PRICE TO_CHAR(PRICE) 1234567890123.12 "1234567890123.1234567"
Question: why does TOAD trim the result when displaying the NUMBER field (20.7)? Obviously, the data is printed there using to_char.
??
oracle numbers toad
Marcus leon
source share