mysql select all - check all columns for null with ifnull

1.3k Views Asked by At

I want to return all columns, and anywhere there's a NULL to say 'hey' instead.

But this doesn't work

SELECT IFNULL(*, 'hey') FROM $table
1

There are 1 best solutions below

0
On BEST ANSWER

You have to do this one column at a time.

Functions do not generally take * as an argument.

select ifnull(col1, 'hey'), . . .