Typo in PG 7.2.1 Tutorial PDF

Поиск
Список
Период
Сортировка
От Lennart Goedhart
Тема Typo in PG 7.2.1 Tutorial PDF
Дата
Msg-id 006101c1fbef$3c1e0380$02eb3bcb@beldin
обсуждение исходный текст
Ответы Re: Typo in PG 7.2.1 Tutorial PDF
Список pgsql-docs
Section 3.3 - Foreign Keys
 
CREATE TABLE weather (
    city varchar(80) references weather,
    temp_lo int,
    temp_hi int,
    prcp real,
    date date
);
 
 
Should read:
 
CREATE TABLE weather (
    city varchar(80) references cities,
    temp_lo int,
    temp_hi int,
    prcp real,
    date date
);
 
 
Lennart Goedhart

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