Trying to add the following constraint using ALTER Statement ( with ADD CHECK):
ALTER TABLE Table_Name WITH NOCHECK
ADD CHECK (Column_Date <= Today)
Need to get the property to "Date should never be > Today's date" ..hope I worded that correctly
Thanks in advance for any advice!