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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:48:09+00:00 2026-05-15T13:48:09+00:00

You know how you can assign a temporary column name to a return value

  • 0

You know how you can assign a temporary column name to a return value in a SQL statement like this?

SELECT something+this+that AS myvalue FROM mytable

Is it possible to use the temporary name myvalue as a conditional?

SELECT something+this+that AS myvalue FROM mytable WHERE myvalue = 10

I can’t seem to figure out the syntax to do this. The only way I can figure out how to do it is to rewrite out the entire column definition again like this:

SELECT something+this+that AS myvalue FROM mytable WHERE something+this+that = 10

Obviously the above example is a trivial example. My query I need to do this on is extremely complexed, so having the rewrite each returned column definition for each conditional will be quite a hassle.

So anyways, what is the syntax for this? Is it possible?

  • 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-15T13:48:09+00:00Added an answer on May 15, 2026 at 1:48 pm

    Use a derived table…

    SELECT
        myvalue
    FROM
        (
        SELECT something+this+that AS myvalue FROM mytable
        ) foo
    WHERE
        myvalue = 10
    

    Or use a CTE which looks more elegant but is the same

    ;WITh myCTE AS
    (
        SELECT something+this+that AS myvalue FROM mytable
    )
    SELECT
        myvalue
    FROM
        myCTE
    WHERE
        myvalue = 10
    

    Or a computed column so it’s usable normally

    ALTER TABLE MyTable ADD myvalue AS something+this+that
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that I can assign a value specifically to a float by doing
I know you can assign a function's return value to a variable and use
I'd like to know how I can assign in XAML a dependency property of
This is something I know can be done somehow , because I've done it
I know that I can assign an onclick action to <input type=button -style buttons.
I don't know why I can't assign a value captured by .hover function to
I know you can assign a custom view that overrides mouseDown: method. I'm looking
I know that you can assign a class to the generated table by using
Does anyone know how can I cut a string and then assign into an
I have a query that I know can be done using a subselect, but

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.