473,416 Members | 1,510 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Is it possible to re-reference a column alias from a select clause in another column of the same select clause?

Example, suppose you have these 2 tables

(NOTE: My example is totally different, but I'm simply trying to setup
the a simpler version, so excuse the bad design; not the point here)

CarsSold {
CarsSoldID int (primary key)
MonthID int
DealershipID int
NumberCarsSold int
}

Dealership {
DealershipID int, (primary key)
SalesTax decimal
}

so you may have many delearships selling cars the same month, and you
wanted a report to sum up totals of all dealerships per month.

select cs.MonthID,
sum(cs.NumberCarsSold) as 'TotalCarsSoldInMonth',
sum(cs.NumberCarsSold) * d.SalesTax as 'TotalRevenue'
from CarsSold cs
join Dealership d on d.DealershipID = cs.DealershipID
group by cs.MonthID

My question is, is there a way to achieve something like this:

select cs.MonthID,
sum(cs.NumberCarsSold) as 'TotalCarsSoldInMonth',
TotalCarsSoldInMonth * d.SalesTax as 'TotalRevenue'
from CarsSold cs
join Dealership d on d.DealershipID = cs.DealershipID
group by cs.MonthID

Notice the only difference is the 3rd column in the select. My
particular query is performing some crazy math and the only way I know
of how to get it to work is to copy and past the logic which is
getting out way out of hand...

Thanks,
Dave
Jul 20 '05 #1
5 11481
On 17 May 2004 11:26:30 -0700, malcolm wrote:
Example, suppose you have these 2 tables

(NOTE: My example is totally different, but I'm simply trying to setup
the a simpler version, so excuse the bad design; not the point here)

CarsSold {
CarsSoldID int (primary key)
MonthID int
DealershipID int
NumberCarsSold int
}

Dealership {
DealershipID int, (primary key)
SalesTax decimal
}

so you may have many delearships selling cars the same month, and you
wanted a report to sum up totals of all dealerships per month.

select cs.MonthID,
sum(cs.NumberCarsSold) as 'TotalCarsSoldInMonth',
sum(cs.NumberCarsSold) * d.SalesTax as 'TotalRevenue'
from CarsSold cs
join Dealership d on d.DealershipID = cs.DealershipID
group by cs.MonthID
Hi Dave,

I can't test it right now, but this SHOULD return an error. Since you
don't group by d.SalesTax, you can't use it in the select list, unless it
is within an aggregate function. SUM(cs.NumberCarsSold * d.SalesTax)
should be okay, but that invalidates the rest of your query. May I assume
that you meant to write

select cs.MonthID, d.DealershipID,
sum(cs.NumberCarsSold) as 'TotalCarsSoldInMonth',
sum(cs.NumberCarsSold) * d.SalesTax as 'TotalRevenue'
from CarsSold cs
join Dealership d on d.DealershipID = cs.DealershipID
group by cs.MonthID, d.DealershipID, d.SalesTax


My question is, is there a way to achieve something like this:

select cs.MonthID,
sum(cs.NumberCarsSold) as 'TotalCarsSoldInMonth',
TotalCarsSoldInMonth * d.SalesTax as 'TotalRevenue'
from CarsSold cs
join Dealership d on d.DealershipID = cs.DealershipID
group by cs.MonthID

Notice the only difference is the 3rd column in the select. My
particular query is performing some crazy math and the only way I know
of how to get it to work is to copy and past the logic which is
getting out way out of hand...

Thanks,
Dave


Hi Dave,

You could try it with a derived table:

SELECT MonthID, DealershipID,
TotalCarsSoldInMonth,
TotalCarsSoldInMonth * SalesTax AS TotalRevenue
FROM (SELECT MonthID, DealershipID,
SUM(NumberCarsDold) AS TotalCarsSoldInMonth,
SalesTax
FROM CarsSold cs
JOIN Dealership d on d.DealershipID = cs.DealershipID
GROUP BY cs.MonthID, d.DealershipID, d.SalesTax) AS DerivedTable

