Evaluating GETDATE twice in a statement - will it always evaluate to be the same?

Viewed 831

suppose

isnull(some_column, getdate()) >= getdate()

where logic is if some_column is null this expression should always be true. However will this always be so (since between two evaluations of getdate() some time has passed and they won't be equal) ?

5 Answers
Related