A Guide to SQL
A Guide to SQL
9th Edition
ISBN: 9781111527273
Author: Philip J. Pratt
Publisher: Course Technology Ptr
Question
Book Icon
Chapter 5, Problem 15CAT
Program Plan Intro

“ANY” operator:

The operator “ANY” is used with “WHERE” or “HAVING” clause. If “ANY” operator is used in a subquery, then the condition returns true if it satisfies any of the values produced by the subquery.

Syntax:

SELECT column_Name(s) FROM table_Name WHERE column_Name ANY (SELECT column_Name FROM table_Name WHERE condition);

Blurred answer
Students have asked these similar questions
You will be using the Colonial Adventure Tours database. Find the trip ID and trip name for each trip whose maximum group size is greater than the maximum group size of at least one trip that has the type Biking.
Show all name and phone numbers of students and the type of donation they received including any unmatched student.table name;StudentDonationVolunteer
Insert into the LARGE_PROPERTY table the office number, address, bedrooms, floors, monthly rent, and owner number from the PROPERTY table whose square footage is greater than 1,500 square feet.