I have problem with IFNULL function used within WHERE IN condition:
SELECT provider_id FROM provider WHERE provider_id IN ( IFNULL("131, 132",'999') )
I tried all quoting alternatives like:
SELECT provider_id FROM provider WHERE provider_id IN ( IFNULL("'131', '132'", '999') )
But can not get this done with PHP.
Could you please suggest how to correctly format the multi-value parameter within the IFNULL function?
First of all your question is using
IFNULL
on not null values which makes no sense.Secondly
IFNULL
would return a single value, it is unnecessary to do anprovider_id IN (...)
for a single value since it would be the same asprovided_id=...
Lastly, if you want to check if a PHP variable is null then have PHP deal with it.
Then you can make the query: