Re: INNER JOIN syntax is not commonly used?

From: Andrew Grillet <andrew(at)grillet(dot)co(dot)uk>
To: max1(at)inbox(dot)ru, Pg Docs <pgsql-docs(at)lists(dot)postgresql(dot)org>
Subject: Re: INNER JOIN syntax is not commonly used?
Date: 2021-03-07 11:42:23
Message-ID: CAC-wiJVJSrYb6Ji49Zgx3W0UcujUcE2XVw8heBm__8OSYh48rg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

I think it is less commonly used by new users. In my experience, the
INNER JOIN syntax is preferred by more experiences users.

On Sun, 7 Mar 2021 at 10:44, PG Doc comments form
<noreply(at)postgresql(dot)org> wrote:
>
> The following documentation comment has been logged on the website:
>
> Page: https://www.postgresql.org/docs/13/tutorial-join.html
> Description:
>
> This page shows a WHERE syntax to join tables.
>
> After that it shows an example of the INNER JOIN syntax:
> SELECT *
> FROM weather INNER JOIN cities ON (weather.city = cities.name);
>
> And after that it says the following:
> "This syntax is not as commonly used as the one above, "
>
> So, this documentation claims that the INNER JOIN syntax is not as common as
> WHERE syntax.
> Is this really the case?

In response to

Browse pgsql-docs by date

  From Date Subject
Next Message Vik Fearing 2021-03-07 11:45:46 Re: INNER JOIN syntax is not commonly used?
Previous Message PG Doc comments form 2021-03-07 09:33:42 INNER JOIN syntax is not commonly used?