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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:25:43+00:00 2026-06-09T13:25:43+00:00

I have a variable age to be used on my query like below: Declare

  • 0

I have a variable age to be used on my query like below:

Declare @age as int 11

Select * from people p where p.age = @age

but I want to show all the people between 10 and 13 when I put 0 on @age, so I’m trying to do something like this:

Select * 
from people p 
where p.age in( case 
                     when @age = 0 
                          then 10, 11, 12, 13
                          else @age
                     end
              )

Can someone give me a light?

  • 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-09T13:25:44+00:00Added an answer on June 9, 2026 at 1:25 pm

    You do not need a CASE statement, you can just switch your WHERE clause around a bit. This should return the same results:

    Select * 
    from people p 
    where 
    ( 
        @age = 0 
        AND p.age IN (10, 11, 12, 13)
    )
    OR
    (
        @age != 0 
        AND p.age = @age
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have variable which I populate from JSON formated data. Something like: var time=my_data[data.results[i].id].time;
I have a variable table: DECLARE @A_Table TABLE(ID INT, att1 VARCHAR(100), att2 nvarchar(200)) I
I have an array of results from a query in a variable called $result
If I have a SQL script stored in a variable like this: DECLARE @SQL
In my query string, I have an age variable ?age=New_Born . Is there a
I have a variable named age and a function named AGE. Ignore the problem
I have variable @count of datatype int.I am setting values to this @count. I
i have variable $lang which convert string to the selected language but i am
I have a string like (Name := Sam&&Age=:17&& Score:=C6) and a class called Person
I have a PHP variable that holds similar data: $var = Name: Tom Age:

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.