Re: Strange browser behavior when querying PostgreSql database

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Chris FR <gras(dot)christophe(at)libertysurf(dot)fr>
Cc: pgsql-php(at)postgresql(dot)org
Subject: Re: Strange browser behavior when querying PostgreSql database
Date: 2003-09-05 12:31:50
Message-ID: 6419763.1062768118515.JavaMail.Administrator@serdyn
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Tue, Sep 02, 2003 at 07:50:15 -0700,
Chris FR <gras(dot)christophe(at)libertysurf(dot)fr> wrote:
>
> SELECT a.* FROM a WHERE a.idf = b.id

You shouldn't use the above syntax as it is non standard and is more
commonly used by mistake than intentionally. People looking at your code
later will wonder what you were really trying to do.

> I solved the problem by modifying the request :
>
> SELECT a.* FROM a, b WHERE a.idf = b.id
>
> Now the script works.

I am not sure why there is a difference in these two cases. Possibly you
didn't give us the real queries and there is something else going on.

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Luis H 2003-09-05 12:43:20 Re: Strange browser behavior when querying PostgreSql database
Previous Message Gerd Terlutter 2003-09-05 08:43:13 Re: Strange browser behavior when querying PostgreSql database