MySQL NULLIF() Function Boolean Value Example
Open your MySQL Query Editor then copy & paste the below code to get the value of NULLIF() MySQL Function Boolean Value Example:
SELECT NULLIF(TRUE,TRUE), NULLIF(FALSE,FALSE), NULLIF(TRUE,FALSE), NULLIF(FALSE,TRUE) ; -- MySQL NULLIF() Function Deals With Two Expressions -- -- IF [Expression1/Value1] equals to [Expression2/Value2] NULLIF() Function returns NULL -- ELSE NULLIF() Function returns [Expression1/Value1]
-- is comment in MySQL
-- in fact it is comment in MSSQL and Oracle as well
MySQL NULLIF() Function Boolean Value Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL NULLIF() Nested Function Example
- MySQL NULLIF() Function Datetime Value Example
- MySQL NULLIF() Function String Value Example
- MySQL NULLIF() Function Number Value Example
- MySQL NULLIF() Function NULL Value Example
- MySQL IFNULL() Function Datetime Example
- MySQL Stored Procedure: CREATE TABLE SELECT... Example
- MySQL Stored Procedure Function: How to Drop a Function Example
- Parentheses in SQL Command MySQL Example
- Aliase column name in SQL Command MySQL Example

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