syntax of joins - Mailing list pgsql-sql

From Andreas
Subject syntax of joins
Date
Msg-id 4F7F3CD9.9090103@gmx.net
Whole thread Raw
Responses Re: syntax of joins  (Pavel Stehule <pavel.stehule@gmail.com>)
List pgsql-sql
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;


pgsql-sql by date:

Previous
From: Julien Cigar
Date:
Subject: Re: bad plan
Next
From: Pavel Stehule
Date:
Subject: Re: syntax of joins