从客户 table 获取所有结果。用空字符串替换状态和传真列中的空值。如何解决这个查询?

Get all results from the customer table. Replace null values in the state and fax columns with an empty string. How to solve this query?

我对这个问题很困惑。我知道我可以为此使用 COALESCE 函数,但是怎么做呢?因为这里有 2 列,State 和 Fax

如果null可以使用

select id,ifnull(state, '') as state ,ifnull(fax, '') as fax from customer