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
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
Copyright © 2021 Jogjafile Inc.
You have to do this one column at a time.
Functions do not generally take
*
as an argument.