Answers for "check constraint to check if date greater than todays date"

SQL
1

check constraint to check if date greater than todays date

ALTER TABLE donation ADD CONSTRAINT 
 chk_date CHECK (ddate >= CURRENT_DATE);
Posted by: Guest on May-19-2020

Code answers related to "check constraint to check if date greater than todays date"

Code answers related to "SQL"

Browse Popular Code Answers by Language