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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:07:45+00:00 2026-05-26T18:07:45+00:00

I have an application in which a user can pass in some or all

  • 0

I have an application in which a user can pass in some or all of the parameters I’m requesting to the application. (Basically, he or she can stop providing input to various pieces of data whenever they choose.) Based on the input they are providing, I want to get back information from a MS SQL 2008 database with only the parameters that they gave me.

I’m picturing something like this, but I can’t seem to get it to work, and have no idea if it even can.

CREATE PROCEDURE [dbo].[SearchForSolution]
    @Input1 int = 0, 
    @Input2 int = 0,
    @Input3 int = 0,
AS
SELECT Name, SolutionValue
FROM MyTable
WHERE (IF @Input1 != 0) { BETWEEN LowValue AND HighValue }
      AND (IF @Input2 != 0) { BETWEEN LowValue AND HighValue }
      AND (IF @Input3 != 0) { < HighValue }         
RETURN 0

Obviously, this isn’t working code, but it gives the general idea. I want to be able to use a variable as part of the WHERE clause, but only if it is not using the magic number (which, in this case, is 0).

I am not very familiar with the capabilities of SQL here and am not sure if what I want to do is possible. Everything I have tried so far has failed. If I am completely going down the wrong path here, I would appreciate a pointer in the correct direction.

  • 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-26T18:07:46+00:00Added an answer on May 26, 2026 at 6:07 pm

    Here is an approach…

     SELECT 
         Name, 
         SolutionValue
     FROM 
         MyTable
    WHERE
         //Compact syntax simple for optional equals filter
         FIELD1  = ISNULL(@Input1,FIELD1) 
         //intention clearer and let's you do more than equals      
         AND ( @Input2 IS NULL OR FIELD2 > @Input2 ) 
         //can be extended for Between... 
         AND ((@Input3 IS NULL or  @Input4 IS NULL)   OR  FIELD3 BETWEEN  @Input3 AND @Input4 )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web application in which a user has to upload images to
I have an application which had optional extras depending on if the user has
I have a Java application which I want to shutdown 'nicely' when the user
I have an application in which I want to authenticate a user from a
I have an application in which I have to show the alerts for user
I have been working on an application which allows the user to make a
I have an Excel application in which I want to present the user with
I have an Application (an appointment manager) which lets the user create usercontrols in
I have a standalone application in which I have to prompt the user with
I have a simple application in which I need to let the user select

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.