selecting more that 2 tables based on 1 subquery find an error - Mailing list pgsql-general

From Prabu Subroto
Subject selecting more that 2 tables based on 1 subquery find an error
Date
Msg-id 20040726113407.46577.qmail@web41807.mail.yahoo.com
Whole thread Raw
List pgsql-general
Dear my friends...

I want to "select" query 2 tables. one is "customer"
and one is "customer.description" but the customer
records that I want to "select" are only what in
subquery result.

Here what I've done:
"
postgres@patrix:~> select c.custid, cd.description,
c.company, c.title, c.salutation, c.firstname,
c.lastname, c.address, c.postcode, c.city, c.areacode,
c.phone, c.mobilephone, c.fax, c.email from customer
as c, customerdescription as cd where c.custid in
(select custid from sven1);
bash: syntax error near unexpected token
`cd.description,'
postgres@patrix:~>
"

Anybody could give me any solution?

Thank you very much in advance.



__________________________________
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail

pgsql-general by date:

Previous
From: "Matthew D. Fuller"
Date:
Subject: Re: Sql injection attacks
Next
From: Prabu Subroto
Date:
Subject: selecting more that 2 tables based on 1 subquery find an error (revision)