Date and Time Functions
Learn about date and time functions.
We'll cover the following...
All applications work with date and time at some point. Fortunately, we do not have to reinvent the wheel and write our own functions when working with date and time in MS SQL Server. T-SQL has a number of functions for this purpose.
Current date and time
We can check the current date and time by looking at the system clock. The GETDATE()
function returns an object of type DATETIME
, which will show the local date and time according to the system clock:
SELECT GETDATE()
In the output, we see the current date and time of the system that hosts our MS SQL Server instance.
If an application needs to support multiple time zones, it is better to store dates and times in UTC instead of the local time zone. The GETUTCDATE()
returns the current date and time in UTC:
SELECT GETUTCDATE()
Now, we see the UTC ...