Last updated 9 months ago
Returns a datetime2(7) value that contains the date and time of the computer on which the instance of SQL Server is running. ().
Code:
Result:
SYSDATETIME ( )
LOCALTIME()
SYSTEM_DATETIME | -----------------------+ 2022-05-06 12:08:05.501|
SYSTEM_DATETIME | -----------------------+ 211:09:14 |
SELECT SYSDATETIME ( ) AS SYSTEM_DATETIME;
SELECT LOCALTIME ( ) AS SYSTEM_DATETIME;