Re:

From: "postgresql" <pgsql(at)symcom(dot)com>
To: "Joseph Syjuco" <joseph(at)asti(dot)dost(dot)gov(dot)ph>, "PgSQL-SQL" <pgsql-sql(at)postgresql(dot)org>
Subject: Re:
Date: 2001-09-09 03:12:45
Message-ID: 200109090306.f8936N763650@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I had a suspicion that JOIN was going to be part of the answer. I
guess I had not found documentation that really helped. I have been
searching for more information.

I found this:
11.2. Controlling the Planner with Explicit JOINs

I guess I am just slow.... It mentions 'inner joins', outer joins, left
joins. .... I get lost. Where can I get more info. I really want to
understand.

Thanks for your time. I guess it's back to the bookstore.

-----Original Message-----
From: "Joseph Syjuco" <joseph(at)asti(dot)dost(dot)gov(dot)ph>
To: "postgresql" <pgsql(at)symcom(dot)com>
Date: Fri, 7 Sep 2001 08:50:20 +0800
Subject: RE: [SQL]

> select i.cname from fc_client_info i inner join fc_communication c
on i.acode=c.acode where c.contactdate='090601' order by cname
>
> -----Original Message-----
> From: pgsql-sql-owner(at)postgresql(dot)org
> [mailto:pgsql-sql-owner(at)postgresql(dot)org]On Behalf Of postgresql
> Sent: Friday, September 07, 2001 1:12 AM
> To: PgSQL-SQL
> Subject: [SQL]
>
>
> I am basically self taught with sql. I find that I keep re-reading the
> postgresql tutorials tryin to add a little more to my understanding.
>
> so my question is... Is this the best way to word this querry?
> I have two tables, fc_client_info and fc_communication. I keep
reading
> the section on JOINs and wonder if I should querry this differently.
> for
> some reason I have been shying away from JOINs (I haven't
figures them
> out).
>
> SELECT i.cname FROM fc_client_info i, fc_communication c
WHERE i.acode
> =
> c.acode AND c.contactdate = '09/06/2001' ORDER BY
lower(cname);
>
> Thank for your great software.... I am really beginning to like SQL...
>
> Ted

Browse pgsql-sql by date

  From Date Subject
Next Message Tony Hunt 2001-09-09 07:46:56 Re: Combine query views into one SQL string
Previous Message Robert J. Sanford, Jr. 2001-09-08 03:53:09 optimizing queries and indexes...