IFNULL, NULLIF, and ISNULL usage in MySql _ MySQL

Source: Internet
Author: User
Usage of IFNULL, NULLIF, and ISNULL in MySql bitsCN.com
In MySql, IFNULL, NULLIF, and ISNULL are used in MySql to find that isnull in mysql is a little different from that in MSSQL. now, let's briefly summarize: isnull and ifnull in MySql, the usage of nullif is as follows: isnull (expr): if expr is null, the return value of isnull () is 1; otherwise, the return value is 0. Mysql> select isnull (1 + 1);-> 0 mysql> select isnull (1/0);-> 1 use = to compare null values is usually incorrect. The isnull () function has the same features as the is null comparison operator. See the description of is null. IFNULL (expr1, expr2) usage:
If expr1 is not NULL, the returned value of IFNULL () is expr1; otherwise, the returned value is expr2. The returned value of IFNULL () is a number or string, depending on the context in which it is used. Mysql> select ifnull (1/0);-> 1 mysql> select ifnull (NULL, 10);-> 10 mysql> select ifnull (, 10 ); -> 10 mysql> select ifnull (1/0, 'yes');-> 'yes'
The default result value of IFNULL (expr1, expr2) is one of the two expressions that is more "common" in the order of STRING, REAL, or INTEGER. Assume that an expression-based TABLE, or MySQL must store the returned value of IFNULL () in a temporary TABLE in Internal memory: create table tmp select ifnull (1, 'test') AS test; in this example, the test column type is CHAR (4 ). NULLIF (expr1, expr2) usage: if expr1 = expr2 is true, the return value is NULL; otherwise, the return value is expr1. This is the same as case when expr1 = expr2 then null else expr1 END.
Mysql> select nullif ();-> NULL mysql> select nullif ();-> 1 if the parameters are not equal, the value obtained by MySQL twice is expr1. BitsCN.com

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.