本文介绍了如何获得/返回空白结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好专家,
我现在差不多一个小时都在努力解决问题,我现在需要帮助。
我想在此查询中返回空格或null而不是0:
Hello Experts,
I am struggling with issue for almost an hour now and I now need a help.
I want to return a blank or null instead of 0 as a result from this query:
COALESCE(CONVERT(FLOAT,ROUND(SUM(
CASE WHEN [t].Berichtsperiode = @Periode1 THEN [t].[ABC Vorschau] END),0)),0)/1000 AS [ABC alt]
我的结果:0
预期结果:或null
My result : 0
Expected result: or null
推荐答案
这篇关于如何获得/返回空白结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!