Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
Notice: some (MySQL...) SQL engines silently ignore the CHECK constraint. – biziclop Mar 4 '12 at 12:08

1 Answer

up vote 8 down vote accepted

No, it is not redundant.

A CHECK constraint accepts a value if the condition is not FALSE, so whether it is TRUE or UNKNOWN.

If you allow Nulls in your column, then a NULL >= 0 will evaluate to UNKNOWN and will pass the test.

share|improve this answer
Thank you, makes all the sense :) – RSort Mar 4 '12 at 12:31
@RSort: Consider the alternative: if it were a requirement that the condition had to be TRUE then every constraint involving nullable columns would have to explicitly test for nulls and that would be a lot of noise and pain! – onedaywhen Mar 5 '12 at 10:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.