I have a SELECT statement that uses GETDATE() for two different column values. I\'m wondering if by the nature of things those two separate functi
SELECT
GETDATE()
Yes, they will return the same date and time, to the millisecond.
SELECT GETDATE(), GETDATE()
Returns
2010-10-29 15:34:06.353 2010-10-29 15:34:06.353
I have tested this with 4000, GETDATE() and they all return the same.