When I'm adding some constraints, e.g:
create table Test(
IDTest int primary key,
Credit int not null constraint Credit check (Credit >= 0)
);
In this case isn't the not null in Credit redundant as I'm adding a constraint that Credit must be higher than 0?
CHECKconstraint. – biziclop Mar 4 '12 at 12:08