What should be the order of YEAR DAY MONTH in a where clause of tsql?
Select * from TABLE_NAME
WHERE
YEAR(COLUMN_NAME)=YEAR(GETDATE()) --1
and DAY(COLUMN_NAME)=DAY(GETDATE()) --2
and MONTH(COLUMN_NAME)=MONTH(GETDATE()) --3
Does the order improve the run time of query? how does a tsql execute this statement?