我想从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
我想从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
当前回答
Declare @date Datetime = '06/18/2021 14:24:31';
Select FORMAT(@date, 'h\:m tt', 'en-US') As Timey
输出:
2:24pm
其他回答
要从datetime获取时间,我们可以使用
SELECT CONVERT(VARCHAR(20), GETDATE(), 114)
我经常使用这个脚本从DateTime获取时间:
SELECT CONVERT(VARCHAR(9),RIGHT(YOURCOLUMN_DATETIME,9),108) FROM YOURTABLE
MSSQL2012或以上版本
cast(dateadd(ms,datediff(ms, [StartDateTime], [StopDateTime]),0) as Time(0))
…或…
convert(time(0),dateadd(ms,datediff(ms, [StartDateTime], [StopDateTime]),0) )
select substr(to_char('DD/MM/RRRR HH:MM:SS'),11,19) from table_name;
输出:
05:11:26
05:11:24
05:11:24
试试这个
时间日期 Select cast(getdate() as time(0)) 时间到TinyTime 选择强制转换(orig_time作为时间(0))