SQL Server > Query > Column Names
        Posted  
        
            by pojomx
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by pojomx
        
        
        
        Published on 2010-04-29T17:10:04Z
        Indexed on 
            2010/04/29
            17:37 UTC
        
        
        Read the original article
        Hit count: 179
        
sql-server
|query
Hi, I'm here again-
I have something like this
Select A.a, A.b, A.a+A.b as c, (A.a+A.b*2)+A.d as d from Table
But i want to know, if it is possible, to make it work with something like this:
Select A.a,A.b,A.a+A.b as c, (c*2)+A.d as d from Table
Thank you
© Stack Overflow or respective owner