-1

I am very confused about this question .The thing is know that I can use COALESCE function for this but how ?Because there are 2 columns here ,State and Fax

1 Answer 1

0

You can use if null

select id,ifnull(state, '') as state ,ifnull(fax, '') as fax from customer
1
  • Yeah ,Thanks alot ,It really worked! Commented Jan 18, 2022 at 23:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.