(untested)

Best, Hugo
--

(Remove _NO_ and _SPAM_ to get my e-mail address)
Jul 20 '05 #2
>
Hi Dave,

You could try it with a derived table:

SELECT MonthID, DealershipID,
TotalCarsSoldInMonth,
TotalCarsSoldInMonth * SalesTax AS TotalRevenue
FROM (SELECT MonthID, DealershipID,
SUM(NumberCarsDold) AS TotalCarsSoldInMonth,
SalesTax
FROM CarsSold cs
JOIN Dealership d on d.DealershipID = cs.DealershipID
GROUP BY cs.MonthID, d.DealershipID, d.SalesTax) AS DerivedTable

(untested)

Best, Hugo


Hello Hugo,

Thanks for the response! Very interesting, I was only curious because
some of the expressions I wrote are out of hand. Do you know if there
would be a perfermance hit by doing it this way? My guess is that
there would be but I'm not sure.

Thanks!
Jul 20 '05 #3
On 9 Jun 2004 00:40:58 -0700, malcolm wrote:

Hi Dave,

You could try it with a derived table:

SELECT MonthID, DealershipID,
TotalCarsSoldInMonth,
TotalCarsSoldInMonth * SalesTax AS TotalRevenue
FROM (SELECT MonthID, DealershipID,
SUM(NumberCarsDold) AS TotalCarsSoldInMonth,
SalesTax
FROM CarsSold cs
JOIN Dealership d on d.DealershipID = cs.DealershipID
GROUP BY cs.MonthID, d.DealershipID, d.SalesTax) AS DerivedTable

(untested)

Best, Hugo


Hello Hugo,

Thanks for the response! Very interesting, I was only curious because
some of the expressions I wrote are out of hand. Do you know if there
would be a perfermance hit by doing it this way? My guess is that
there would be but I'm not sure.

Thanks!


Hi Dave,

I'm sorry, but I can't tell. There is only one good way to find out: test
both versions, check the execution plan and check the statistics.

Best, Hugo
--

(Remove _NO_ and _SPAM_ to get my e-mail address)
Jul 20 '05 #4
malcolm (ch********@yahoo.com) writes:
You could try it with a derived table:

SELECT MonthID, DealershipID,
TotalCarsSoldInMonth,
TotalCarsSoldInMonth * SalesTax AS TotalRevenue
FROM (SELECT MonthID, DealershipID,
SUM(NumberCarsDold) AS TotalCarsSoldInMonth,
SalesTax
FROM CarsSold cs
JOIN Dealership d on d.DealershipID = cs.DealershipID
GROUP BY cs.MonthID, d.DealershipID, d.SalesTax) AS
DerivedTable

(untested)

Best, Hugo


Hello Hugo,

Thanks for the response! Very interesting, I was only curious because
some of the expressions I wrote are out of hand. Do you know if there
would be a perfermance hit by doing it this way? My guess is that
there would be but I'm not sure.


As Hugo said, testing is the only way to find out. However, the optimizer
makes a very good job with derived tables. The actual evaluation order
may not at all reflect the logical construction of the query. As long
as the result is not affected, the optimizer is free to rearrange.

--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp
Jul 20 '05 #5
Short answer; no. Useful fix: use a derived table or a VIEW.

long answer, so you'll understand why:

Here is how a SELECT works in SQL ... at least in theory. Real
products will optimize things when they can.

a) Start in the FROM clause and build a working table from all of the
joins, unions, intersections, and whatever other table constructors
are there. The table expression> AS <correlation name> option allows
you give a name to this working table which you then have to use for
the rest of the containing query.

b) Go to the WHERE clause and remove rows that do not pass criteria;
that is, that do not test to TRUE (reject UNKNOWN and FALSE). The
WHERE clause is applied to the working set in the FROM clause.

