In MSSQL Server, we make queries for null values like below:
SELECT name, ISNULL(about, ''), contact FROM `user_profile` WHERE userid=1
But when I am trying to do the same with MYSQL then it gives error.
What is the logical and easy way to handle NULL values in php/mysql scenario.
Thanks