D
Doc
Trying to setup a multi field unique index with some of the columns allowing
null values. If all columns are filled in, index catches a duplicate entry,
if all columns but those which do not require entry are filled in, index does
not catch duplicate entries.
ID - Auto # and Primary
F1 - Text - required
F2 - Text - required
F3 - Text - required
F4 - text - not required
Index: F1, F2, F3, F4
Primary = NO
Unique = YES
Ignore Nulls = NO
Index catches:
1 - A - B - C - D
2 - A - B - C - D
Does not catch:
1 - A - B - C -
2 - A - B - C -
How can I make sure the index catches the second example without requiring
input in F4?
Thanks!
null values. If all columns are filled in, index catches a duplicate entry,
if all columns but those which do not require entry are filled in, index does
not catch duplicate entries.
ID - Auto # and Primary
F1 - Text - required
F2 - Text - required
F3 - Text - required
F4 - text - not required
Index: F1, F2, F3, F4
Primary = NO
Unique = YES
Ignore Nulls = NO
Index catches:
1 - A - B - C - D
2 - A - B - C - D
Does not catch:
1 - A - B - C -
2 - A - B - C -
How can I make sure the index catches the second example without requiring
input in F4?
Thanks!