我想从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
当前回答
SQL Server 2012:
Select TRY_CONVERT(TIME, myDateTimeColumn) from myTable;
就我个人而言,我更喜欢TRY_CONVERT()而不是CONVERT()。主要区别:如果强制转换失败,TRY_CONVERT()将返回NULL,而CONVERT()将引发错误。
其他回答
假设Sql server
SELECT CONVERT(VARCHAR(8),GETDATE(),108)
MSSQL2012或以上版本
cast(dateadd(ms,datediff(ms, [StartDateTime], [StopDateTime]),0) as Time(0))
…或…
convert(time(0),dateadd(ms,datediff(ms, [StartDateTime], [StopDateTime]),0) )
SQL Server 2008:
SELECT cast(AttDate as time) [time]
FROM yourtable
早期版本:
SELECT convert(char(5), AttDate, 108) [time]
FROM yourtable
试试这个
时间日期 Select cast(getdate() as time(0)) 时间到TinyTime 选择强制转换(orig_time作为时间(0))
select AttDate,convert(char(5), AttDate, 108)[时间]从你的表名