Re: Autonumbering Problem?

Поиск
Список
Период
Сортировка
От Adam Witney
Тема Re: Autonumbering Problem?
Дата
Msg-id 44E9E5D4.70706@sgul.ac.uk
обсуждение исходный текст
Ответ на Autonumbering Problem?  (Arthur Baldwin <mobilepc@mobilepcclinic.net>)
Список pgsql-novice

> tco=# insert into customers (FullName) values ('Arthur E. Baldwin');
> ERROR:  relation "customers" does not exist
> tco=# \d
>                  List of relations
>  Schema |         Name         |   Type   | Owner
> --------+----------------------+----------+--------
>  public | Customers            | table    | arthur
>  public | Customers_CustID_seq | sequence | arthur
> (2 rows)
>
> tco=#
>
> What am I doing wrong?

the table in your database has a capital 'C'. I'm guessing your table
fields have capitals as well, so try this

tco=# insert into "Customers" ("FullName") values ('Arthur E. Baldwin');




--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


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

Предыдущее
От: Sean Davis
Дата:
Сообщение: Re: Autonumbering Problem?
Следующее
От: Andreas
Дата:
Сообщение: invalid byte sequence ?