我有十进制时间,我无法转换为时间。
DECLARE @hours decimal(5,3)
SELECT @hours = 20.30 //20 Hrs and 30 mins
我需要以下格式的输出
Hours 20.5 AS Time (data type)
下面是我的代码
select cast(hours /24 as datetime)
此代码给出的输出为 20.18 小时。但是我需要 20.5 小时
我有十进制时间,我无法转换为时间。
DECLARE @hours decimal(5,3)
SELECT @hours = 20.30 //20 Hrs and 30 mins
我需要以下格式的输出
Hours 20.5 AS Time (data type)
下面是我的代码
select cast(hours /24 as datetime)
此代码给出的输出为 20.18 小时。但是我需要 20.5 小时