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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:54:44+00:00 2026-05-31T19:54:44+00:00

So lets say i have a query like this SELECT a as d,b,c FROM

  • 0

So lets say i have a query like this

    SELECT a as d,b,c FROM myTable
    WHERE a=1;

Is it possible instead of
a=1 to type something like SELECTED.1 = 1 or to somehow extract allias original name since d=1 doesn’t work

  • 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-31T19:54:45+00:00Added an answer on May 31, 2026 at 7:54 pm

    It’s not possible to do this because of internal complexities about when the WHERE clause gets evaluated. But if the thing you are aliasing is a long expression that you’d rather not repeat, there is a typical solution to this. From https://forums.oracle.com/forums/thread.jspa?threadID=1107532:

    The standard solution to this is, you move the query into an inline
    view (without the where-clause predicate), and then add the
    where-clause predicate, using the alias, in the outer query.

    So something like this:

    select ...
    from (select ... here complex expression that is aliased ...
          from ...
          where ) A
    where ... here condition that uses the A.alias column ...
    

    In your example case, that would be:

    SELECT d, b, c
    FROM ( SELECT a AS d, b, c FROM myTable ) AS myAliasedTable
    WHERE d = 1
    

    But of course, this wouldn’t make sense in your literal example. If the thing you are aliasing is just a column name, then just use the actual column name in the WHERE, no real drawback in that case.

    Also note that if you do use this method, you should put as much of the WHERE clause as you can in the internal query (meaning the parts that don’t reference an aliased column) to limit the size of the resulting aliased table. For example, if you also wanted to test on b in your example, that would be:

    SELECT d, b, c
    FROM (
        SELECT a AS d, b, c
        FROM myTable
        WHERE b = 1
    ) AS myAliasedTable
    WHERE d = 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have something like this: $db=new PDO($dsn); $statement=$db->query('Select * from foo'); while
lets say i have this query SELECT tags FROM myTABLE; and the result of
Lets say that we have a query like this one: SELECT *, (CUSTOM_EXPRESSION) as
Let's say I have this query: select * from table1 r where r.x =
Lets say I have the following query. SELECT stringdata FROM table ORDER BY FIELDS(
Lets say have this immutable record type: public class Record { public Record(int x,
Lets say I have a class like this: Class User { var $id var
Lets say we have this JPA-annotated class, with a property of type List. This
I have this query select rep, companyname,count(companyname) as [count], Commission from customers group by
Lets say i have a class like this class book { public $title; public

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.