I was reviewing some SQL queries and I saw a select statement that looked like this
SELECT *
FROM dbo.mytable
WHERE (dbo.mytable.[Date] < { fn NOW() })
What is the purpose of using a WHERE statement like this?
Wouldn't be easier to use a simple GETDATE()?