Instead of NULL how do I show `0` in result with SELECT statement sql?

前端 未结 4 1634
深忆病人
深忆病人 2020-12-05 07:47

I have one stored procedure which is giving me an output (I stored it in a #temp table) and that output I\'m passing to another scalar function.

4条回答
  •  既然无缘
    2020-12-05 08:05

    Use coalesce():

    select  coalesce(Eprice, 0) as Eprice
    

    In SQL Server only, you can save two characters with isnull():

    select  isnull(Eprice, 0) as Eprice
    

提交回复
热议问题