Re: references to variable in another schema

Поиск
Список
Период
Сортировка
От Sean Davis
Тема Re: references to variable in another schema
Дата
Msg-id 264855a00711090952s5f5a395ep67a823badb32632@mail.gmail.com
обсуждение исходный текст
Ответ на references to variable in another schema  (Mija Lee <mija@scharp.org>)
Список pgsql-novice
On Nov 9, 2007 12:48 PM, Mija Lee <mija@scharp.org> wrote:
> Hi folks:
>
> I wanted to put a reference on a table in the public schema that
> references a column in a table in another schema. I tried:
>
> create table cellphone(emplid integer not null references
> admin.tbl_employee.employee_id);
>
> ERROR:  cross-database references are not implemented:
> "admin.tbl_employee.employee_id"
>
> But these are within one database. Is there a way to do this or have I
> gotten my syntax messed up?

The hierarchy in postgresql is Server->database->schema->table->column

How as "admin" created?  By using "create schema admin" or something else?

Sean

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

Предыдущее
От: Mija Lee
Дата:
Сообщение: references to variable in another schema
Следующее
От: Tom Lane
Дата:
Сообщение: Re: references to variable in another schema