在一列 oracle 中获取非空值

Fetch not null values in one column oracle

下面是我的查询

SELECT * FROM companystatus where company_name='Fifth Borrower' ;

我想要一个借款人的单行非空值。

预期输出

聚合通常有助于满足此类要求,例如

select 
  company_code,
  company_name,
  max(c2015),
  max(c2016),
  max(c2017)
from companystatus
where company_name = 'Fifth Borrower'
group by company_code,
         company_name