Default column titles in a select... - Mailing list pgsql-sql

From Axel Schlueter
Subject Default column titles in a select...
Date
Msg-id 3E5393E5.6050901@pqrs.de
Whole thread Raw
Responses Re: Default column titles in a select...
Re: Default column titles in a select...
List pgsql-sql
Hi,

maybe it's a novice question, but I stumpled across
the following problem and couldn't find a solution:

create table c(    atext  varchar
);

create table a(    objid  smallint,
)INHERITS(c);

create table b(    objid  smallint,
)INHERITS(c);

insert into a values(1,'foobar');
insert into b values(1,'carcddr');

When doing the following select statement:   select * from a,b where a.objid=b.objid
postgresql returns four columns labeled   objid  atext  objid  atext
instead of what I expected:   a.objid  a.atext  b.objid  b.atext

With the current result I'm unable to differentiate
between the two 'atext' column. Is there any possibility
to get column headers including the table name in the
result ?

Bye,   Axel
-- 
"The virus spreads using a Microsoft
vulnerability known as 'MS SQL Server'"



pgsql-sql by date:

Previous
From: Christoph Haller
Date:
Subject: Re: " Adding missing FROM-clause entry for table .... " problem.
Next
From: greg@turnstep.com
Date:
Subject: Re: Default column titles in a select...