Answers for "how to add a constraint when comparing date with current_date in sql"

SQL
0

sql constraint to check date less than current date

ALTER TABLE yourTable
	ADD CONSTRAINT yourDateTimeColumn CHECK (yourDateTimeColumn < GetDate() );
Posted by: Guest on February-07-2021

Code answers related to "how to add a constraint when comparing date with current_date in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language