join problem or maybe group :(

Поиск
Список
Период
Сортировка
От Ben-Nes Michael
Тема join problem or maybe group :(
Дата
Msg-id 002101c24ec1$e5bcb740$aa0f5ac2@canaan.co.il
обсуждение исходный текст
Список pgsql-general
Hi All


I want to select sections using left join on articles, but i want to retrive
only one row from articles per section and the one should be the latest
art_date.

Can it be done ?

CREATE TABLE sections (
sec_id SERIAL PRIMARY KEY,
sec_name VARCHAR (30),
sec_order INT2
);


CREATE TABLE articles (
art_id SERIAL PRIMARY KEY,
sec_id INT4 REFERENCES sections ON UPDATE CASCADE ON DELETE CASCADE,
art_name VARCHAR (30),
art_date DATE
);

Cheer



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Noobie Questions...
Следующее
От: Dan Ostrowski
Дата:
Сообщение: Re: Noobie Questions...