underscore problem

Поиск
Список
Период
Сортировка
От postgresql
Тема underscore problem
Дата
Msg-id 200102271236.f1RCasx40381@mail.postgresql.org
обсуждение исходный текст
Ответы Re: underscore problem  (Jie Liang <jliang@ipinc.com>)
Список pgsql-sql
Is there anywhere in the docs that says we should not use an 
underscore in a table name?

table  FC_Client_Info exists with a record where jobno 1234 has 
info:

select acode from FC_Client_Info where jobno = '1234';
fails with a warning that fc_client_info does not exist
notice the lower case. If I quote the table

select acode from "FC_Client_Info" where jobno = '1234';
the select works fine

What's the problem here? This should be easy.

Ted




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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: DLookup('field', 'table', ['condition'])
Следующее
От: "Richard Huxton"
Дата:
Сообщение: Re: underscore problem