Inheritance issues displaying tables

Поиск
Список
Период
Сортировка
От pknoob
Тема Inheritance issues displaying tables
Дата
Msg-id 200305312233.54808.pknoob@noos.fr
обсуждение исходный текст
Список pgsql-php
I have three tables that look like this:

CREATE TABLE episodes(
id int,
 name       text,
 )
);

CREATE TABLE p2p(
  p2p varchar
) INHERITS (episodes);


CREATE TABLE irc(
  server_name varchar
) INHERITS (episodes);

When I try :
$squery="SELECT * FROM episodeirc,episodep2p";
$squery=pg_query($squery);
while($row=pg_fetch_array($squery,NULL,PGSQL_ASSOC))
{
echo "      <td><b><a href=\"\">" . $row["name"] . "</b></td>
         <td><b><a href=\"\">" . $row["id"] . "</b></td>
          <td><b><a href=\"\">" . $row["p2p"] . "</b></td>
          <td><b><a href=\"\">" . $row["server_name"] . "</b></td>";}

the problem is that it  prints results from the episodep2p table only. how can
I make it print results from both tables?

В списке pgsql-php по дате отправления:

Предыдущее
От: Bruce Young
Дата:
Сообщение: Re: DESIGN CONCEPT (performance) - switch/arrays/forms
Следующее
От: Rod Taylor
Дата:
Сообщение: Re: faster output from php and postgres