Re: Urgent help needed- alias name in update statement

Поиск
Список
Период
Сортировка
От Josh Kupershmidt
Тема Re: Urgent help needed- alias name in update statement
Дата
Msg-id 4ec1cf761003091002w7c10217ayb0a393f4934384df@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Urgent help needed- alias name in update statement  (Michael Wood <esiotrot@gmail.com>)
Ответы Re: Urgent help needed- alias name in update statement  (venkatrao.b@tcs.com)
Список pgsql-novice
On Tue, Mar 9, 2010 at 10:42 AM, Michael Wood <esiotrot@gmail.com> wrote:
[snip]
> I don't know why the above doesn't work.  I've encountered something
> in the past which may be related:
>
>    SELECT LOWER(SPLIT_PART(something, '^', 3)) AS blah
>    FROM mytable
>    WHERE something IS NOT NULL
>    AND LOWER(SPLIT_PART(something, '^', 3)) <> ''
>    AND other = 123;
>
> This works, but what I want to do is the following:
>
>    SELECT LOWER(SPLIT_PART(something, '^', 3)) AS blah
>    FROM mytable
>    WHERE something IS NOT NULL
>    AND blah <> ''
>    AND other = 123;
>
> This does not work and I don't know why not.

This behavior is mandated by the SQL standard, I believe. I'm too lazy
to dig up the actual reference, but for instance
http://dev.mysql.com/doc/refman/5.0/en//problems-with-alias.html
claims:
    Standard SQL disallows references to column aliases in a WHERE clause.
    This restriction is imposed because when the WHERE clause is evaluated,
    the column value may not yet have been determined...

You could workaround by using a subquery like:

SELECT mysubq.blah FROM (
    SELECT LOWER(SPLIT_PART(something, '^', 3)) AS blah
    FROM mytable
    WHERE something IS NOT NULL
    AND other = 123
)  AS mysubq
WHERE mysubq.blah <> '' ;

Josh

В списке pgsql-novice по дате отправления:

Предыдущее
От: Steve T
Дата:
Сообщение: Re: Urgent help needed- alias name in update statement
Следующее
От: venkatrao.b@tcs.com
Дата:
Сообщение: Re: Urgent help needed- alias name in update statement