Re: Alias and Where clause problem

From: Joe Celko (joe.celko_at_northface.edu)
Date: 04/01/04


Date: Thu, 01 Apr 2004 14:16:58 -0800


>> Why I can't use alias name in a where clause? <<

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.

hint: Start using the AS operator for column and table aliases instead
of the proprietary overloaded equal sign. It will make your code more
readable and portable.

>> Does a work around exist? <<

Don't use a relational language in which you have parallelism and stick
to old-fashion sequential processing.

Would you mind taking a quick survey for me? I have to teach several
hundred new SQL programmers in the next year. You have made a typical
"Newbie Error" and I want to know what your underlying assumptions were
that lead to the flaw -- your "logic of failure", as it were. You can
answer to my email instead of on the newsgroup.

1) How many years/months have your been programming? Was your first
language a procedural language? Was your first language an OO language?

2) How many years/months have your been programming in SQL?

3) Have you used a sequential file system before?

4) Have you used a network Database before?

5) Have you ever had a course in Data Modeling?

6 Have you ever had a course in RDBMS theory? University or commercial?

7) Have you ever had a course in SQL? University or commercial?

I am not picking on you; I want to know how you came to ask this
question.

--CELKO--
 ===========================
 Please post DDL, so that people do not have to guess what the keys,
constraints, Declarative Referential Integrity, datatypes, etc. in your
schema are.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



Relevant Pages

  • Re: Better "Join" vs "Where" clause?
    ... running the SQL directly, in the SQL Server tools, rather than ... WHERE clause has been deprecated, ... AFAIK one cannot perform an outer join in Access without using the explicit ...
    (microsoft.public.access.queries)
  • Re: Parent child
    ... Here is how a SELECT works in SQL ... ... Start in the FROM clause and build a working table from all of the ... e) Go to the SELECT clause and construct the expressions in the list. ... the innermost queries can reference columns and tables in the ...
    (microsoft.public.sqlserver.programming)
  • Re: GroupBy Error
    ... SELECT works in SQL ... ... Start in the FROM clause and build a working table from all of the ... e) Go to the SELECT clause and construct the expressions in the list. ... the innermost queries can reference columns and tables in the ...
    (microsoft.public.sqlserver.programming)
  • Re: SELECT 42 AS a, a AS b FROM system.iota
    ... Here is how a SELECT works in SQL ... ... Start in the FROM clause and build a working table from all of the ... e) Go to the SELECT clause and construct the expressions in the list. ... right" as they would in a sequential file/procedural language model. ...
    (comp.databases.sybase)
  • Re: Column Name in Query
    ... Here is how a SELECT works in SQL ... ... Start in the FROM clause and build a working table from all of the ... e) Go to the SELECT clause and construct the expressions in the list. ... right" as they would in a sequential file/procedural language model. ...
    (comp.databases.ms-sqlserver)