MySQL NULLIF() Function String Value Example
Open your MySQL Query Editor then copy & paste the below code to get the value of NULLIF() MySQL Function String Value Example:
SELECT NULLIF('Expression1','Expression2'), NULLIF('String1','String1'), NULLIF('Expression1',NULL), NULLIF('String1','Expression2');
-- 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 String Value Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL NULLIF() Nested Function Example
- MySQL NULLIF() Function Datetime Value Example
- MySQL NULLIF() Function Number Value Example
- MySQL NULLIF() Function Boolean Value Example
- MySQL NULLIF() Function NULL Value Example
- MySQL IFNULL() Function Datetime Example
- MSSQL PRINT Like Function in MySQL Example
- How to Find MySQL Stored Procedure or Function Information
- MySQL Sub-Query: INSERT INTO SELECT *... Example
- MySQL Sub-Query: CREATE TABLE SELECT... Example

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