MySQL IF() Function NULL Example
Open your MySQL Query Editor then copy & paste the below code to get the value of IF() MySQL Function NULL value Example:
SELECT IF(NULL,TRUE,FALSE), IF(NULL,10,20), IF(NULL,'Value2','Value3'), IF(NULL,NOW(),NOW()-5) ; -- SELECT IF(NULL > NULL, 'Expression2', 'Expression3') AS Results; -- SELECT IF(NULL < NULL, 'Expression2', 'Expression3') AS Results; -- SELECT IF(NULL != NULL, 'Expression2', 'Expression3') AS Results; -- MySQL IF() Function Compares Three Expressions -- -- if [Expression1/Value1] evaluates to true, returns [Expression2/Value2] -- else [Expression3/Value3]
-- is comment in MySQL
-- in fact it is comment in MSSQL and Oracle as well
MySQL IF() Function NULL Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL IF() Function Boolean Value Example
- MySQL IF() Nested Function Example
- MySQL IF() Function Datetime Value Example
- MySQL IF() Function String Value Example
- MySQL IF() Function Number Value Example
- MySQL IFNULL() Function NULL 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..