Inheritance issues displaying tables

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?

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo [at] postgresql.org so that your
message can get through to the mailing list cleanly
pknoob [ Sa, 31 Mai 2003 22:33 ] [ ID #46340 ]
Datenbanken » gmane.comp.db.postgresql.php » Inheritance issues displaying tables

Vorheriges Thema: Groups
Nächstes Thema: DESIGN CONCEPT (performance) - switch/arrays/forms