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

  • Home
  • SEARCH
  • 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 7886061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T05:13:38+00:00 2026-06-03T05:13:38+00:00

(dynamic query…) select * from myTable where ( <— @param1 IS NULL OR (

  • 0

(dynamic query…)

select * from myTable where

(   <--- 

 @param1 IS NULL
                  OR (
                         param1 IN 
                                           ( 
                                              SELECT item
                                              FROM   blabla1
                                           )
                     )
)   <---
and
(   <---

 @param2 IS NULL
                  OR (
                         param2  IN 
                                           ( 
                                              SELECT item
                                              FROM   blabla2
                                           )
                     )
)   <---

question :

look at the parenthesis marked with <---.

Can I remove them ( without impacting the logic here ) ?

  • 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-03T05:13:39+00:00Added an answer on June 3, 2026 at 5:13 am

    No. you need those but you can remove the ones around the IN statement.

    select * 
    from myTable
    where
      (@param1 IS NULL OR @param1 IN (SELECT item FROM blabla1))
      and 
      (@param2 IS NULL OR @param2 IN (SELECT item FROM blabla2))
    

    If you remove the ones you asked about you would have a query that works like this

    select * 
    from myTable
    where
      param1 IS NULL
      OR
      (param1 IN (SELECT item FROM blabla1)) and param2 IS NULL 
      OR
      (param2 IN (SELECT item FROM blabla2))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i using the dynamic query to pass the variables select a.TableName, COUNT(a.columnvalue) as '+'count'+'
The following select statement is not working if it placed inside the dynamic query.
Hello I have a dynamic query like SET @template = 'SELECT x AS X,...
I have as a result from a dynamic query a table with only one
Let's consider such query: SELECT * FROM ( SELECT YEAR(OrderDate) [Year], MONTH(OrderDate) [Month], SubTotal
I have dynamic query I want to get two output parameters from it I
I have a dynamic query like this : SET @str_Query = 'SELECT SIM.Item_ID, SIM.Item_Description,
When performing a dynamic query, RavenDB will typically create a temp index. Retrieving document
I am trying to write a Dynamic Query which uses a CTE. But I
Is it possible to construct a dynamic query to for a linked server (and

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.