Re: How the query please!

From: Johannes Lochmann <j(dot)lochmann(at)i-penta(dot)at>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: How the query please!
Date: 2005-05-04 04:31:47
Message-ID: 200505040631.48380.j.lochmann@i-penta.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Wednesday 04 May 2005 04:09, Richard Sitompul wrote:

Hello Richard!

> I have six table_product, for example :
> table_product_1
> table_product_2
> table_product_3
> table_product_4
> table_product_5
> table_product_6
>
> in table_product_1 until table_product_6 have field part_number and
> product_name. I want to ask here, how the query to get the part_number and
> product_name in one view(product_view).

hm. are you searching for something like this, perhaps?

create view product_view
as
select
part_number
,product_name
from table_product_1

union

select
part_number
,product_name
from table_product_2

union

...

> Any body can help me again?

Is it this what you where searching for?

HAND && HTH

Johannes

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Richard Sitompul 2005-05-04 04:55:54 Re: How the query please!
Previous Message Lipy Reis 2005-05-04 04:21:44 Postgre 8.0 for Linux i586