我只想使用 SQL 查询从 DateTime 列中获取时间使用 SQL Server 2005 和 2008默认输出:
I want to get only Time from DateTime column using SQL query using SQL Server 2005 and 2008 Default output:
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:
SQL Server 2008:
SELECT cast(AttDate as time) [time]
FROM yourtable
早期版本:
SELECT convert(char(5), AttDate, 108) [time]
FROM yourtable
这篇关于如何从 SQL 中的 DateTime 格式中获取时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!