我已经开发了一个查询,在前三列的结果中,我得到NULL。我怎么把它换成0呢?

Select c.rundate, 
  sum(case when c.runstatus = 'Succeeded' then 1 end) as Succeeded, 
  sum(case when c.runstatus = 'Failed' then 1 end) as Failed, 
  sum(case when c.runstatus = 'Cancelled' then 1 end) as Cancelled, 
  count(*) as Totalrun from
  (    Select a.name,case when b.run_status=0 Then 'Failed' when b.run_status=1 Then 'Succeeded'
  when b.run_status=2 Then 'Retry' Else 'Cancelled' End as Runstatus,
  ---cast(run_date as datetime)
              cast(substring(convert(varchar(8),run_date),1,4)+'/'+substring(convert(varchar(8),run_date),5,2)+'/'          +substring(convert(varchar(8),run_date),7,2) as Datetime) as RunDate
  from msdb.dbo.sysjobs as a(nolock) inner join msdb.dbo.sysjobhistory as b(nolock) 
  on a.job_id=b.job_id
  where a.name='AI'
  and b.step_id=0) as c
  group by 
  c.rundate

当前回答

当你想用其他东西替换一个可能为空的列时,使用IsNull。

SELECT ISNULL(myColumn, 0 ) FROM myTable

这将在myColumn中放置一个0,如果它首先是空的。

其他回答

如果你正在使用Presto, AWS Athena等,没有ISNULL()函数。相反,使用:

SELECT COALESCE(myColumn, 0 ) FROM myTable
sum(case when c.runstatus = 'Succeeded' then 1 else 0 end) as Succeeded, 
sum(case when c.runstatus = 'Failed' then 1 else 0 end) as Failed, 
sum(case when c.runstatus = 'Cancelled' then 1 else 0 end) as Cancelled, 

这里的问题是,如果没有else语句,当运行状态不是列描述中声明的状态时,您一定会收到一个Null。将任何东西添加到Null都会导致Null,这就是这个查询的问题。

好运!

对于常规SQL, ISNULL(item)只能接受一个参数,因此90%的解决方案都不起作用。

我重新利用@Krishna Chavali的回答来说明:

(CASE WHEN (NOT ISNULL(column_name)) THEN column_name ELSE 0 END) AS ColumnName

如果column_name不为空,则返回该值;如果column_name为空,则返回0。

合并:

coalesce(column_name,0)

虽然,当条件为1时求和,你可以很容易地将sum更改为count -例如:

count(case when c.runstatus = 'Succeeded' then 1 end) as Succeeded,

(Count(null)返回0,而sum(null)返回null。)

一个简单的方法是

UPDATE tbl_name SET fild_name = value WHERE fild_name IS NULL