hi,

is there a disadvantage to write a join as

select   *
from    a, b
where  a.id = b.a_id;

over

select   *
from    a join b  on  a.id = b.a_id;

--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql

Reply via email to