SELECT on a to-be-determined table

From: "garhone" <cacheung(at)consumercontact(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: SELECT on a to-be-determined table
Date: 2006-02-14 15:28:30
Message-ID: 1139930910.624290.83370@g44g2000cwa.googlegroups.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi,

I'm a new at this. So please forgive if I mess up. Also, if there is
already a reference/tutorial somewhere, feel free to point me to it.

Here's my situation:
db=# select * from projects;
projid | projname
--------+----------
1 | cars
2 | houses
3 | pets
(3 rows)

db=# select * from cars;
carid | carname
-------+---------
1 | ford
2 | mazda
(2 rows)

db=# select * from houses;
houseid | housename
---------+-----------
1 | semi
2 | trailer
3 | mansion
(3 rows)

db=# select * from pets;
petid | petname
-------+---------
1 | dog
2 | cat
3 | bird
(3 rows)

Is it possible to do this:
Give me all the rows of the table whose project id is 2 (or whatever
projid).

Thanks

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Ken Hill 2006-02-14 16:35:16 Re: Slow update SQL
Previous Message bond 2006-02-14 10:11:20 passing array(java) to postgre sql function