Wednesday, September 4, 2013

SQL Server - Get Only Time Part From DateTime Column in 2008 / 2005

Introduction

Here I will explain how to get only time from datetime in SQL Server 2008 / 2005 or SQL Query to get only time part from datetime column or field in SQL Server 2008 or 2005.

Description:

In previous posts I explained get only date from datetime in SQL ServerAdd row items as string with comma separated valuesException handling in SQL Server with try catchAdd identity property to existing column in sql serverupdate multiple tables using inner join in SQL Server many articles relating toSQL Server, asp.net, IIS, etc. Now I will explain how to get only time from datetime in SQL Server.  

If we want to get only time from datetime column we need to write the query like as shown below


DECLARE @DateTime DATETIME
SELECT @DateTime = GETDATE()
SELECT CONVERT(VARCHAR(10),@DateTime ,108) AS Time
If we run above query we will get only time from datetime field like as shown below

Output

Time

07:29:14
I hope it helps you to get only time from required datetime fields. Happy Coding………

No comments:

Post a Comment