"=" And "" in Oracle

Source: Internet
Author: User

In Oracle, equal is =, not equal is! = And <>

 

1. 1 <> 1:

It is used to retrieve only structures without data. For example:

Create Table table_temp tablespace tbs_temp

Select * From table_ori where
1
<>1

Create a table table_temp with the same table_ori structure, but do not use data in table_ori.

 

2.1 = 1 is used to create dynamic SQL:

For example:

Lv_string = 'select tbl_name, tbl_desc from tbl_test where1 = 1' + condition;

When you select the query name 'abc ',

Condition = 'and tbl_name = ''abc ''';

However, when the user does not select a name for query, the condition is an empty string ''.

Lv_string = 'select tbl_name, tbl_desc from tbl_test where1 = 1 ',

No error occurs during running, which is equivalent to no restriction on name conditions. However, if there is no 1 = 1 condition

Lv_string = 'select tbl_name, tbl_desc from tbl_test where ';

In this way, an error is reported.

 

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.