Answers for "sql check constraint check date greater than"

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

Code answers related to "SQL"

Browse Popular Code Answers by Language