Hi All,
i try to display the following structure:
table X:
=======
ID,
....,
CATEGORY
, whereby:
CATEGORY = NULL | WORD1 | WORD2| [ACEF]
Now is my question, what is the best solution:
1) to create a table for category, a table for [ACEF] with CHECK CONSTRAINT
or
2) to create a type for ACEF
or
3) to create just a CHECK CONSTRAINT for CATEGORY
or
4) ?
Thanks in advance!