When I add some restrictions, for example:
create table Test( IDTest int primary key, Credit int not null constraint Credit check (Credit >= 0) );
In this case, the not null
in Credit
redundancy is absent, since I add a restriction that Credit
should be greater than 0?
RSort source share