| From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: inconsistency in aliasing |
| Date: | 2009-01-14 11:06:47 |
| Message-ID: | 20090114110647.GC30398@a-kretschmer.de |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general pgsql-hackers |
In response to Louis-David Mitterrand :
> Hi,
>
> This works:
>
> critik=# select current_timestamp::abstime::int4 as score order by score;
>
> This doesn't:
>
> critik=# select current_timestamp::abstime::int4 as score order by score + 1;
> ERROR: column "score" does not exist
> LINE 1: ...urrent_timestamp::abstime::int4 as score order by score + 1 ...
>
> Any idea ?
Yes, you can't use the alias in the ORDER BY. Use the real column-name.
select current_timestamp::abstime::int4 as score order by current_timestamp::abstime::int4;
Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Louis-David Mitterrand | 2009-01-14 11:27:48 | Re: inconsistency in aliasing |
| Previous Message | ludwig | 2009-01-14 11:02:03 | Re: inconsistency in aliasing |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Louis-David Mitterrand | 2009-01-14 11:27:48 | Re: inconsistency in aliasing |
| Previous Message | Reg Me Please | 2009-01-14 11:01:23 | Re: inconsistency in aliasing |