SQL Note: Note 9 use subquery

Source: Internet
Author: User
Subquery is a query nested in other queries. 1. Use subqueries to filter SELECT statements. subqueries are always processed from the inside out. Example: 1SELECTcust_name, cust_contact2FROMCustomers3WHEREcust_idIN (SELECTcust_idorder_numIN (SELECTorder_num6FROM

Subquery is a query nested in other queries. 1. Use subqueries to filter SELECT statements. subqueries are always processed from the inside out. Example: 1 SELECT cust_name, cust_contact 2 FROM MERs 3 WHERE cust_id IN (SELECT cust_id order_num IN (SELECT order_num 6 FROM

Subquery is a query nested in other queries.

1. Filter Using subqueries

In SELECT statements, subqueries are always processed from the inside out. Example:

1 SELECT cust_name, cust_contact2 FROM Customers3 WHERE cust_id IN (SELECT cust_idorder_num IN (SELECT order_num6FROM OrderItems ));

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.