SQL statements-Nested queries

Source: Internet
Author: User

Nested queries mean that one query statement (select-from-where) query block can be nested within another query block's WHERE clause, called a nested query. Where the outer query is also called the parent query, the main query. An inner query is also called a subquery, from a query.

Nested queries work by processing internal queries, inner-outer processing, and the results of inner-layer queries using nested queries that are not only used by the parent query SELECT statement. It can also be used in INSERT, UPDATE, DELETE statements, or other subqueries.

the composition of a subquery

1. A standard select query that contains a standard selection list component.

2. A standard FROM clause that contains one or more table or view names.

3. An optional WHERE clause.

4. Optional GROUP BY clause.

5. Optional have clause.

syntax rules for sub-queries

1. Select queries for subqueries are always enclosed in parentheses.

2. Cannot include compute or FOR.BROWSE clauses.

3. If you specify the TOP clause at the same time, only the ORDER BY clause may be included.

4, sub-queries can be nested up to 32 layers. Individual queries may not support 32-tier nesting.

5. Any place where you can use an expression can use a subquery, as long as it returns a single value.

6. If a table appears only in the subquery and does not appear in the outer query, the columns of the table cannot be included in the output.

three, simple sub-query

Example:

From>from' Sun Quan ')     

The output is:

   

four, in nested query

The In keyword is used in the WHERE clause to determine whether the expression of a query is in a list of multiple values. Returns the record that satisfies the criteria in the in list.

Example:

From in from' wei ')     

The output is:

   

Five, some nested query

  1. Grammar

Some the logical operation symbol in SQL, the result is true if, in a series of comparisons, some values are true. The syntax of some is:

< expression  =|<>|! =|>|>=|! >|<|<=|! <}Some (sub-query    ) 

Example:

Fromsome – from' wei ')      

The output is:

  

vi. all nested queries

All is a logical operator in SQL, and if a series of comparisons are true, the result can be true.

  1. Grammar

< expression  =|<>|! =|>|>=|! >|<|<=|! <} All(sub-query) 

  Example:

From– from' wei ')     

The output is:

  

Seven, exists nested query

   1. Grammar

Exists is a logical operation symbol in SQL. True if the subquery has a result set returned. exists represents the meaning of "presence", and it finds only those records that meet the criteria. once the first matching record is found, the search stops immediately.

Exists sub-query        

Where a subquery is a first SELECT statement, the COMPUTE clause and the INTO keyword are not allowed.

exists means that the subquery has a result set returned. For example:

From the person exists--select 0 Select NULL returns the same result because all three subqueries have a result set returned, so always true SELECT * from the person executing as usual) 

However, if a subquery is returned with no result set due to a condition being added, the subject sentence is not executed:

From theexistsfrom--if no person_id record exists, the subquery does not return with the result set, and the main statement does not execute)   

SQL statements-Nested queries

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.