MySQL isnull() Function Example
Open your MySQL Query Editor then copy & paste the below code to get the value of isnull() MySQL Function Example:
select isnull(0), isnull(-10), isnull(NULL*10);
MySQL isnull() Function:
Check whether the given value or expression is null or not
returns 1 if null and 0 if non-null value
MySQL isnull() Function Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL coalesce() Function Example
- MySQL strcmp() Function Number Value Example
- MySQL strcmp() Function NULL Value Example
- MySQL strcmp() Function Example
- MySQL interval() Function Example
- MySQL IF() Function Boolean Value Example
- MySQL Stored Procedure: Variable Example
- MySQL Stored Procedure: Batch Salary Increment Example
- Operator precedence in SQL Command MySQL Example
- Arithmetic operators in SQL Command MySQL Example

No comments:
Post a Comment
leave your comments here..