Description:
In this example
we explain that how to get only Time from Date Time column in SQL Server. Or
SQL Query to get only Time from Date Time column. Or how to get only Time from
select query of SQL Server from Date Time column.
Below is the
SQL Query to get only Time from date time column of the table in Sql Server.
SELECT
(getdate()),substring(CONVERT(VARCHAR, GETDATE(), 108),0,6) AS Time
0 comments:
Post a Comment