OTICE: adding missing FROM-clause entry for table

Поиск
Список
Период
Сортировка
От Christian Laursen
Тема OTICE: adding missing FROM-clause entry for table
Дата
Msg-id 86k6ir36xd.fsf@hoegaarden.pil.dk
обсуждение исходный текст
Ответы Re: OTICE: adding missing FROM-clause entry for table  (Roman Neuhauser <neuhauser@sigpipe.cz>)
Re: OTICE: adding missing FROM-clause entry for table  (Richard Huxton <dev@archonet.com>)
Список pgsql-general
I just experienced some bad SQL causing quite unexpected results.

I used a statement like this:
SELECT t1.a, t1.b, t2.d FROM test1 t1, test2 t2 WHERE t1.a = test2.a;

Where I should have used this instead:
SELECT t1.a, t1.b, t2.d FROM test1 t1, test2 t2 WHERE t1.a = t2.a;

When I looked into it and tried it from psql, I got this notice:
NOTICE:  adding missing FROM-clause entry for table "test2"

Now, I understand that postgresql is adding "test2" to the list of
tables, I am selecting from as it is missing. However the result
is quite different from what I expected.

Is there a way to change this behaviour to generate an error instead
of just a notice?

--
Christian Laursen

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

Предыдущее
От: Karim Nassar
Дата:
Сообщение: LIve PGDoc v.01 released
Следующее
От: Roman Neuhauser
Дата:
Сообщение: Re: OTICE: adding missing FROM-clause entry for table