MySQL IFNULL() Function Boolean Value Example
Open your MySQL Query Editor then copy & paste the below code to get the value of IFNULL() MySQL Boolean Value Example:
SELECT IFNULL(TRUE,'Not NULL'), IFNULL(FALSE,'Not NULL'), IFNULL(NULL,'Not NULL'); -- MySQL IFNULL() Function Deals With Two Expressions -- -- if [Expression1/Value1] evaluates to NULL, returns [Expression2/Value2] -- else [Expression1/Value1]
-- is comment in MySQL
-- in fact it is comment in MSSQL and Oracle as well
MySQL IFNULL() Function Boolean Value Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL IFNULL() Function Datetime Example
- MySQL IFNULL() Nested Function Example
- MySQL IFNULL() Function String Example
- MySQL IFNULL() Function Number Example
- MySQL IFNULL() Function NULL Value Example
- MySQL NULLIF() Function NULL Value Example
- MySQL Stored Procedure Function: How to Drop a Function Example
- MySQL sample database script: Create Database using SQL Statement Example
- MySQL Sub-Query: INSERT INTO SELECT... Example
- MySQL Sub-Query: INSERT INTO SELECT *... Example

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