Re: [SQL] CHECK and IN (Sets in general) - What's the story?
От | Holger Mitterwald |
---|---|
Тема | Re: [SQL] CHECK and IN (Sets in general) - What's the story? |
Дата | |
Msg-id | Pine.GSO.4.02.9808210916380.7604-100000@su00574 обсуждение исходный текст |
Ответ на | CHECK and IN (Sets in general) - What's the story? (k_ogorman@kompass.ie) |
Список | pgsql-sql |
On Thu, 20 Aug 1998 k_ogorman@kompass.ie wrote: > Is there a known reason why the following definition fails > the parser at the IN keyword?: > > create table kev_test ( my_tag char check (my_tag in ('A', 'B', 'C'))); It isn't this worse at all :-) First, your syntax is not correct. Second, you can change the 'IN' Clause with several 'OR' clauses. The result would look like this: create table kev_test ( my_tag char) constraint tester check (my_tag = 'A' OR my_tag='B' OR my_tag = 'C'); If somebody has a solution for the 'IN' construction.... mail it! So long, Holger -------------------------------------------------------------------------------- Holger Mitterwald COI-D #### ##### ### CONSULTING FUER OFFICE COI GmbH Herzogenaurach # # # # UND INFORMATION Industriestrasse 1 - 3 # # # # MANAGEMENT GmbH D-91074 Herzogenaurach #### ##### ### Tel.: 09132/82-3811
В списке pgsql-sql по дате отправления: