Re: Problem with my query whithout double-quotes

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Problem with my query whithout double-quotes
Дата
Msg-id 20020724112248.M37882-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Problem with my query whithout double-quotes  (ROUWEZ Stephane <stephane.rouwez@ecolo.be>)
Список pgsql-sql
On Wed, 24 Jul 2002, ROUWEZ Stephane wrote:

> Hi,
> My pgsql runs on WinNT Server 4. When I try to
> SELECT nom, prenom FROM individu WHERE numero=2
> I have : ERROR: Relation "individu" does not exist
> It only works if I write :
> SELECT "Individu"."Nom","Individu"."Prenom" FROM "Individu" WHERE
> "Individu"."NumIndiv"=2
> Can someone help me ?

It looks like you created the table with double quotes around the
names at which point you should always use double quotes to refer
to it (yes, if the name was "foo" you *can* refer to it as foo, but
you really shouldn't).



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: RES: RES: Queries not using Index
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Trying to write a function...