Tagged Questions
0
votes
8answers
153 views
Database Design: Storing the primary key as a separate field in the same table
I have a table that must reference another record, but of the same table. Here's an example:
Customer
********
ID
ManagerID (the ID of another customer)
...
I have a bad feeling about doing this. ...