Re: Syntax of: alter table ... add constraint ...

Поиск
Список
Период
Сортировка
От Alban Hertroys
Тема Re: Syntax of: alter table ... add constraint ...
Дата
Msg-id 914F325A-FC52-4C5F-8E2A-0C4816ABDD56@solfertje.student.utwente.nl
обсуждение исходный текст
Ответ на Re: Syntax of: alter table ... add constraint ...  (Alexander Farber <alexander.farber@gmail.com>)
Ответы Re: Syntax of: alter table ... add constraint ...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On 8 Nov 2010, at 16:18, Alexander Farber wrote:

> Thank you,
>
> alter table pref_users add constraint pref_users_medals_check check
> (medals >= 0);
>
> has worked!


To clarify a bit on this; if you add a constraint, you specify its name and what type of constraint it is, before
specifyingthe actual constraint expression. 
Hence the need to add 'check' (the constraint type) between 'pref_users_medals_check' (the name) and '(medals >= 0)'
(theexpression). 

Alban Hertroys

--
If you can't see the forest for the trees,
cut the trees and you'll see there is no forest.


!DSPAM:737,4cd82a7b10261263518415!



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

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: postgresql scalability issue
Следующее
От: John R Pierce
Дата:
Сообщение: Re: postgresql scalability issue