I am very confused about this question. The problem is that I know I can use the COALESCE function, but how? Because there are two columns here, State and Fax.
P粉2620731762024-04-02 10:53:13
You can use if null
select id,ifnull(state, '') as state ,ifnull(fax, '') as fax from customer