Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 615975
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:16:39+00:00 2026-05-13T18:16:39+00:00

I just stumbled upon something in ORACLE SQL (not sure if it’s in others),

  • 0

I just stumbled upon something in ORACLE SQL (not sure if it’s in others), that I am curious about. I am asking here as a wiki, since it’s hard to try to search symbols in google…

I just found that when checking a value against a set of values you can do

WHERE x = ANY (a, b, c)

As opposed to the usual

WHERE x IN (a, b, c)

So I’m curious, what is the reasoning for these two syntaxes? Is one standard and one some oddball Oracle syntax? Or are they both standard? And is there a preference of one over the other for performance reasons, or ?

Just curious what anyone can tell me about that ‘= ANY’ syntax.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:16:39+00:00Added an answer on May 13, 2026 at 6:16 pm

    ANY (or its synonym SOME) is a syntax sugar for EXISTS with a simple correlation:

    SELECT  *
    FROM    mytable
    WHERE   x <= ANY
            (
            SELECT  y
            FROM    othertable
            )
    

    is the same as:

    SELECT  *
    FROM    mytable m
    WHERE   EXISTS
            (
            SELECT  NULL
            FROM    othertable o
            WHERE   m.x <= o.y
            )
    

    With the equality condition on a not-nullable field, it becomes similar to IN.

    All major databases, including SQL Server, MySQL and PostgreSQL, support this keyword.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just stumbled upon something i don't quite understand. I know that variables in
Just stumbled upon propertyGrid and its awesome! However, i have one task that i
I just stumbled upon something I've never seen before. In the source of Backbone.js's
I just read about maintaining state of my android app and stumbled upon onRetainNonConfigurationInstance.
I've just stumbled upon this problem on the net. It kind of goes something
I just stumbled upon this blog post about cache algorithms. The author shows two
I have just stumbled upon Bad Behavior - a plugin for PHP that promises
I'm reading the documentation for Google App Engine and stumbled upon something that I
I just stumbled upon a behavior which surprised me: When writing: int x =
I have just stumbled upon the bash syntax: foo=42 bar=$[foo+1] # evaluates an arithmetic

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.