An example of OracleAny subquery

Source: Internet
Author: User

An example of OracleAny subquery

Problem:
Query the names, jobs, and salaries of employees with lower salaries than any salesperson ("SALESMAN") in the Emp table.
Analysis:
The salesperson has many records in the Emp table. The salaries of each person are not equal. If the condition "the salary is lower than the salary of any employee" is returned, the condition "the highest salary is lower" is returned.
If the subquery is used, multiple records are returned in the subquery. An error occurs when running with common Relational operators (>, <, and so on.
In this case, you need to use the keyword "ANY. ANY is placed behind the comparison operator, indicating "ANY.

Code Demonstration: ANY subquery

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


Code parsing:
<Any: it is smaller than any value in the subquery results, that is, it is smaller than the maximum value in the subquery results. Similarly,> any indicates it is bigger than the smallest value in the subquery results.

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.