FW: select union with table name - Mailing list pgsql-general

From antsumees
Subject FW: select union with table name
Date
Msg-id 20061228134101.EE7DCE1171@Relayhost2.neti.ee
Whole thread Raw
List pgsql-general
Try this

Select name, 'blue' as table_name from blue
Union all
Select name, 'red' as table_name from red

-----Original Message-----
From: pgsql-general-owner@postgresql.org
[mailto:pgsql-general-owner@postgresql.org] On Behalf Of Akbar
Sent: Thursday, December 28, 2006 2:10 PM
To: pgsql-general@postgresql.org
Subject: [GENERAL] select union with table name

Hi, I have two tables.
create table blue (
  id serial primary key,
  name text not null,
  kill text not null
);

create table red (
  id serial primary key,
  name text not null,
  kiss text not null
);

select blue.name from blue union select red.name from red; give me this:
name
'blabla'
'bubu'
'haha'
'kkk'

I want this:
name    table_name
'blabla'   blue
'bubu'    blue
'haha'    red
'kkk'      red

Could I?

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faq


pgsql-general by date:

Previous
From: Ron Johnson
Date:
Subject: Re: Re: [GENERAL] ??: [GENERA
Next
From: Tom Lane
Date:
Subject: Re: Improve response time of a SQL command