vote up 0 vote down star

in a table two of columns are billable(bit),billabledate(datetime).i want billable date to be not null if billable is not null.

flag

65% accept rate

3 Answers

vote up 2 vote down check

Add a check constraint:

CHECK (billable is not null and billabledate is not null) OR (billable is null)

link|flag
vote up 2 vote down

You need a Check Constraint

ALTER TABLE dbo.Table WITH NOCHECK
ADD CONSTRAINT CK_Table_BusinessRule CHECK (Billable IS NOT NULL AND BillableDate IS NOT NULL)

http://msdn.microsoft.com/en-us/library/ms179491(SQL.90).aspx

link|flag
vote up 0 vote down

I'd try adding a trigger to the table, on after insert and after update, to enforce that constraint. Check the billable value, and block insert/update in case it is not null and the billabledate is null.

link|flag

Your Answer

Get an OpenID
or

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