Answers for "sql query check if current datetime is less than datetime column"

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 query check if current datetime is less than datetime column"

Code answers related to "SQL"

Browse Popular Code Answers by Language