Re: using custom column names in a group by clause - Mailing list pgsql-sql

From Josh Berkus
Subject Re: using custom column names in a group by clause
Date
Msg-id web-86935@davinci.ethosmedia.com
Whole thread Raw
In response to using custom column names in a group by clause  (mrink@avaya.com (Matt Rinkenberger))
List pgsql-sql
Matt,

First of all, this is a PostgreSQL list, so we're not going to be able
to give you much help with Oracle.

> The following select sets two custom column names using the same
> original column name. When I try to include a custom column name in
> a
> group by clause I get ORA-00904: invalid column name from Oracle.
> How
> can I access a column name I created in the group by clause?

Second, I'd say that your answer is self-evident; use the real column
name rather than the custom column name. If the column is just being
aliased in order to display it twice, then it doesn't matter which one
you group by.

Third, Matt, PostgreSQL 7.1.2 DOES support aliasing in GROUP BY
clauses. Maybe it's time to switch databases?

select client_name as clname1, client_name as clname2, AVG(status)
from clients
group by clname1, clname2

-Josh Berkus

______AGLIO DATABASE SOLUTIONS___________________________                                      Josh Berkus Complete
informationtechnology      josh@agliodbs.com  and data management solutions       (415) 565-7293 for law firms, small
businesses       fax 621-2533   and non-profit organizations.      San Francisco
 


pgsql-sql by date:

Previous
From: "Kapil Tilwani"
Date:
Subject: Fw: Query Optimisation required
Next
From: "Zot O'Connor"
Date:
Subject: Building RPMS with plperl (solution)