i want to add Constraint in table but before adding i have to check is that Constraint existing in table or not like
IF NOT EXISTS(some condition)
ADD CONSTRAINT CHK_DATES_VALID
CHECK ((DATE_NORMAL != 'n' AND DATE_NORMAL != 'N') OR
(DATE_SCHEDULED != 'n' AND DATE_SCHEDULED != 'N') OR
(DATE_WINDOW != 'n' AND DATE_WINDOW != 'N'));
before adding constraint 'CHK_DATES_VALID' i need to check is that constrain existing or not please guide me to make this condation .