SQL> SQL> create table salgrades 2 ( lowerlimit NUMBER(6,2) constraint S_LOWER_NN 3 not null 4 constraint S_LOWER_CHK 5 check (lowerlimit >= 0) 6 , constraint S_LO_UP_CHK check 7 (lowerlimit <= 10) 8 ) ; Table created. SQL> SQL> SQL> drop table salgrades; Table dropped.