我想从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

当前回答

试试这个:

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

其他回答

SQL Server 2008:

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

早期版本:

SELECT convert(char(5), AttDate, 108) [time]
FROM yourtable
select cast (as time(0))

这是一个很好的条款。例如:

(select cast(start_date as time(0))) AS 'START TIME'

假设Sql server

SELECT CONVERT(VARCHAR(8),GETDATE(),108)

select substr(to_char('DD/MM/RRRR HH:MM:SS'),11,19) from table_name;

输出:

05:11:26
05:11:24
05:11:24
Declare @date Datetime = '06/18/2021 14:24:31';
Select FORMAT(@date, 'h\:m tt', 'en-US') As Timey

输出:

2:24pm