我必须计算小时数和天数(完美计算)。我的问题是我不知道水晶报告的查询,但我已经在我的医院项目账单上搜索了计算天数(如 5 天和 6 小时)后的小时数的方法..
我搜索的方法是这个 Sql Query.....告诉我如何将它部署到我的水晶报表查询
declare @firstdate int = (select DATEDIFF (hh,AdmitPatientBed.StartDate , AdmitPatientBed.EndDate) from AdmitPatientBed where APBId = 4)
declare @seconddate int = (select DATEDIFF (Day, StartDate,AdmitPatientBed.EndDate)*24 from AdmitPatientBed where APBId = 4)
select @firstdate-@seconddate as hours