ST4RCUTTER
Registered User.
- Local time
- Today, 05:43
- Joined
- Aug 31, 2006
- Messages
- 94
I have a table called tbl_workorders. One of the fields on this table is optional but because the lookup table is on the one side of a 1-to-many relationship using an auto-number key it is requiring that this field be populated to create a record on the workorder table. This is a problem because the field is optional.
tbl_workorders
WorkOrrderID(PK)
Field1
Field2
Field3
Field4
JobSubtypeID (FK-many) <---- Lookup field
tbl_Subtypes
JobSubtypeID (PK-one)
SubtypeDesc
Should I set the SubtypeDesc field to a default value of "none"? I know this is storing unnecessary data, but is there another option?
tbl_workorders
WorkOrrderID(PK)
Field1
Field2
Field3
Field4
JobSubtypeID (FK-many) <---- Lookup field
tbl_Subtypes
JobSubtypeID (PK-one)
SubtypeDesc
Should I set the SubtypeDesc field to a default value of "none"? I know this is storing unnecessary data, but is there another option?