Answers for "sql create constraint check date greater than"

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 "sql create constraint check date greater than"

Code answers related to "SQL"

Browse Popular Code Answers by Language