sql create constraint check date greater than code example
Example: check constraint to check if date greater than todays date
ALTER TABLE donation ADD CONSTRAINT
chk_date CHECK (ddate >= CURRENT_DATE);
ALTER TABLE donation ADD CONSTRAINT
chk_date CHECK (ddate >= CURRENT_DATE);