pbuethe
Returning User
- Local time
- Today, 18:24
- Joined
- Apr 9, 2002
- Messages
- 210
The situation is as follows (simplified):
The user selects a status code, enters other info which is in the same table. Depending on the status code, may have to enter Approved, Denied, Referred values. There are only 2 values of the status code out of ~20 choices for which the user needs to enter Approved, Denied, and Referred. Is it OK to put these in the same table or does that make it denormalized?
e.g. (LineNbr is the PK)
LineNbr Status Code Approved Denied Referred
1 5 18 50 1
2 6
3 8
4 7 120 140 18
etc. (status codes 5 and 7 are the only ones that can have Approved, Denied, Referred)
Thanks for your help.
The user selects a status code, enters other info which is in the same table. Depending on the status code, may have to enter Approved, Denied, Referred values. There are only 2 values of the status code out of ~20 choices for which the user needs to enter Approved, Denied, and Referred. Is it OK to put these in the same table or does that make it denormalized?
e.g. (LineNbr is the PK)
LineNbr Status Code Approved Denied Referred
1 5 18 50 1
2 6
3 8
4 7 120 140 18
etc. (status codes 5 and 7 are the only ones that can have Approved, Denied, Referred)
Thanks for your help.