An understanding of null in oracle SQL statements

Source: Internet
Author: User


An understanding of null usage in oracle SQL statements recently found some problems with null usage when writing pl/SQL package. The following is my understanding and may be incorrect.
You are welcome to correct. Www.2cto.com SQL> set serveroutput onSQL> begin 2 if null <> 1 then 3 dbms_output.put_line ('aaaaa'); 4 else 5 dbms_output.put_line ('bbbbbb'); 6 end if; 7 end; 8/bbbbbb SQL> begin 2 if not null <> 1 then 3 dbms_output.put_line ('aaaaa'); 4 else 5 dbms_output.put_line ('bbbbbbbb'); 6 end if; 7 end; 8/bbbbbb From the above we can see that when null is compared with the actual value, both = and <> return false, even if the front side is not,
The returned value is also false. Therefore, when writing an SQL statement in the future, if null is used, try to use the is or is not if you are not sure.
Method, even if the code is cumbersome. I don't know whether it is true. please correct me.

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.