gpt4 book ai didi

sql-server - 如何在 SQL 中从 DateTime 格式获取时间?

转载 作者:行者123 更新时间:2023-12-01 16:32:51 27 4
gpt4 key购买 nike

我只想使用 SQL 查询从 DateTime 列中获取时间使用 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 2008:

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

早期版本:

SELECT convert(char(5), AttDate, 108) [time]
FROM yourtable

关于sql-server - 如何在 SQL 中从 DateTime 格式获取时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7710449/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com