I'm writing a stored procedure to import customer contacts from an import table into a master customer contact table. I'm having difficulty figuring out how to increment the contact identifier (ContID) for each contact within a customer.
For example if the import table looks like this:
Should look like this after import:
To further complicate this, if CustID 1000 is already in the Master Customer Contact with x contacts then the resulting import should look like this:
How can I accomplish this?
Thanks!
For example if the import table looks like this:
Code:
CustID ContID Contact
1000 Bill
1000 John
2000 Sue
2000 Mary
2000 Sara
Code:
CustID ContID Contact
1000 1 Bill
1000 2 John
2000 1 Sue
2000 2 Mary
2000 3 Sara
Code:
CustID ContID Contact
1000 1 + x Bill
1000 2 + x John
2000 1 Sue
2000 2 Mary
2000 3 Sara
Thanks!