This is a mirror of official site: http://jasper-net.blogspot.com/

Difference Between GETDATE and SYSDATETIME

| Thursday, June 17, 2010
Sometime something so simple skips our mind. I never knew the difference between GETDATE and SYSDATETIME. I just ran simple query as following and realized the difference.

SELECT GETDATE() fn_GetDate, SYSDATETIME() fn_SysDateTime

In case of GETDATE the precision is till miliseconds and in case of SYSDATETIME the precision is till nanoseconds.

Read more: Journey to SQL Authority with Pinal Dave

Posted via email from .NET Info

0 comments: