我正在使用 SQL 报告生成器并希望在周转时间内计算百分比
我的桌子看起来像
Name count within tat
jeff 1 1
jeff 1 0
jeff 1 1
jeff 1 0
我希望它看起来像这样。
Name count within tat
jeff 4 2 (50%)
我用来在 tat 内计算的代码是
case
when (convert(Decimal(10,2),
(cast(datediff(minute,
(CAST(RequestDate AS DATETIME) + CAST(RequestTime AS DATETIME)),
REQUEST_TESTLINES.AuthDateTime)as float)/60/24))) >
EXP_TAT then '1' else '0' end as [withintat]
我怎样才能总结这一列?