in php from mysql I get an array; some elements contain NULL; in java, the script throws null text onto the page
how to replace null with 'no' in an array?
in php from mysql I get an array; some elements contain NULL; in java, the script throws null text onto the page
how to replace null with 'no' in an array?
Source: https://ru.stackoverflow.com/questions/809084/
All Articles
COALESCE(`field`, 'нет') AS `field`- Akina