IMG-LOGO

How to get UTC date in TSQL?

andy - 06 Aug, 2020 1575 Views 0 Comment

What is UTC date?

UTC is the world's time standard. It is known as a coordinated universal time used as a basis for civil time today.

To get the UTC date in TSQL. There is a built-in function called GETUTCDATE. If you try to run the following SQL query.

SELECT GETUTCDATE();

If you want to remove the time, you can use the following conversion function.

SELECT CONVERT(DATE, GETUTCDATE(), 101)

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

How to restore database using SQL query in TSQL?

If you have a database backup bak file extension and want to restore it using SQL query You can use the built in RESTORE DATABASE function Remember in order to be able to restore a database successfully You need to ...

How to get all table sizes in TSQL?

To get the information about how much space or size used by tables You can retrieve the size information by linking multiple tables in sys tables There are two tables that hold this information The first one is the sys ...