hi I have an existing table called resellers with a unique Id of ResellerId. I am being asked to add a new id for the client called PF_ID for some of these resellers.
With the following business rule:
For A single PF_ID there may be multiple partner (resellers). There may not however be multiple PF_ID associated with a single reseller.
So for example you may have:
Reseller ID New PF_ID
123 456
111 456
But you wouldn’t have
Reseller ID New PF ID
123 456
123 789
Can anyone advise me the best way to design the database to maintain the data integrity and the rule above do i need some sort of lookup table? Or can i add an id to the existing reseller table.
Sorry i have not much common sense in this regard. input appreciated.
With the following business rule:
For A single PF_ID there may be multiple partner (resellers). There may not however be multiple PF_ID associated with a single reseller.
So for example you may have:
Reseller ID New PF_ID
123 456
111 456
But you wouldn’t have
Reseller ID New PF ID
123 456
123 789
Can anyone advise me the best way to design the database to maintain the data integrity and the rule above do i need some sort of lookup table? Or can i add an id to the existing reseller table.
Sorry i have not much common sense in this regard. input appreciated.