我想从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
当前回答
你可以用这个:
SELECT CONVERT(VARCHAR(5), GETDATE(),8)
输出:
08:24
其他回答
select convert(char(5), tbl_CustomerBooking.CheckInTime, 108) AS [time]
from tbl_CustomerBooking
要从datetime获取时间,我们可以使用
SELECT CONVERT(VARCHAR(20), GETDATE(), 114)
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 AttDate,convert(char(5), AttDate, 108)[时间]从你的表名
SQL Server 2008:
SELECT cast(AttDate as time) [time]
FROM yourtable
早期版本:
SELECT convert(char(5), AttDate, 108) [time]
FROM yourtable