Oracle is prone to errors. logical comparison of null and''

Source: Internet
Author: User

Oracle is prone to errors. logical comparison of null and ''1. In Varchar2 format,'' is equivalent to null (no memory is allocated ). [SQL] the result of the statement 'aa from dual where ''is null exists in select.
2. logical judgment on null is not allowed in Oracle, and only is and is not can be used. [SQL] select 'has 'aa from dual where null = null; [SQL] select' has 'aa from dual where null <> null; [SQL] select 'has 'aa from dual where 'a' <> null; [SQL] select' has 'aa from dual where 'a' <> ''; the results of these four statements do not exist (note the third and fourth sentences); [SQL] select 'has 'aa from dual where null is null; [SQL] select 'aa from dual where 'aaa' is not null; the results of these two statements exist;
 

Related Article

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.