IMG-LOGO

How to remove time from datetime in TSQL?

andy - 07 Aug, 2020 29756 Views 0 Comment

If you want to remove a time from datetime in TSQL, you have multiple options to do that. You can use CONVERT or CAST function by converting the datetime to date type only.

Here are the 3 options you can use.

DECLARE @CurrentDate DateTime = GetDate()
SELECT @CurrentDate As CurrentDateTime

--OPTION 1
SELECT CONVERT(DATE,@CurrentDate) AS Option1

--OPTION 2
SELECT CAST(@CurrentDate AS DATE) AS Option2

--OPTION 3
SELECT CONVERT(char(10), @CurrentDate,126) AS Option3

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 ...