我想从DateTime列使用SQL查询只得到时间 使用SQL Server 2005和2008 默认的输出:

AttDate                   
==
2011-02-09 13:09:00    
2011-02-09 14:10:00    

我想要这样的输出:

AttDate                Time 
==
2011-02-09 13:09:00    13:09
2011-02-09 14:10:00    14:10

当前回答

SQL Server 2008:

SELECT cast(AttDate as time) [time]
FROM yourtable

早期版本:

SELECT convert(char(5), AttDate, 108) [time]
FROM yourtable

其他回答

select AttDate,convert(char(5), AttDate, 108)[时间]从你的表名

试试这个:

select  convert(nvarchar,CAST(getdate()as time),100)

试试这个,它会起作用的:

CONVERT(VARCHAR(8),DATETIME,114)

供您参考。

SQL Server 2008+有一个“时间”数据类型

SELECT 
    ..., CAST(MyDateTimeCol AS time)
FROM
   ...

对于旧版本,没有varchar转换

SELECT 
    ..., DATEADD(dd, DATEDIFF(dd, MyDateTimeCol, 0), MyDateTimeCol)
FROM
   ...

MSSQL2012或以上版本

cast(dateadd(ms,datediff(ms, [StartDateTime], [StopDateTime]),0) as Time(0))

…或…

convert(time(0),dateadd(ms,datediff(ms, [StartDateTime], [StopDateTime]),0) )