How to handle NULL values in mysql/php?

Iamok

New Member
In MSSQL Server, we make queries for null values like below:\[code\]SELECT name, ISNULL(about, ''), contact FROM `user_profile` WHERE userid=1\[/code\]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
 
Back
Top