Hi, I need to store a dollar value for NUMBER(17,6), but when I use Decimal(17,6), I keep getting syntax error.
How can I store a number with 17 significant digits w/6 numbers after the decimal?
Printable View
Hi, I need to store a dollar value for NUMBER(17,6), but when I use Decimal(17,6), I keep getting syntax error.
How can I store a number with 17 significant digits w/6 numbers after the decimal?
Hello
I think you must use
NUMERIC or NUM or DECIMAL of DEC
NUMERIC(17,6) for 99999999999,999999
NUMERIC (23,6) for 99999999999999999,999999
Greetings
ld_be