c) Go to the optional GROUP BY clause, make groups and reduce each
group to a single row, replacing the original working table with the
new grouped table. The rows of a grouped table must be group
characteristics: (1) a grouping column (2) a statistic about the group
(i.e. aggregate functions) (3) a function or (4) an expression made up
those three items.

d) Go to the optional HAVING clause and apply it against the grouped
working table; if there was no GROUP BY clause, treat the entire table
as one group.

e) Go to the SELECT clause and construct the expressions in the list.
This means that the scalar subqueries, function calls and expressions
in the SELECT are done after all the other clauses are done. The "AS"
operator can also give names to expressions in the SELECT list. These
new names come into existence all at once, but after the WHERE clause,
GROUP BY clause and HAVING clause has been executed; you cannot use
them in the SELECT list or the WHERE clause for that reason.

If there is a SELECT DISTINCT, then redundant duplicate rows are
removed. For purposes of defining a duplicate row, NULLs are treated
as matching (just like in the GROUP BY).

f) Nested query expressions follow the usual scoping rules you would
expect from a block structured language like C, Pascal, Algol, etc.
Namely, the innermost queries can reference columns and tables in the
queries in which they are contained.

g) The ORDER BY clause is part of a cursor, not a query. The result
set is passed to the cursor, which can only see the names in the
SELECT clause list, and the sorting is done there. The ORDER BY
clause cannot have expression in it, or references to other columns
because the result set has been converted into a sequential file
structure and that is what is being sorted.

As you can see, things happen "all at once" in SQL, not from left to
right as they would in a sequential file/proceudral language model. In
those languages, these two statements produce different results:
**READ (a, b, c) FROM File_X;
**READ (c, a, b) FROM File_X;

while these two statements return the same data:

SELECT a, b, c FROM Table_X;
SELECT c, a, b FROM Table_X;

Think about what a confused mess this statement is in the SQL model.

SELECT f(c2) AS c1, f(c1) AS c2 FROM Foobar;

That is why such nonsense is illegal syntax.
Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Will Stuyvesant | last post by:
Suppose I want to sell a (small, 1000 lines) Python program. It is a commandline program for database applications and I have a customer. The customer wants to "try it out" before buying. The...
22
by: Marek Mand | last post by:
How to create a functional *flexible* UL-menu list <div> <ul> <li><a href=""></li> <li><a href=""></li> <li><a href=""></li> </ul> </div> (working in IE, Mozilla1.6, Opera7 (or maybe even...
5
by: Phil Grimpo | last post by:
I have a very odd situation here. I have an administration page, where based on a users permissions, a recordset is called from the SQL server which has a list of paths to "Module Menus". Each of...
117
by: Peter Olcott | last post by:
www.halting-problem.com
7
by: Andrzej | last post by:
Is it possible to call a function which name is given by a string? Let assume that I created a program which call some functions for example void f1(void), void f2(void), void f3(void). ...
3
by: Filip De Backer | last post by:
Hi everybody, I've got a Button on a webform and I want an onClick event. So normally this will be something like : /// protected void onClickEvent(Object sender, EventArgs e) But I want to...
17
by: dejavue82 | last post by:
You'll see a render problem on http://www.asp.net when you access it with the Apple Safari browser. Anybody know why? This is a Microsoft site, shouldn't they know what they are doing? ...
13
by: Ron Garret | last post by:
I'm trying to figure out how to use BaseHTTPServer. Here's my little test app: ================================= #!/usr/bin/python from BaseHTTPServer import * import cgi
3
by: Barney Rubble | last post by:
Hi everyone. Admittedly I don't know javascript. I got the following code from a free site somewhere and have been using it: <a...
0
by: bearophileHUGS | last post by:
Subhabrata, it's very difficult for me to understand what your short program has to do, or what you say. I think that formatting and code style are important. So I suggest you to give meaningful...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.