RE: Group by column alias where same-column-name already exists - Mailing list pgsql-sql

From Voillequin, Jean-Marc
Subject RE: Group by column alias where same-column-name already exists
Date
Msg-id 1EC8157EB499BF459A516ADCF135ADCE3A00A7E5@LON-WGMSX712.ad.moodys.net
Whole thread Raw
In response to Group by column alias where same-column-name already exists  ("agharta82@gmail.com" <agharta82@gmail.com>)
Responses Re: Group by column alias where same-column-name already exists
List pgsql-sql
"...group by 1, first_table.c2"

should do the trick.

-----Original Message-----
From: agharta82@gmail.com [mailto:agharta82@gmail.com] 
Sent: Tuesday, December 11, 2018 5:40 PM
To: pgsql-sql@lists.postgresql.org
Subject: Group by column alias where same-column-name already exists

 

CAUTION: This email originated from outside of Moody's. Do not click links or open attachments unless you recognize the
senderand know the content is safe.
 

 

Hi all,

A little question about grouping by a computed column alias where other columns with same name exists.

Take look at this query (don't take care about, it was created as a test to explain my question).

select case when (second_table.c1 = 'X') then '1' else '2' end as c1,
first_table.c2
from (
     select 'A'::text as c1, 'B'::text as c2
) first_table
inner join (
     select 'X'::text as c1
     union
     select 'W'::text as c1
     union
     select 'X'::text as c1
)  second_table on (true)
group by c1, first_table.c2


I have a computed coulmn alias in select called c1 (select case when
(second_table.c1 = 'X') then '1' else '2' end as c1)

I want to group by that alias c1 (group by c1)

BUT first_table has a c1 column and second_table has a c1 column too!

If i run the query it returns "ERROR: column reference "c1" is ambiguous"

Someone knows a way to solve this?

Not replacing grou by alias with its case and without changing column names, oblivious.

In other dbs (like firebird) main (computed ) select column alias name takes precedence in group by clause. So if i
groupby c1 that means the computed (case when.... ) c1 in that case.
 


Best regards,

Agharta



-----------------------------------------

Moody's monitors email communications through its networks for regulatory compliance purposes and to protect its
customers,employees and business and where allowed to do so by applicable law. The information contained in this e-mail
message,and any attachment thereto, is confidential and may not be disclosed without our express permission. If you are
notthe intended recipient or an employee or agent responsible for delivering this message to the intended recipient,
youare hereby notified that you have received this message in error and that any review, dissemination, distribution or
copyingof this message, or any attachment thereto, in whole or in part, is strictly prohibited. If you have received
thismessage in error, please immediately notify us by telephone, fax or e-mail and delete the message and all of its
attachments.Every effort is made to keep our network free from viruses. You should, however, review this e-mail
message,as well as any attachment thereto, for viruses. We take no responsibility and have no liability for any
computervirus which may be transferred via this e-mail message. 

This email was sent to you by Moody’s Investors Service EMEA Limited
Registered office address:
One Canada Square
Canary Wharf
London, E14 5FA
Registered in England and Wales No: 8922701

-----------------------------------------

pgsql-sql by date:

Previous
From: "agharta82@gmail.com"
Date:
Subject: Group by column alias where same-column-name already exists
Next
From: "agharta82@gmail.com"
Date:
Subject: Re: Group by column alias where same-column-name already exists