The role of where 1=1 in SQL statements

Source: Internet
Author: User

1=1 forever, 1<>1 forever false.

The use of 1<>1:
For applications where the structure is not fetching data
For example:
CREATE TABLE Table_temp tablespace tbs_temp as
SELECT * FROM Table_ori where 1<>1
Build a table table_temp with the same table_ori structure, but don't table_ori the data. (in addition to the table structure, other structures are the same)

The use of 1=1:
for dynamic SQL
For example:

lv_string: = ' Select Tbl_name,tbl_desc from tbl_test where 1=1 ' | | L_condition;
When the user selects the name of the query ' abc ', L_condition: = ' and tbl_name = ' abc ', but when the user does not have

When you select a name query, L_condition is empty so lv_string = ' Select Tbl_name,tbl_desc from Tbl_test

Where 1=1 ', run also without error, equivalent to no restriction on the name condition. But if there is no 1=1 condition, then lv_string =

' Select Tbl_name,tbl_desc from Tbl_test where '; this will cause an error.

In addition to 1=1 or 1<>1, the same conditions of eternal and eternal leave.

The role of where 1=1 in SQL statements

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.