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 9120179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:34:12+00:00 2026-06-17T05:34:12+00:00

Is it possible to test two EXISTS conditions in a single IF SQL statement?

  • 0

Is it possible to test two EXISTS conditions in a single IF SQL statement? I’ve tried the following.

IF EXIST (SELECT * FROM tblOne WHERE field1 = @parm1 AND field2 = @parm2) 
   OR 
   EXIST (SELECT * FROM tblTwo WHERE field1 = @parm5 AND field2 = @parm3) 

I’ve tried playing with adding additional IF and parenthesis in there, but to no avail.

Can you help me out with the proper 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-06-17T05:34:13+00:00Added an answer on June 17, 2026 at 5:34 am

    If SQL Server

    IF EXISTS (SELECT *
               FROM   tblOne
               WHERE  field1 = @parm1
                      AND field2 = @parm2)
        OR EXISTS (SELECT *
                   FROM   tblTwo
                   WHERE  field1 = @parm5
                          AND field2 = @parm3)
      PRINT 'YES' 
    

    Is fine, note the only thing changed is EXISTS not EXIST. The plan for this will probably be a UNION ALL that short circuits if the first one tested is true.

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

Sidebar

Related Questions

Is it possible to test for multiple exceptions in a single JUnit unit test?
Possible Duplicate: How do I test for an empty Javascript object from JSON? var
Possible Duplicate: Calling Python from JavaScript I have a test.py and test.js . I
I've got this SQL script that needs to exist in two places in source
Possible Duplicate: In R, correlation test between two columns, for each of the groups
Is it possible to test for enum equality in JSF? E.g. where stuff is
Possible Duplicate: Interesting test of Javascript RegExp Regular expression test can't decide between true
Is it possible to JUnit test if wiring by Spring is succesfully? I would
Is it possible to conveniently test jQuery selectors on some random web page using
Is it possible to run nose test generators inside custom classes? I am trying

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.