Re: Novice Help Needed

Поиск
Список
Период
Сортировка
От Robert B. Easter
Тема Re: Novice Help Needed
Дата
Msg-id 00051815354701.14806@comptechnews
обсуждение исходный текст
Ответ на Novice Help Needed  ("Brian C. Doyle" <bcdoyle@mindspring.com>)
Список pgsql-sql
On Thu, 18 May 2000, Brian C. Doyle wrote:
> Hello,
> 
> I am in need of a rule or trigger that will only allow one entry where the 
> date and a userid field are the same?
> 
> So on the insert I want it to first check and see if userid and date exist 
> and if so do not enter them.  If they do exist, allow the insert
> 
> Brian C. Doyle

If I understand, maybe you can just make a composite primary key out of userid
and date.

CREATE TABLE  atable (userid    INTEGER,thedate    TIMESTAMP,PRIMARY KEY (userid, thedate)
);
--  Robert B. Easter
reaster@comptechnews.com


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

Предыдущее
От: Kate Collins
Дата:
Сообщение: SQL command speed
Следующее
От: mig@utdt.edu
Дата:
Сообщение: Re: SQL command speed