An example describes Oracle All subqueries, and oracleall subqueries.

Source: Internet
Author: User

An example describes Oracle All subqueries, and oracleall subqueries.

Problem:
The employee names, jobs, and salaries that are higher than the salaries of all salespeople are queried.

Analysis:
ANY can represent ANY, but this problem requires higher salaries than ALL salespeople, so we need to use another keyword "ALL.
ALL is used with Relational operators to compare ALL elements in subqueries.

Code Demonstration: ALL subqueries

<Span style = "font-size: 18px;"> SQL> SELECT ENAME, JOB, SAL FROM EMP 2 WHERE SAL> ALL (SELECT SAL FROM EMP WHERE JOB = 'salesman ') 3/</span>


Code parsing:
> ALL: greater than ALL values in the subquery results, that is, greater than the maximum value in the subquery results.
<ALL indicates that the value is smaller than the minimum value.

Subqueries can also be operated using the IN and not in operators.

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.