Re: Left join syntax error

Поиск
Список
Период
Сортировка
От Rich Shepard
Тема Re: Left join syntax error
Дата
Msg-id 23486d5-be1e-f152-2b97-e027ef89a810@appl-ecosys.com
обсуждение исходный текст
Ответ на Re: Left join syntax error  (Ray O'Donnell <ray@rodonnell.ie>)
Ответы Re: Left join syntax error
Re: Left join syntax error
Список pgsql-general
On Sat, 18 May 2024, Ray O'Donnell wrote:

> You need to include the alias for the table also - see "...from companies as 
> c..." in Shammat's example.

Ray,

That didn't work:
bustrac-# FROM people as p, companies as c
bustrac-# LEFT JOIN companies as c ON c.company_nbr = p.company_nbr;
ERROR:  table name "c" specified more than once

so I tried only the alias on the join line:
bustrac-# LEFT JOIN c ON c.company_nbr = p.company_nbr;
ERROR:  relation "c" does not exist
LINE 3: LEFT JOIN c ON c.company_nbr = p.company_nbr;
                   ^
and that didn't work either.

Thanks,

Rich



В списке pgsql-general по дате отправления:

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: utf8 vs UTF-8
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Left join syntax error