Oracle SQL Tutorial
NUMBER Represents Numeric value with optional scale value
NUMBER[p[,s]) represents number with precision and scale. p for precision,s for scale.
NUMBER(3) represents whole numbers ranging from -999 to 999. or with zero scale.
create table test( id number(3) ) Insert into table values(100); Insert into table values(999); Insert into table values(-900);
If you don't specify precision default precision is 64.
ADS