gpt4 book ai didi

sql-server-2008 - 从时间数据类型和 : is there a millisecond-less time datatype? 中删除毫秒

转载 作者:行者123 更新时间:2023-12-04 07:14:15 25 4
gpt4 key购买 nike

我在有关如何从 MS SQL 中的日期时间数据类型中删除毫秒的问题中看到过帖子。

但是时间数据类型呢——从时间数据类型中删除毫秒的最简单方法是什么?

另外:MS SQL (2008) 中是否有不包括毫秒的时间数据类型?

谢谢大家!

最佳答案

One of the easiest way to remove milliseconds is:


SELECT CONVERT(VARCHAR, GETDATE(), 20) 

And if you dont want to include milliseconds:


TIME(0) will help

Example


CAST(DATEADD(second, SUM(hora), '00:00:00') AS time(0))

关于sql-server-2008 - 从时间数据类型和 : is there a millisecond-less time datatype? 中删除毫秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15264397/

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