Re: SQL Statement Help Needed
| От | Michael Avila |
|---|---|
| Тема | Re: SQL Statement Help Needed |
| Дата | |
| Msg-id | NBBBLNPHAMCFENDFHIDCEEGKEGAA.Michael.Avila.1@sbcglobal.net обсуждение исходный текст |
| Ответ на | SQL Statement Help Needed ("Michael Avila" <Michael.Avila.1@sbcglobal.net>) |
| Ответы |
Re: SQL Statement Help Needed
|
| Список | pgsql-novice |
Thank you everyone.
A received a few responses and they all work. However, with one member name
but multiple telephone numbers, is there a way to not get the multiple
member names, the same name with each telephone? Or do I have to "filter"
that out myself?
Thanks
Mike
-----Original Message-----
From: Oliver Elphick [mailto:olly@lfix.co.uk]
Sent: Sunday, December 04, 2005 11:40 AM
To: Michael Avila
Subject: Re: [NOVICE] SQL Statement Help Needed
On Sun, 2005-12-04 at 04:12 -0500, Michael Avila wrote:
> ... Is it possible to do a JOIN
> with a table with one record with a table with multiple records?
>
> SELECT * FROM member
>
> SELECT * FROM membertelephone WHERE member_id = the id from the above
SELECT
The query would be:
SELECT *
FROM member AS m
LEFT JOIN membertelephone as t
ON m.id = t.member_id;
--
Oliver Elphick olly@lfix.co.uk
Isle of Wight http://www.lfix.co.uk/oliver
GPG: 1024D/A54310EA 92C8 39E7 280E 3631 3F0E 1EC0 5664 7A2F A543 10EA
========================================
Do you want to know God? http://www.lfix.co.uk/knowing_god.html
В списке pgsql-novice по дате отправления: