Re: using pg_tables and tablename in queries

From: "codeWarrior" <gpatnude(at)hotmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: using pg_tables and tablename in queries
Date: 2005-10-05 15:24:11
Message-ID: di0r63$2qgl$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


"Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote in message
news:9420(dot)1128445291(at)sss(dot)pgh(dot)pa(dot)us(dot)(dot)(dot)
> solarsail <solarsail(at)gmail(dot)com> writes:
>> I have a large number of tables with a common naming convention
>
>> mytable001, mytable002, mytable003 ... mytable00n
>
>> I would like to do a query across all of the tables, however I do not
>> know
>> all of the tables before hand, and I do not want to ( cant ) manually
>> generate a query like
>
>> select * from mytable001, mytable002, mytable003
>
>> I have a query that returns the names of the tables I want to query:
>
>> select tablename from pg_tables where tablename like 'mytable%'
>
> This looks to me like a situation in which you should rethink your
> data design. Those tables should all get merged into one big table,
> adding one extra column that reflects what you had been using to
> segregate the data into different tables.
>
> regards, tom lane

Sounds like a classic opportunity to use the postgreSQL inheritance model to
me....

>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
> http://archives.postgresql.org
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Kenneth Gonsalves 2005-10-05 15:30:41 Re: BirthDay SQL Issue
Previous Message Leif B. Kristensen 2005-10-05 15:17:23 Use of partial index