Re: using custom column names in a group by clause

From: "Josh Berkus" <josh(at)agliodbs(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: using custom column names in a group by clause
Date: 2001-07-17 18:37:00
Message-ID: web-86935@davinci.ethosmedia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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 information technology josh(at)agliodbs(dot)com
and data management solutions (415) 565-7293
for law firms, small businesses fax 621-2533
and non-profit organizations. San Francisco

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Chris Ruprecht 2001-07-17 20:28:36 PL/PGSQL and external (flat ASCII) files - Urgent ... :)
Previous Message Zot O'Connor 2001-07-17 18:25:54 Building RPMS with plperl (solution)